// Original By kitsunestarwind // // Athena conversion by DiaDz //Rouge Moc_fild19 23 48 4_F_ROGUE 4_F_JOB_ASSASSIN moc_fild19.gat,26,48,5 script Rogue's Lady 747,{ if(Class==17) goto rouge; if(Class !=6) goto notthief; mes "[Lady Rouge]"; mes "Welcome to the Deserts of Morroc."; next; mes "[Lady Rouge]"; mes "How may I be of Service to you?"; next; menu "Change Job into a Rouge.",case1,"The Requirements.",case2,"Quit.",case3; case1: if(JobLevel < 40) goto notlvl; mes "[Lady Rouge]"; mes "Since you are now a Rouge you may call Morroc your Home."; jobchange 17; close; notlvl: mes "[Lady Rouge]"; mes "you need to be at least Job level 40"; close; case2: mes "[Lady Rouge]"; mes "You need to be a Theif of Job Level 40 to become a Rouge"; next; mes "[Lady Rouge]"; mes "Rouges unlike Asassins are not professional killers"; mes "We are more interested in helping to ourselves to some of that money all those rich merchants have"; close; case3: mes "[Lady Rouge]"; mes "Please come again sometime"; close; rouge: mes "[Lady Rouge]"; mes "You are already a Skilled Rouge"; close; notthief: mes "[Lady Rouge]"; mes "I'm sorry but there is nothing I can help you with."; mes "Hah, only a Thief class is capable of learning our elite 'Rouge' skills."; close; }