sorry that I have to bother you but somehow im completely silly right now.
Is it possible to pass an array as the result of a menu / selection?
example (current)
setarray .@neutralRes[1], 101,102,103;
set .@menu,select("Neutral:Fire:Water:Wind:Earth:Shadow:Holy:Ghost");
switch (.@menu) {
case 1:
set .@bonus, callfunc("getBonusLevel", .@neutralRes);
break;
example (should look like this)
setarray .@neutralRes[1], 101,102,103;
set .@menu,select("Neutral",.@neutralRes,"Fire",.@fireRes,...etc);
set .@bonus, callfunc("getBonusLevel", .@menu);
// or even better
set .@bonus, callfunc("getBonusLevel", select("Neutral",.@neutralRes,"Fire",.@fireRes,...etc));
Question
shadowscreen
Hey guys,
sorry that I have to bother you but somehow im completely silly right now.
Is it possible to pass an array as the result of a menu / selection?
example (current)
example (should look like this)
Hope I could clarify my desire,
thanks in advance!!!!
Edited by shadowscreen5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.