summaryrefslogtreecommitdiff
path: root/npc/guides/guides_izl.txt
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-06-25 20:22:54 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-06-25 20:22:54 +0000
commitb9d1f960e3f6261084b410abc3bd7ec786366480 (patch)
treeaab1d3cce9c9fce1fbfb6dcec56663764c325f5b /npc/guides/guides_izl.txt
parentd9b39777045e3bcd47e7eb2d6c157be26fb1c34d (diff)
downloadhercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.gz
hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.bz2
hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.xz
hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.zip
* Rather large Kafra update. (May need further testing)
- Updated a good portion of the kafra functions. - Added proper dialog for most functions. - Updated guild Kafras and some o f their locations. * Updated all Guide NPCs. They are now mostly 100% official. - Renamed some of the old files to make them look better, IE: yun to juno. - Added Kunlun and Ayotaya guides. * Added the Einbech tool Dealer since it seemed to had gotten lost when I updated shops. * Updated Dye Maker and Hair Dyer to official. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10810 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guides/guides_izl.txt')
-rw-r--r--npc/guides/guides_izl.txt238
1 files changed, 139 insertions, 99 deletions
diff --git a/npc/guides/guides_izl.txt b/npc/guides/guides_izl.txt
index 314390136..bf3c6c925 100644
--- a/npc/guides/guides_izl.txt
+++ b/npc/guides/guides_izl.txt
@@ -1,116 +1,156 @@
//===== eAthena Script =======================================
//= Izlude Guides
//===== By: ==================================================
-//= kobra_k88
+//= kobra_k88; L0ne_W0lf
//===== Current Version: =====================================
-//= 1.4
+//= 1.5
//===== Compatible With: =====================================
-//= eAthena 7.15 +
+//= eAthena SVN
//===== Description: =========================================
-//=
+//= [Aegis Conversion]
+//= Guides for the City of Izlude
//===== Additional Comments: =================================
//= Fully working
//= 1.2 Optimized, updated common guide names [Lupus]
//= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets]
//= to Muad_Dib
//= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
+//= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
//============================================================
-izlude,121,87,6 script Guide 105,{
+izlude,121,87,6 script Guide#iz 105,{
cutin "prt_soldier",2;
mes "[Izlude Guide]";
- mes "Welcome to Izlude, Prontera's satellite city.";
- mes "If you need any guidance around Izlude, feel free to ask me at anytime.";
-L_MENU:
- next;
- menu "City Guide",L_CITY,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
-L_CITY:
- mes "[Izlude Guide]";
- mes "Please select a location from the following menu.";
- mes "Would you like me to mark locations on your Mini-Map?";
- next;
- menu "Yes.",L_YES,"No.",L_NO;
-L_NO:
- set @COMPASS_CHECK,0;
- goto L_CONT;
-L_YES:
- set @COMPASS_CHECK,1;
-L_CONT:
-L_MENU_2:
- menu "^FF0000Swordman Association^000000",L_SWORD,"Swordman Hall",L_HALL,"Arena",L_ARENA,"Izlude Marina",L_MARINA,"Weapon Shop",L_WEAPON,"Tool Shop",L_TOOL,"Cancel",-;
- mes "[Izlude Guide]";
- mes "Please ask me to remove marks from then Mini-Map if you no longer wish to have the location marks displayed on your Mini-Map.";
- goto L_MENU;
-L_SWORD:
- mes "[Izlude Guide]";
- mes "The Swordman Association is located on an island that is in west Izlude.";
- mes "If you're thinking of changing jobs to Swordman, you should check it out.";
- viewpoint 1,52,140,1,0xFF0000;
- next;
- goto L_WIPE;
-L_HALL:
- mes "[Izlude Guide]";
- mes "The Swordman Hall is located on the eastern island connected to Izlude.";
- viewpoint 1,214,130,2,0x00FF00;
- next;
- goto L_WIPE;
-L_ARENA:
- mes "[Izlude Guide]";
- mes "Izlude's famous Arena is located at the northern end of Izlude.";
- viewpoint 1,128,225,3,0x00FF00;
- next;
- goto L_WIPE;
-L_MARINA:
- mes "[Izlude Guide]";
- mes "You can find the Marina in the northeast part of Izlude.";
- mes "There, you can ride a ship which will take you to Alberta or Byalan Island.";
- viewpoint 1,200,180,4,0xFF0000;
- next;
- goto L_WIPE;
-L_WEAPON:
- mes "[Izlude Guide]";
- mes "You can easily find the Weapon Shop in northwest Izlude.";
- viewpoint 1,111,149,5,0xFF00FF;
- next;
- goto L_WIPE;
-L_TOOL:
- mes "[Izlude Guide]";
- mes "The Tool Shop shouldn't be too hard to find in the northeast part of Izlude.";
- viewpoint 1,148,148,6,0xFF00FF;
- next;
- goto L_WIPE;
-L_WIPE:
- if(@COMPASS_CHECK == 1)goto L_MENU_2;
- viewpoint 2,52,140,1,0xFF0000;
- viewpoint 2,214,130,2,0x00FF00;
- viewpoint 2,128,225,3,0x00FF00;
- viewpoint 2,200,180,4,0xFF0000;
- viewpoint 2,111,149,5,0xFF00FF;
- viewpoint 2,148,148,6,0xFF00FF;
- goto L_MENU_2;
-L_REMOVE:
- viewpoint 2,52,140,1,0xFF0000;
- viewpoint 2,214,130,2,0x00FF00;
- viewpoint 2,128,225,3,0x00FF00;
- viewpoint 2,200,180,4,0xFF0000;
- viewpoint 2,111,149,5,0xFF00FF;
- viewpoint 2,148,148,6,0xFF00FF;
- goto L_MENU;
-L_NOTICE:
- mes "[Izlude Guide]";
- mes "Advances in sorcery and technology have allowed us to update our information system, enabling up to mark locations on your Mini-Map for easier navigation.";
- next;
- mes "[Izlude Guide]";
- mes "Your Mini-Map is located in the upper right corner of the screen.";
- mes "If you can't see it, press the Ctrl + Tab keys or click the 'Map' button in your Basic Information Window.";
- next;
- mes "[Izlude Guide]";
- mes "On your Mini-Map, click on the '+' and '-' symbols to zoom in and out of your Mini-Map.";
- mes "We hope you enjoy your travels here in the city of Izlude.";
- goto L_MENU;
-L_END:
- mes "[Izlude Guide]";
- mes "Okay then, feel free to come to me if you ever feel lost around Izlude, alright?";
- cutin "prt_soldier",255;
- close;
+ mes "Welcome to Izlude,";
+ mes "Prontera's satellite city.";
+ mes "If you need any guidance";
+ mes "around Izlude, feel free";
+ mes "to ask me at anytime.";
+ set .@loop1,1;
+ while(.@loop1) {
+ next;
+ switch(select("City Guide:Remove Marks from Mini-Map:Notice.:Cancel")) {
+ case 1:
+ mes "[Izlude Guide]";
+ mes "Please select";
+ mes "a location from";
+ mes "the following menu.";
+ if (.@compass_check == 0) {
+ mes "Would you like me";
+ mes "to mark locations";
+ mes "on your Mini-Map?";
+ next;
+ if (select("Yes:No") == 1) set .@compass_check,1;
+ }
+ set .@loop2,1;
+ while(.@loop2) {
+ next;
+ switch(select("^FF0000Swordman Association^000000:Swordman Hall:Arena:Izlude Marina:Weapon Shop:Tool Shop:Cancel")) {
+ case 1:
+ mes "[Izlude Guide]";
+ mes "The Swordman Association";
+ mes "is located on an island that is";
+ mes "in west Izlude. If you're thinking of changing jobs to Swordman,";
+ mes "you should check it out.";
+ if (.@compass_check)
+ viewpoint 1,52,140,0,0xFF0000;
+ break;
+ case 2:
+ mes "[Izlude Guide]";
+ mes "The Swordman Hall";
+ mes "is located in the eastern";
+ mes "island connected to Izlude.";
+ if (.@compass_check)
+ viewpoint 1,214,130,1,0x00FF00;
+ break;
+ case 3:
+ mes "[Izlude Guide]";
+ mes "Izlude's famous";
+ mes "Arena is located at the";
+ mes "northern end of Izlude.";
+ if (.@compass_check)
+ viewpoint 1,128,225,2,0x00FF00;
+ break;
+ case 4:
+ mes "[Izlude Guide]";
+ mes "You can find the";
+ mes "Marina in the northeast";
+ mes "part of Izlude. There, you can";
+ mes "ride a ship which will take you";
+ mes "to Alberta or Byalan Island.";
+ if (.@compass_check)
+ viewpoint 1,200,180,3,0xFF0000;
+ break;
+ case 5:
+ mes "[Izlude Guide]";
+ mes "You can easily";
+ mes "find the Weapon Shop";
+ mes "in northwest Izlude.";
+ if (.@compass_check)
+ viewpoint 1,111,149,4,0xFF00FF;
+ break;
+ case 6:
+ mes "[Izlude Guide]";
+ mes "The Tool Shop shouldn't";
+ mes "be too hard to find in the";
+ mes "northeast part of Izlude.";
+ if (.@compass_check)
+ viewpoint 1,148,148,5,0xFF00FF;
+ break;
+ case 7:
+ mes "[Izlude Guide]";
+ mes "Please ask me to ''Remove";
+ mes "Marks from Mini-Map'' if you";
+ mes "no longer wish to have the";
+ mes "location marks displayed";
+ mes "on your Mini-Map.";
+ set .@loop2,0;
+ }
+ }
+ break;
+ case 2:
+ viewpoint 2,237,41,0,0x00FF00;
+ viewpoint 2,237,41,1,0x0000FF;
+ viewpoint 2,46,345,2,0x00FF00;
+ viewpoint 2,175,220,3,0xFF0000;
+ viewpoint 2,134,221,4,0xFF0000;
+ viewpoint 2,204,214,5,0xFF0000;
+ set .@compass_check,0;
+ break;
+ case 3:
+ mes "[Izlude Guide]";
+ mes "Advances in sorcery and";
+ mes "technology have allowed";
+ mes "us to update our information";
+ mes "system, enabling up to mark";
+ mes "locations on your Mini-Map";
+ mes "for easier navigation.";
+ next;
+ mes "[Izlude Guide]";
+ mes "Your Mini-Map is located";
+ mes "in the upper right corner";
+ mes "of the screen. If you can't";
+ mes "see it, press the Ctrl + Tab";
+ mes "keys or click the ''Map'' button in your Basic Info Window.";
+ next;
+ mes "[Izlude Guide]";
+ mes "On your Mini-Map,";
+ mes "click on the ''+'' and ''-''";
+ mes "symbols to zoom in and";
+ mes "our of your Mini-Map. We";
+ mes "hope you enjoy your travels";
+ mes "here in the city of Izlude.";
+ break;
+ case 4:
+ mes "[Izlude Guide]";
+ mes "Okay then, feel";
+ mes "free to come to me";
+ mes "if you ever feel lost";
+ mes "around Izlude, alright?";
+ set .@loop1,0;
+ }
+ }
+ close2;
+ cutin "prt_soldier",255;
+ end;
}