Well,
Ipersonally think that its pretty retarded to send values thru functions, its trendy, and you could just use triggeractions. Also, that could screw up the scope, and like I personally hate non-global scope, like PHP. Its just pointless... Also this:
NPC Code:
func(10,10);
function func(i,j) {
ans = i*j;
return;
}
is to:
NPC Code:
i = 10;
j = 10;
func();
function func(i,j) {
ans = i*j;
return;
}
Mmmmmmmmmmmm....global scope.
Bootiful.