diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-24 15:24:23 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-08-24 15:24:23 +0000 |
commit | a719ab47c9bd89869dc2840d83216edbe4d66f5c (patch) | |
tree | dd51b5ee7696a478b854eb4deb72597549fc3b1d /npc/custom | |
parent | a531c64908deb1fe407462e88fa7427230e6b254 (diff) | |
download | hercules-a719ab47c9bd89869dc2840d83216edbe4d66f5c.tar.gz hercules-a719ab47c9bd89869dc2840d83216edbe4d66f5c.tar.bz2 hercules-a719ab47c9bd89869dc2840d83216edbe4d66f5c.tar.xz hercules-a719ab47c9bd89869dc2840d83216edbe4d66f5c.zip |
* Added warg rider check to custom breeder (custom\breeder.txt)
* Follow-up r16656, documented the new commands
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16698 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom')
-rw-r--r-- | npc/custom/breeder.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/breeder.txt b/npc/custom/breeder.txt index ea5c346a5..c280fae73 100644 --- a/npc/custom/breeder.txt +++ b/npc/custom/breeder.txt @@ -15,7 +15,7 @@ prontera,124,201,1 script Universal Rental NPC 726,{ message strcharinfo(0),"You must first remove your mount."; close; } else if ((eaclass()&EAJ_THIRDMASK==EAJ_RANGER) && !countitem(6124)) { - if (!checkfalcon() && getskilllv("HT_FALCON") && !checkwug()) { + if (!checkfalcon() && getskilllv("HT_FALCON") && !checkoption(Option_Wug) && !checkoption(Option_Wugrider)) { if(select(" ~ Falcon: ~ Warg")==1) setfalcon; else getitem 6124,1; } else getitem 6124,1; } @@ -25,7 +25,7 @@ prontera,124,201,1 script Universal Rental NPC 726,{ else setmadogear; } else setcart; } else if (!checkcart() && getskilllv("MC_PUSHCART")) setcart; - else if (!checkfalcon() && getskilllv("HT_FALCON") && !checkwug()) setfalcon; + else if (!checkfalcon() && getskilllv("HT_FALCON") && !checkoption(Option_Wug) && !checkoption(Option_Wugrider)) setfalcon; else if (!checkriding() && getskilllv("KN_RIDING")) { if (eaclass()&EAJ_THIRDMASK==EAJ_RUNE_KNIGHT) setdragon; else setriding; } |