diff options
Diffstat (limited to 'npc/re/guides/guides_niflheim.txt')
-rw-r--r-- | npc/re/guides/guides_niflheim.txt | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/npc/re/guides/guides_niflheim.txt b/npc/re/guides/guides_niflheim.txt index 32790bd44..9c9321069 100644 --- a/npc/re/guides/guides_niflheim.txt +++ b/npc/re/guides/guides_niflheim.txt @@ -1,41 +1,45 @@ //===== Hercules Script ====================================== //= Niflheim Guide -//===== By: ================================================== +//===== By: ================================================== //= L0ne_W0lf -//===== Current Version: ===================================== -//= 1.1 -//===== Compatible With: ===================================== -//= Hercules -//===== Description: ========================================= +//===== Current Version: ===================================== +//= 1.2 +//===== Description: ========================================= //= [Official Conversion] -//= Guide for the city of Niflehim. -//===== Additional Comments: ================================= +//= Guide for the city of Niflheim. +//===== Additional Comments: ================================= //= 1.0 First version, Renewal guide. //= 1.1 Optimized. [Euphy] -//============================================================ +//= 1.2 Navigation system update. [Euphy] +//============================================================ niflheim,201,187,3 script Niflheim Guide#01nif 849,{ mes "[Niflheim Guide]"; mes "Welcome to.. ^8B4513Niflheim^000000..."; mes "the Realm of the Dead..."; mes "Do you need help navigating the realm...?"; + if (F_Navi() == 0) { + next; + mes "[Niflheim Guide]"; + mes "When you click on the.. ^B9062F[location name]^000000... you'll receive the most advanced ^B9062FNavigation^000000 services...!"; + } while (1) { next; switch(select("[ Tool Shop ]:[ Pub ]:[ Weapon Shop ]:[ Witch's Castle ]:Remove Marks from Mini-Map:Cancel")) { case 1: - callsub L_Mark,"^0000FFTool Shop"; + callsub L_Mark, F_Navi("Tool Shop","niflheim,218,196","^0000FF"); viewpoint 1,218,196,0,0x0A82FF; break; case 2: - callsub L_Mark,"^006400Pub"; + callsub L_Mark, F_Navi("Pub","niflheim,189,208","^006400"); viewpoint 1,189,208,1,0xAAFF00; break; case 3: - callsub L_Mark,"^800080Weapon Shop"; + callsub L_Mark, F_Navi("Weapon Shop","niflheim,218,170","^800080"); viewpoint 1,218,170,2,0xDA70D6; break; case 4: - callsub L_Mark,"^FF1493Witch's Castle"; + callsub L_Mark, F_Navi("Witch's Castle","niflheim,255,195","^FF1493"); viewpoint 1,255,195,3,0xFF1493; break; case 5: |