1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | - script LevelRewards HIDDEN_NPC,{ if (JobLevel == 10) { mes "You've reached Job Level 10!"; mes "Please choose your rewards..."; next; switch(select("Swordsman:Merchant:Thief")) { case 1: //For swordsman mes "Here yo go..."; getitem itemid,amount; close; case 2: //For Merchant mes "Here yo go..."; getitem itemid,amount; close; case 3: //For Thief mes "Here yo go..."; getitem itemid,amount; close; } } } |