diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-19 03:15:53 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-19 03:15:53 -0200 |
commit | 6eea4a8f6cdc2b75d97e123dafcaddc919396e72 (patch) | |
tree | acf88bc3c05d3c4bf924e95b1dafd11506a722b7 /npc/018-2-1 | |
parent | 315c44d494b9a603b8a7e6f3997ce38ebcf70027 (diff) | |
download | serverdata-6eea4a8f6cdc2b75d97e123dafcaddc919396e72.tar.gz serverdata-6eea4a8f6cdc2b75d97e123dafcaddc919396e72.tar.bz2 serverdata-6eea4a8f6cdc2b75d97e123dafcaddc919396e72.tar.xz serverdata-6eea4a8f6cdc2b75d97e123dafcaddc919396e72.zip |
Autogenerate 018-2-x mobs
Diffstat (limited to 'npc/018-2-1')
-rw-r--r-- | npc/018-2-1/warps.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/npc/018-2-1/warps.txt b/npc/018-2-1/warps.txt index 4ea412232..a023803be 100644 --- a/npc/018-2-1/warps.txt +++ b/npc/018-2-1/warps.txt @@ -33,11 +33,11 @@ OnTouch: mes ""; select l("Sorry, I am a newbie."), - rif(!(.@q & HH_NOVICE), l("Novice Dungeon")), - rif(!(.@q & HH_INTERMEDIARY), l("Intermediary Dungeon")), - rif(!(.@q & HH_ADVANCED), l("Advanced Dungeon")), - rif(!(.@q & HH_EXPERT), l("Expert Dungeon")), - rif((.@q & HH_REQUISITE), l("Master Dungeon")), + 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), l("Master Dungeon")), // Level 81+ l("None at the moment"); mes ""; switch (@menu) { @@ -51,7 +51,7 @@ OnTouch: case 3: @HH_LEVEL=HH_INTERMEDIARY; @HH_TIMER=0; - warp "018-2-2@In", 204, 40; + warp "018-2-3@In", 204, 40; addtimer(500, "#HH_CONTROLLER01::OnPlayerCycle"); closedialog; break; @@ -65,11 +65,13 @@ OnTouch: case 5: @HH_LEVEL=HH_EXPERT; @HH_TIMER=0; - warp "018-2-2@Ex", 51, 40; + warp "018-2-3@Ex", 51, 40; addtimer(500, "#HH_CONTROLLER01::OnPlayerCycle"); closedialog; break; case 6: + mesc l("Work in Progress."), 1; + close; @HH_LEVEL=HH_MASTER; @HH_TIMER=0; warp "018-2-3", 132, 92; |