//By Eijiyu // npc was 91 before prontera.gat,159,192,4 script Hypnotist 80,{ mes "[Hypnotist]"; mes "Hey there, looking to forget some bad memories?"; mes "It costs 10k for Stats or Skills.. OR you can have both reset for 15k."; mes "So, are you ready?" next; menu "^FF3355Skills^000000",L1,"^FF3355Stats^000000",L2,"^FF3355Skills and Stats^000000",L3,"Cancel",LEnd; L1: if (Zeny<10000) goto NeedZenys; mes "[Hypnotist]"; mes "All done, feel better now?"; set Zeny,Zeny-10000; resetskill; close; L2: if (Zeny<10000) goto NeedZenys; mes "[Hypnotist]"; mes "All done, feel better now?"; set Zeny,Zeny-10000; resetstatus; close; L3: if (Zeny<15000) goto NeedZenys; mes "[Hypnotist]"; mes "All done, feel better now?"; set Zeny,Zeny-15000; resetstatus; resetskill; close; NeedZenys: mes "[Hypnotist]"; mes "Sorry I have to make a living here, come back when you have more money."; close; LEnd: close; }