diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/custom/breeder.txt | 4 | ||||
-rw-r--r-- | npc/merchants/renters.txt | 4 |
2 files changed, 4 insertions, 4 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; } diff --git a/npc/merchants/renters.txt b/npc/merchants/renters.txt index 922aa088d..bcaded6f6 100644 --- a/npc/merchants/renters.txt +++ b/npc/merchants/renters.txt @@ -162,7 +162,7 @@ hu_in01,381,304,5 script Falcon Breeder#hnt 105,{ if (checkoption(Option_Wug) || checkoption(Option_Wugrider)) { mes "Um..."; mes "You can't rent a Falcon"; - mes "untill you dismiss your warg first!"; + mes "until you dismiss your warg first!"; close; } mes "Do you need a Falcon?"; @@ -176,7 +176,7 @@ hu_in01,381,304,5 script Falcon Breeder#hnt 105,{ mes "[Falcon Breeder]"; mes "Um..."; mes "You can't rent a Falcon"; - mes "untill you dismiss your warg first!"; + mes "until you dismiss your warg first!"; close; } if (zeny < .@price) { |