diff options
author | lemongrass3110 <lemongrass3110@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-03-06 21:38:39 +0000 |
---|---|---|
committer | Streusel <advance_me@hotmail.de> | 2013-03-06 22:08:16 -0800 |
commit | 64dc4dbf9cb954f5359ba1fe932fb77042112464 (patch) | |
tree | b4b50de53562ad6a13dcb9bfbee962d573e617c5 /npc/re/guides | |
parent | 7bafb75f42dd00364da646477cadbaf75652a4e2 (diff) | |
download | hercules-64dc4dbf9cb954f5359ba1fe932fb77042112464.tar.gz hercules-64dc4dbf9cb954f5359ba1fe932fb77042112464.tar.bz2 hercules-64dc4dbf9cb954f5359ba1fe932fb77042112464.tar.xz hercules-64dc4dbf9cb954f5359ba1fe932fb77042112464.zip |
Updated dewata to match the official scripts.
This commit includes a optional SQL upgrade file, that will reset all the dewata quests and the related variables, that your users have done.
Thanks to Euphy for helping me and additionally thanks to Flaid for taking his time to test our conversion.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17178 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/re/guides')
-rw-r--r-- | npc/re/guides/guides_dewata.txt | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/npc/re/guides/guides_dewata.txt b/npc/re/guides/guides_dewata.txt new file mode 100644 index 000000000..f554186a4 --- /dev/null +++ b/npc/re/guides/guides_dewata.txt @@ -0,0 +1,91 @@ +//===== rAthena Script ======================================= +//= Dewata Guide +//===== By: ================================================== +//= Muad_Dib +//===== Current Version: ===================================== +//= 1.0 +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= [Official Conversion] +//= Guide for the city of Dewata. +//===== Additional Comments: ================================= +//= 1.0 First version. [Lemongrass] +//============================================================ + +dewata,202,106,4 script Dewata Guide#dewata01 535,{ + mes "[Dewata Guide]"; + mes "Welcome to ^8B4513Dewata Island^000000,"; + mes "a place with dazzling waves and charming views it's a great place to relax."; + mes "If you have any questions, please ask me."; + next; + mes "[Dewata Guide]"; + mes "Where can I guide you?"; + while (1) { + next; + switch(select("[ Kafra Employee ]:[ Weapon Dealer ]:[ Armor Dealer ]:[ Tool Dealer ]:[ Krakatau Gatekeeper ]:[ Lodge Owner ]:[ Alberta Sailor ]:Remove marks from Mini-Map:Cancel")) { + case 1: + callsub L_Mark,"^0000FFKafra Employee"; + viewpoint 1,202,184,0,0x000FFF; + break; + + case 2: + callsub L_Mark,"^008080Armor Dealer"; + viewpoint 1,218,163,1,0x008080; + break; + + case 3: + callsub L_Mark,"^008080Weapon Dealer"; + viewpoint 1,158,182,2,0x008080; + break; + + case 4: + callsub L_Mark,"^FF1493Tool Dealer"; + viewpoint 1,182,164,3,0xFF1493; + break; + + case 5: + callsub L_Mark,"^FF1493Krakau Gatekeeper"; + viewpoint 1,232,59,4,0xFF1493; + break; + + case 6: + callsub L_Mark,"^8A2BE2Lodge Owner"; + viewpoint 1,195,235,5,0x8A2BE2; + break; + + case 7: + callsub L_Mark,"^00BFFFAlberta Sailor"; + viewpoint 1,230,52,6,0x00BFFF; + break; + + case 8: + mes "[Dewata Guide]"; + mes "I'll remove all marks from your mini-map."; + mes "Is there anything else I can do for you?"; + viewpoint 2,202,184,0,0xFFFFFF; + viewpoint 2,218,163,1,0xFFFFFF; + viewpoint 2,158,182,2,0xFFFFFF; + viewpoint 2,182,164,3,0xFFFFFF; + viewpoint 2,232,59,4,0xFFFFFF; + viewpoint 2,195,235,5,0xFFFFFF; + viewpoint 2,230,52,6,0xFFFFFF; + break; + + case 9: + mes "[Dewata Guide]"; + mes "Enjoy your trip!!"; + close; + } + } + +L_Mark: + mes "[Dewata Guide]"; + mes "The "+getarg(0)+"^000000 is"; + mes "marked on your mini-map."; + mes "Check your mini-map."; + mes "Is there anything else I can do for you?"; + return; +} + +dewata,197,184,4 duplicate(Dewata Guide#dewata01) Dewata Guide#dewata02 535 |