Jump to content
  • 0
luizragna

The character stands still when use menu command

Question

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.

Edited by luizragna

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 1

use close(); instead of end();

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

Share this post


Link to post
Share on other sites
  • 0
10 hours ago, meko said:

use close(); instead of end();

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

I tried all options. But the problem continues.

Share this post


Link to post
Share on other sites
  • 1
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

Edited by Daehyon

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.