diff options
Diffstat (limited to 'npc/custom/breeder.txt')
-rw-r--r-- | npc/custom/breeder.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/npc/custom/breeder.txt b/npc/custom/breeder.txt index 580042b45..d03928ad2 100644 --- a/npc/custom/breeder.txt +++ b/npc/custom/breeder.txt @@ -25,29 +25,27 @@ prontera,124,201,1 script Universal Rental Npc 726,{ case 1: if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) { setcart; - close; } else { mes "[Universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; - close; } + break; case 2: if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) { setfalcon; - close; } else { mes "[Universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; - close; } + break; case 3: if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0 && getskilllv("KN_RIDING")>0) { setriding; - close; } else { mes "[Universal Rental Npc]"; mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill."; - close; } + break; } + close; } |