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_brasilis.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_brasilis.txt')
-rw-r--r-- | npc/re/guides/guides_brasilis.txt | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/npc/re/guides/guides_brasilis.txt b/npc/re/guides/guides_brasilis.txt new file mode 100644 index 000000000..3e85540ac --- /dev/null +++ b/npc/re/guides/guides_brasilis.txt @@ -0,0 +1,81 @@ +//===== rAthena Script ======================================= +//= Brasilis Guide +//===== By: ================================================== +//= L0ne_W0lf +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= [Aegis Conversion] +//= Guide for the city of Brasilis +//===== Additional Comments: ================================= +//= 1.0 First Version, Renewal guide. +//= 1.1 Added a missing close. +//============================================================ + +brasilis,219,97,3 script Brasilis Guide 478,{ + mes "[Brasilis Guide]"; + mes "Welcome to ^8B4513Brasilis^000000, a country as passionate as the sun."; + mes "If you have any questions, please ask me."; + next; + mes "[Brasilis Guide]"; + mes "Where can I guide you?"; + while (1){ + next; + switch(select("[ Hotel ]:[ Jungle Cable ]:[ Art Museum ]:[ Market ]:[ Verass Monument ]:Remove marks from Mini-Map:Cancel")) { + case 1: + mes "[Brasilis Guide]"; + mes "The Brasilis Hotel is located just above, ^FF3355+^000000."; + mes "Is there anything else I can do for you?"; + viewpoint 1,274,151,2,0xFF3355; + next; + break; + case 2: + mes "[Brasilis Guide]"; + mes "Do you want to go through the rough jungle? You can take a Jungle Cable here ^CE6300+^000000."; + mes "Is there anything else I can do for you?"; + viewpoint 1,308,335,3,0xCE6300; + next; + break; + case 3: + mes "[Brasilis Guide]"; + mes "The pride of Brasilis, the world scale Art Museum is at ^A5BAAD+^000000."; + mes "Is there anything else I can do for you?"; + viewpoint 1,137,167,4,0x00FF00; + next; + break; + case 4: + mes "[Brasilis Guide]"; + mes "You can buy items for hunting at the Market here ^55FF33+^000000."; + mes "Is there anything else I can do for you?"; + viewpoint 1,254,248,5,0x55FF33; + next; + break; + case 5: + mes "[Brasilis Guide]"; + mes "The iconic monument of Brasilis, the Verass Monument stands at ^3355FF+^000000."; + mes "Is there anything else I can do for you?"; + viewpoint 1,195,235,6,0x3355FF; + next; + break; + case 6: + mes "[Brasilis Guide]"; + mes "I'll remove all marks from your mini-map."; + mes "Is there anything else I can do for you?"; + viewpoint 0,274,151,2,0x00FF00; + viewpoint 0,308,335,3,0x00FF00; + viewpoint 0,137,167,4,0x00FF00; + viewpoint 0,254,248,5,0x00FF00; + viewpoint 0,195,235,6,0x00FF00; + next; + break; + case 7: + mes "[Brasilis Guide]"; + mes "Wandering on your own is always the best way to explore. Anyway, take care."; + close; + } + close; + break; + } +} |