hi, I can ask if it adds to this npc the possibility to access it only if you have a 3rd class?
maybe if you do not have the 3rd class it tells you: "I'm sorry, but you do not have 3rd class."
Thanks in advance.
mes "[Armando]";
mes "Hi "+strcharinfo(0)+" do you want to change your dress?";
next;
switch(prompt("Primary Dress:Second Dress")) {
case 1:
next;
atcommand "+bodystyle 0";
mes "Done!";
close;
case 2:
next;
atcommand "+bodystyle 1";
mes "Done!";
close;
case 255:
mes "[Kasondra]";
mes "Goodbye.";
close;
}
}
Question
domez86
hi, I can ask if it adds to this npc the possibility to access it only if you have a 3rd class?
maybe if you do not have the 3rd class it tells you: "I'm sorry, but you do not have 3rd class."
Thanks in advance.
--------------------------------------------------------------------------------------------------------------------------------------------------------
prontera,147,174,5 script Change Dress 509,{
mes "[Armando]";
mes "Hi "+strcharinfo(0)+" do you want to change your dress?";
next;
switch(prompt("Primary Dress:Second Dress")) {
case 1:
next;
atcommand "+bodystyle 0";
mes "Done!";
close;
case 2:
next;
atcommand "+bodystyle 1";
mes "Done!";
close;
case 255:
mes "[Kasondra]";
mes "Goodbye.";
close;
}
}
-----------------------------------------------------------------------------------------------------
Edited by domez864 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.