diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-04 15:26:16 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-04 15:26:16 +0000 |
commit | 729a171c5eab680888fcb65f78b67487887eaa9b (patch) | |
tree | 9aef113f4388f3c12f4d6660024b60e89b12fac6 /npc/guides/guides_amatsu.txt | |
parent | 83b5f1fcc494f68448a91873bf77cbee60da74e6 (diff) | |
download | hercules-729a171c5eab680888fcb65f78b67487887eaa9b.tar.gz hercules-729a171c5eab680888fcb65f78b67487887eaa9b.tar.bz2 hercules-729a171c5eab680888fcb65f78b67487887eaa9b.tar.xz hercules-729a171c5eab680888fcb65f78b67487887eaa9b.zip |
* Corrected and optimized 12 guide NPCs (/guides/)
* Fixed a small typo in Warlock quest, bugreport:6164 (jobs\3-1\warlock.txt)
* Fixed a couple of job constant typos in "Nameless Island Quests" (quests\quests_nameless.txt)
* Removed non-RE changelogs from RE scripts
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16376 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guides/guides_amatsu.txt')
-rw-r--r-- | npc/guides/guides_amatsu.txt | 55 |
1 files changed, 19 insertions, 36 deletions
diff --git a/npc/guides/guides_amatsu.txt b/npc/guides/guides_amatsu.txt index 7d0379cf4..50ffe3f24 100644 --- a/npc/guides/guides_amatsu.txt +++ b/npc/guides/guides_amatsu.txt @@ -3,14 +3,15 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.0 +//= 1.1 //===== Compatible With: ===================================== -//= rAthena SVN +//= rAthena SVN //===== Description: ========================================= //= [Aegis Conversion] -//= Guide for the city of Amatsu +//= Guide for the city of Amatsu. //===== Additional Comments: ================================= //= 1.0 First version, Renewal guide. +//= 1.1 Optimized. [Euphy] //============================================================ amatsu,202,91,3 script Amatsu Guide#amatsu 758,{ @@ -30,59 +31,35 @@ amatsu,202,91,3 script Amatsu Guide#amatsu 758,{ next; switch(select("[ Kafra Employee ]:[ Bar ]:[ Weapon Dealer ]:[ Tool Dealer ]:[ Amatsu Palace ]:[ Chef Assistant ]:[ Ninja Guild Building ]:[ Sea Captain ]:Remove Marks from Mini-Map:Cancel")) { case 1: - mes "[Amachang]"; - mes "The ^0000FFKafra Employee^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^0000FFKafra Employee"; viewpoint 1,102,149,0,0x0A82FF; break; case 2: - mes "[Amachang]"; - mes "The ^006400Bar^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^006400Bar"; viewpoint 1,215,116,1,0xAAFF00; break; case 3: - mes "[Amachang]"; - mes "The ^008080Weapon Dealer^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^008080Weapon Dealer"; viewpoint 1,129,117,2,0x008080; break; case 4: - mes "[Amachang]"; - mes "The ^FF1493Tool Dealer^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^FF1493Tool Dealer"; viewpoint 1,97,117,3,0xFF1493; break; case 5: - mes "[Amachang]"; - mes "The ^8B4513Amatsu Palace^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^8B4513Amatsu Palace"; viewpoint 1,87,235,4,0x8B4513; break; case 6: - mes "[Amachang]"; - mes "The ^8A2BE2Chef Assistant^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^8A2BE2Chef Assistant"; viewpoint 1,206,150,5,0x8A2BE2; break; case 7: - mes "[Amachang]"; - mes "The ^4B0082Ninja Guild Building^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^4B0082Ninja Guild Building"; viewpoint 1,148,137,6,0x4B0082; break; case 8: - mes "[Amachang]"; - mes "The ^00BFFFSea Captain^000000 is"; - mes "marked on your mini-map."; - mes "Is there anything else I can do for you?"; + callsub L_Mark,"^00BFFFSea Captain"; viewpoint 1,195,79,7,0x00BFFF; break; case 9: @@ -104,5 +81,11 @@ amatsu,202,91,3 script Amatsu Guide#amatsu 758,{ close; } } + end; +L_Mark: + mes "[Amachang]"; + mes "The "+getarg(0)+"^000000 is"; + mes "marked on your mini-map."; + mes "Is there anything else I can do for you?"; + return; } - |