diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-20 16:02:30 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-20 16:02:30 -0200 |
commit | 0673c5af641b2745701cda0cb181d750a3ed4562 (patch) | |
tree | bf1ebb9bf316c1f3dee06a40cf0f65348fe1435a /npc/018-2-2/main.txt | |
parent | 60f4f329410bf44a20115dd3cb018f6402ba8b6c (diff) | |
download | serverdata-0673c5af641b2745701cda0cb181d750a3ed4562.tar.gz serverdata-0673c5af641b2745701cda0cb181d750a3ed4562.tar.bz2 serverdata-0673c5af641b2745701cda0cb181d750a3ed4562.tar.xz serverdata-0673c5af641b2745701cda0cb181d750a3ed4562.zip |
Fix moar bugs
Diffstat (limited to 'npc/018-2-2/main.txt')
-rw-r--r-- | npc/018-2-2/main.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/018-2-2/main.txt b/npc/018-2-2/main.txt index b6e33508e..c9c940c64 100644 --- a/npc/018-2-2/main.txt +++ b/npc/018-2-2/main.txt @@ -20,6 +20,7 @@ OnFinish: setq2 LoFQuest_HH, .@g|@HH_LEVEL; dispbottom l("Novice Dungeon cleared!"); getitem HeroCoin, @HH_LEVEL; + getexp 4800-@HH_TIMER, @HH_LEVEL*20; end; OnNoviceBossKilled: @@ -51,8 +52,8 @@ OnMasterBossKilled: // Everytime loop OnPlayerCycle: @HH_TIMER+=1; - // 20 minutes have passed. This should be 40 minutes, but the HH is not finished yet - if (@HH_TIMER >= 2400) { + // 25 minutes have passed and your time is over + if (@HH_TIMER >= 3000) { warp "018-2-1", 0, 0; dispbottom l("You were rescued by DUSTMAN."); end; |