-
Notifications
You must be signed in to change notification settings - Fork 757
Return
Haru edited this page Oct 19, 2016
·
1 revision
- return [<return></return>];
This command causes the script execution to leave previously called function with callfunc or script with callsub and return to the location, where the call originated from. Optionally a return value can be supplied, when the call was done using the function form.
Using this command outside of functions or scripts referenced by callsub will result in error and termination of the script.
[[set]] .@var,[[callsub]](L_myAddition,.@a_val,.@b_val); [[mes]] "The result is "+.@var+"."; [[close]]; L_myAddition: return [[getarg]](0)+getarg(1);
function script MyAddition { return getarg(0)+getarg(1); }
Assuming .@a_val and .@b_val being 1, both examples would yield a message displaying, that the result is 2.
mes "Oh no..."; [[close2]]; callsub L_scream; [[end]]; L_scream: [[npctalk]] "Iiiiiiiiiiiiieeeeeeeeeeeeeeeeeeeeeeeeek!!!"; return;