diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-03 00:50:20 +0300 |
commit | 197f7fd9b94a127d70f961890dea2fe477260522 (patch) | |
tree | c33df596a643200681934e9ad856b05dba747bc1 /npc/re/guides/guides_dewata.txt | |
parent | 8f80f9172c20c6aae6d96caeb5402af9a4fb425b (diff) | |
download | hercules-197f7fd9b94a127d70f961890dea2fe477260522.tar.gz hercules-197f7fd9b94a127d70f961890dea2fe477260522.tar.bz2 hercules-197f7fd9b94a127d70f961890dea2fe477260522.tar.xz hercules-197f7fd9b94a127d70f961890dea2fe477260522.zip |
Remove conf dir.
Diffstat (limited to 'npc/re/guides/guides_dewata.txt')
-rw-r--r-- | npc/re/guides/guides_dewata.txt | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/npc/re/guides/guides_dewata.txt b/npc/re/guides/guides_dewata.txt deleted file mode 100644 index 00df6bf24..000000000 --- a/npc/re/guides/guides_dewata.txt +++ /dev/null @@ -1,104 +0,0 @@ -//================= Hercules Script ======================================= -//= _ _ _ -//= | | | | | | -//= | |_| | ___ _ __ ___ _ _| | ___ ___ -//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| -//= | | | | __/ | | (__| |_| | | __/\__ \ -//= \_| |_/\___|_| \___|\__,_|_|\___||___/ -//================= License =============================================== -//= This file is part of Hercules. -//= http://herc.ws - http://github.com/HerculesWS/Hercules -//= -//= Copyright (C) 2012-2015 Hercules Dev Team -//= Copyright (C) Euphy -//= Copyright (C) Lemongrass -//= Copyright (C) Muad_Dib -//= -//= Hercules is free software: you can redistribute it and/or modify -//= it under the terms of the GNU General Public License as published by -//= the Free Software Foundation, either version 3 of the License, or -//= (at your option) any later version. -//= -//= This program is distributed in the hope that it will be useful, -//= but WITHOUT ANY WARRANTY; without even the implied warranty of -//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -//= GNU General Public License for more details. -//= -//= You should have received a copy of the GNU General Public License -//= along with this program. If not, see <http://www.gnu.org/licenses/>. -//========================================================================= -//= Dewata Guide -//================= Description =========================================== -//= Guide for the city of Dewata. -//================= Current Version ======================================= -//= 1.1 -//========================================================================= - -dewata,202,106,4 script Dewata Guide#dewata01 4_M_DEWOLDWOMAN,{ - 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?"; - F_Navi("[Dewata Guide]"); - while (1) { - next; - switch(select("[ Kafra Employee ]", "[ Weapon Dealer ]", "[ Armor Dealer ]", "[ Tool Dealer ]", "[ Restauranteur ]", "[ Krakatau Gatekeeper ]", "[ Alberta Sailor ]", "Remove marks from Mini-Map", "Cancel")) { - case 1: - callsub L_Mark, "^0000FFKafra Employee^000000"; - viewpoint 1,202,184,0,0x000FFF; - break; - case 2: - callsub L_Mark, F_Navi("Weapon Dealer","dewata,218,164","^008080"); - viewpoint 1,218,163,1,0x008080; - break; - case 3: - callsub L_Mark, F_Navi("Armor Dealer","dewata,158,182","^008080"); - viewpoint 1,158,182,2,0x008080; - break; - case 4: - callsub L_Mark, F_Navi("Tool Dealer","dewata,182,164","^FF1493"); - viewpoint 1,182,164,3,0xFF1493; - break; - case 5: - callsub L_Mark, F_Navi("Restauranteur","dewata,146,109","^FF1493"); - viewpoint 1,146,109,4,0xFF1493; - break; - case 6: - callsub L_Mark, F_Navi("Krakau Gatekeeper","dewata,235,56","^8A2BE2"); - viewpoint 1,235,56,5,0x8A2BE2; - break; - case 7: - callsub L_Mark, F_Navi("Alberta Sailor","dewata,229,49","^00BFFF"); - viewpoint 1,229,49,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)+" 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 4_M_DEWOLDWOMAN |