summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/018-2-1/warps.txt2
-rw-r--r--npc/018-2-2/main.txt5
2 files changed, 4 insertions, 3 deletions
diff --git a/npc/018-2-1/warps.txt b/npc/018-2-1/warps.txt
index 4c3f95cec..30a0c54b8 100644
--- a/npc/018-2-1/warps.txt
+++ b/npc/018-2-1/warps.txt
@@ -42,7 +42,7 @@ OnTouch:
rif(.@q & HH_NOVICE, l("Intermediary Dungeon (Lv 60+)")), // Level 21-60
rif(.@q & HH_INTERMEDIARY, l("Advanced Dungeon (Lv 80+)")), // Level 41-80
rif(.@q & HH_ADVANCED, l("Expert Dungeon (Lv 100+)")), // Level 61-100
- rif(.@q & HH_REQUISITE, l("Master Dungeon (BOSS)")), // Boss Only
+ rif(.@q & HH_EXPERT, l("Master Dungeon (BOSS)")), // Boss Only
l("Heroes Hold - Exchange Hall"),
l("Information");
mes "";
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;