The character stands still when use menu command

luizragna

New member
Messages
114
Points
0
Location
In their hearts
Emulator
When i use the command:

menu "Yeees",yes,"Nooo",no;

yes:
specialeffect(6, SELF, playerattached());
end;

no:
end;


The character stands still and i need use @refresh for him to come back to normal.

I Tried switch but, the problem continues.

I use the last version of Hercules.

 
Last edited by a moderator:
use close(); instead of end();

also menu() is deprecated, so please use select()

 
aldebaran,120,122,3 script Teddy 4_CAT_SAILOR1,{

switch(select("- Yes:- No")) {
case 1:
specialeffect(6, SELF, playerattached());
close;

case 2:
close;
}
}


Try this. @luizragna

 
Last edited by a moderator:
Back
Top