diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-08 19:30:07 +0000 |
commit | 31825ccc2dde034a218d9ad466dd721c40b5651d (patch) | |
tree | 961b976e45988f7f7158d33b3f11a18688f34b1f /npc/pre-re/guides/guides_niflheim.txt | |
parent | 22c75b070526de8b103032f5bf13504af81e0095 (diff) | |
download | hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.gz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.bz2 hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.xz hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.zip |
Okie ladies and gentleman if this commit breaks anything it's jman's and maki's fault, yes, blame them.
Fixing pre-re / re npc support, moving /config/ folder to src root so other servers may also make use of the #define renewal dir and other stuff.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16382 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/pre-re/guides/guides_niflheim.txt')
-rw-r--r-- | npc/pre-re/guides/guides_niflheim.txt | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/npc/pre-re/guides/guides_niflheim.txt b/npc/pre-re/guides/guides_niflheim.txt new file mode 100644 index 000000000..e698ee954 --- /dev/null +++ b/npc/pre-re/guides/guides_niflheim.txt @@ -0,0 +1,64 @@ +//===== rAthena Script ======================================= +//= Niflheim Guide +//===== By: ================================================== +//= L0ne_W0lf +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= [Aegis Conversion] +//= Guide for the city of Niflehim. +//===== Additional Comments: ================================= +//= 1.0 First version, Renewal guide. +//= 1.1 Optimized. [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...?"; + 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"; + viewpoint 1,218,196,0,0x0A82FF; + break; + case 2: + callsub L_Mark,"^006400Pub"; + viewpoint 1,189,208,1,0xAAFF00; + break; + case 3: + callsub L_Mark,"^800080Weapon Shop"; + viewpoint 1,218,170,2,0xDA70D6; + break; + case 4: + callsub L_Mark,"^FF1493Witch's Castle"; + viewpoint 1,255,195,3,0xFF1493; + break; + case 5: + mes "[Niflheim Guide]"; + mes "Sure, I'll remove all marks from your mini-map..."; + mes "Is there anything else I can do for you...?"; + viewpoint 2,1,1,0,0xFFFFFF; + viewpoint 2,1,1,1,0xFFFFFF; + viewpoint 2,1,1,2,0xFFFFFF; + viewpoint 2,1,1,3,0xFFFFFF; + break; + case 6: + mes "[Niflheim Guide]"; + mes "......Bye~!.."; + close; + } + } + end; +L_Mark: + mes "[Niflheim Guide]"; + mes "Let me mark the location of the"; + mes getarg(0)+"^000000..."; + mes "on your mini-map."; + mes "Would you like to check any other locations?"; + return; +} |