diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-04-03 15:09:55 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-04-03 15:09:55 -0300 |
commit | 0c455178412cdb8a0ee9029830b72f5702f03366 (patch) | |
tree | 5d31c93037d0b43ea4151e7d07ac8c8eacc9840d /npc/006-1/crazyfefe.txt | |
parent | 78c09a98994cbe284ad6f3a07970eed0b94f9ddb (diff) | |
download | serverdata-0c455178412cdb8a0ee9029830b72f5702f03366.tar.gz serverdata-0c455178412cdb8a0ee9029830b72f5702f03366.tar.bz2 serverdata-0c455178412cdb8a0ee9029830b72f5702f03366.tar.xz serverdata-0c455178412cdb8a0ee9029830b72f5702f03366.zip |
I wonder if end(); superseeds return();?
Diffstat (limited to 'npc/006-1/crazyfefe.txt')
-rw-r--r-- | npc/006-1/crazyfefe.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/006-1/crazyfefe.txt b/npc/006-1/crazyfefe.txt index 1f6c95cf8..fffbaec9c 100644 --- a/npc/006-1/crazyfefe.txt +++ b/npc/006-1/crazyfefe.txt @@ -134,7 +134,7 @@ function Challenge { // We must begin at once, so ignore normal procedure if (!@menuret) { closeclientdialog; - goto L_StartFight; + StartFight(); } // Give you a bonus for starting the fight, and announce the fight. @@ -325,7 +325,7 @@ OnTimer5000: //OnTimer30000: // If you need to start without 5 minutes delay, this line must be uncommented. OnTimer300000: if ($@FEFE_CAVE_LEVEL > 0) end; - if ($@FEFE_DELAY <= gettimetick(2)) goto L_StartFight; + if ($@FEFE_DELAY <= gettimetick(2)) StartFight(); announce $@FEFE_CAVE_HERO$+" invites everyone to a challenge against Candor Cave. It'll start in "+FuzzyTime($@FEFE_DELAY,2,2)+". Prepare yourselves!", bc_all|bc_npc; initnpctimer; end; |