summaryrefslogtreecommitdiff
path: root/npc/custom/breeder.txt
diff options
context:
space:
mode:
authorbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-01 04:06:10 +0000
committerbrianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-01 04:06:10 +0000
commitb87430245ee4dad7dbeb0e2ee54ae0ff2f782fd2 (patch)
tree917e34433bac016ae64465214e4432f85c9f0a97 /npc/custom/breeder.txt
parent74b92bb34163160e59e24dd6a07c16e30e9743be (diff)
downloadhercules-b87430245ee4dad7dbeb0e2ee54ae0ff2f782fd2.tar.gz
hercules-b87430245ee4dad7dbeb0e2ee54ae0ff2f782fd2.tar.bz2
hercules-b87430245ee4dad7dbeb0e2ee54ae0ff2f782fd2.tar.xz
hercules-b87430245ee4dad7dbeb0e2ee54ae0ff2f782fd2.zip
- Replaced more -> rAthena (follow up to r15251).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16195 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/breeder.txt')
-rw-r--r--npc/custom/breeder.txt10
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;
}