diff options
author | Streusel <m.me1@live.de> | 2013-05-19 02:20:03 -0600 |
---|---|---|
committer | Streusel <m.me1@live.de> | 2013-05-19 02:20:03 -0600 |
commit | 75d276d7e30c9ca92cd450de9ef897c98a2a4ab3 (patch) | |
tree | 9920b2c12f90773660f3e13036b8ed054ca284aa /npc | |
parent | 6d527e5d6a76fbf5f0a6440d74971977b5a37e03 (diff) | |
download | hercules-75d276d7e30c9ca92cd450de9ef897c98a2a4ab3.tar.gz hercules-75d276d7e30c9ca92cd450de9ef897c98a2a4ab3.tar.bz2 hercules-75d276d7e30c9ca92cd450de9ef897c98a2a4ab3.tar.xz hercules-75d276d7e30c9ca92cd450de9ef897c98a2a4ab3.zip |
Update breeder.txt
Fixed Bug #7271.
http://hercules.ws/board/tracker/issue-7271-any-work-in-progress-npc-dialog-manufactoring-quit-and-try-again/
Thanks to bgamez23 for bringing it up.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/custom/breeder.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/custom/breeder.txt b/npc/custom/breeder.txt index bf7c34592..2bb3c6274 100644 --- a/npc/custom/breeder.txt +++ b/npc/custom/breeder.txt @@ -3,15 +3,16 @@ //===== By: ================================================== //= Euphy //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Description: ========================================= //= One-click automatic mount rentals. +//= Replaced 'close' with 'end' [Streusel] //============================================================ prontera,124,201,1 script Universal Rental NPC 726,{ if (ismounting()) { message strcharinfo(0),"You must first remove your mount."; - close; } + end; } else if ((eaclass()&EAJ_THIRDMASK==EAJ_RANGER) && !countitem(6124)) { if (!checkfalcon() && getskilllv("HT_FALCON") && !checkoption(Option_Wug) && !checkoption(Option_Wugrider)) { if(select(" ~ Falcon: ~ Warg")==1) setfalcon; @@ -30,7 +31,7 @@ prontera,124,201,1 script Universal Rental NPC 726,{ else if (!checkmadogear() && getskilllv("NC_MADOLICENCE")) setmadogear; else { message strcharinfo(0),"You do not meet requirements to rent."; - close; } + end; } specialeffect2 EF_TEIHIT3; end; } @@ -45,4 +46,4 @@ prontera,124,201,1 script Universal Rental NPC 726,{ //= 1.3a Fixed a Typo Error. [Samuray22] //= Thanks to ~AnnieRuru~. //= 1.4 Optimized Script. No need for 50 million Labels. [Spre] -//============================================================
\ No newline at end of file +//============================================================ |