summaryrefslogtreecommitdiff
path: root/npc/018-2-1/warps.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-20 02:41:32 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-20 02:41:32 -0200
commit1fd0d54c560d92c0a6e733cd0472b3e0c4f1e32b (patch)
tree8f38de15ea84e7de4ccd7dc4159ea04e657b2849 /npc/018-2-1/warps.txt
parent73e12e16a98d5345cd38af73e648176ba99302eb (diff)
downloadserverdata-1fd0d54c560d92c0a6e733cd0472b3e0c4f1e32b.tar.gz
serverdata-1fd0d54c560d92c0a6e733cd0472b3e0c4f1e32b.tar.bz2
serverdata-1fd0d54c560d92c0a6e733cd0472b3e0c4f1e32b.tar.xz
serverdata-1fd0d54c560d92c0a6e733cd0472b3e0c4f1e32b.zip
[skip ci] Better labels for warps
Diffstat (limited to 'npc/018-2-1/warps.txt')
-rw-r--r--npc/018-2-1/warps.txt17
1 files changed, 11 insertions, 6 deletions
diff --git a/npc/018-2-1/warps.txt b/npc/018-2-1/warps.txt
index a8c5523f3..9738f538d 100644
--- a/npc/018-2-1/warps.txt
+++ b/npc/018-2-1/warps.txt
@@ -33,12 +33,12 @@ OnTouch:
mes "";
select
l("Sorry, I am a newbie."),
- rif(!(.@q & HH_NOVICE), l("Novice Dungeon")), // Level 0-40
- rif(!(.@q & HH_INTERMEDIARY), l("Intermediary Dungeon")), // Level 21-60
- rif(!(.@q & HH_ADVANCED), l("Advanced Dungeon")), // Level 41-80
- rif(!(.@q & HH_EXPERT), l("Expert Dungeon")), // Level 61-100
- rif((.@q & HH_REQUISITE) && !(.@q & HH_MASTER), l("Master Dungeon")), // Boss Only
- l("None at the moment");
+ rif(BaseLevel >= 40, l("Novice Dungeon (Lv 40+)")), // Level 0-40
+ 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 (HH_EXPERT)
+ rif(.@q & HH_NOVICE, l("Heroes Hold - Great Hall"));
mes "";
switch (@menu) {
case 2:
@@ -76,6 +76,11 @@ OnTouch:
addtimer(500, "#HH_CONTROLLER01::OnPlayerCycle");
closedialog;
break;
+ case 7:
+ mes "";
+ mesn;
+ mesc l("Currently under development.", 1);
+ break;
}
close;