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/re/guides/guides_lutie.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/re/guides/guides_lutie.txt')
-rw-r--r-- | npc/re/guides/guides_lutie.txt | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/npc/re/guides/guides_lutie.txt b/npc/re/guides/guides_lutie.txt new file mode 100644 index 000000000..418637ba5 --- /dev/null +++ b/npc/re/guides/guides_lutie.txt @@ -0,0 +1,75 @@ +//===== rAthena Script ======================================= +//= Lutie Guide +//===== By: ================================================== +//= L0ne_W0lf +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= [Aegis Conversion] +//= Guide for the city of Lutie. +//===== Additional Comments: ================================= +//= 1.0 First version, Renewal guide. +//= 1.1 Fixed and optimized. [Euphy] +//============================================================ + +xmas,140,137,3 script Lutie Guide#xmas 717,{ + mes "[Lutie Guide]"; + mes "Welcome to ^8B4513Lutie^000000,"; + mes "the Snow Village."; + mes "Do you need help navigating the village?"; + while (1) { + next; + switch(select("[ Gift Shop ]:[ Church ]:[ Weapon & Armor Shop ]:[ Tool Shop ]:[ Santa's House ]:[ Toy Factory ]:Remove Marks from Mini-Map:Cancel")) { + case 1: + callsub L_Mark,"^008080Gift Shop"; + viewpoint 1,172,131,2,0x008080; + break; + case 2: + callsub L_Mark,"^006400Church"; + viewpoint 1,104,287,1,0xAAFF00; + break; + case 3: + callsub L_Mark,"^FF1493Weapon & Armor Shop"; + viewpoint 1,171,158,3,0xFF1493; + break; + case 4: + callsub L_Mark,"^8B4513Tool Shop"; + viewpoint 1,122,131,4,0x8B4513; + break; + case 5: + callsub L_Mark,"^B9062FSanta's House",1; + viewpoint 1,149,237,5,0x9400D3; + break; + case 6: + callsub L_Mark,"^9400D3Toy Factory"; + viewpoint 1,143,312,6,0xFF0000; + break; + case 7: + mes "[Lutie 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; + viewpoint 2,1,1,4,0xFFFFFF; + viewpoint 2,1,1,5,0xFFFFFF; + viewpoint 2,1,1,6,0xFFFFFF; + break; + case 8: + mes "[Lutie Guide]"; + mes "Be safe on your travels."; + close; + } + } + end; +L_Mark: + mes "[Lutie Guide]"; + mes "Let me mark the location of "+((getarg(1,0))?"":"the"); + mes getarg(0)+"^000000"; + mes "on your mini-map."; + mes "Would you like to check any other locations?"; + return; +} |