Hello
i need help with this simple script for ex. i want when you reach a end of the text in npc it repeat it self.
ex like this maybe
prontera,149,194,4 script test 871,{
mes "Hello how can i help you?";
next;
switch (select("Nothing, thanks:Cancel")) {
case 1:
next;
mes "Ok, see you later";
close;
break; // i want in this end the script go and restart it conversation, goes back to line 1.
case 2:
close;
break; // i want in this end the script go and restart it conversation, goes back to line 1.
}
close;
}
what i want is whenever in the end of the case the script go and repeat himself from "mes "Hello how can i help you?";".
how can i do this?