diff options
author | Trojal <trojal@gmail.com> | 2013-01-10 20:09:39 -0800 |
---|---|---|
committer | Trojal <trojal@gmail.com> | 2013-01-10 20:32:02 -0800 |
commit | 83e7a4954437c13aec639b0b512252cc20a8f36c (patch) | |
tree | b7f6d11b2058248d026f2d9944e8f4b6ac288d50 /npc/pre-re/guides/guides_alberta.txt | |
parent | 51bfeb38eb139e97e0e1c096c85c15fba234f35b (diff) | |
parent | 38e583df21eccd9e4f31d38acaae32579c6f0d27 (diff) | |
download | hercules-83e7a4954437c13aec639b0b512252cc20a8f36c.tar.gz hercules-83e7a4954437c13aec639b0b512252cc20a8f36c.tar.bz2 hercules-83e7a4954437c13aec639b0b512252cc20a8f36c.tar.xz hercules-83e7a4954437c13aec639b0b512252cc20a8f36c.zip |
Merge rathena repository to form Hercules initial commit.
Diffstat (limited to 'npc/pre-re/guides/guides_alberta.txt')
-rw-r--r-- | npc/pre-re/guides/guides_alberta.txt | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/npc/pre-re/guides/guides_alberta.txt b/npc/pre-re/guides/guides_alberta.txt new file mode 100644 index 000000000..c08894f52 --- /dev/null +++ b/npc/pre-re/guides/guides_alberta.txt @@ -0,0 +1,159 @@ +//===== rAthena Script ======================================= +//= Alberta Guides +//===== By: ================================================== +//= kobra_k88; L0ne_W0lf +//===== Current Version: ===================================== +//= 1.5a +//===== Compatible With: ===================================== +//= rAthena SVN +//===== Description: ========================================= +//= [Official Conversion] +//= Guides for the city of Alberta +//===== Additional Comments: ================================= +//= Fully working +//= 1.1 Fixed Armory coords, thanks to Freya team +//= 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 official 10.3 standards. [L0ne_W0lf] +//= 1.5 Fixed some errors with the loop[Samuray22] +// -Thanks to $ephiroth. +//============================================================ + +alberta,23,238,4 script Guide#alb::AlbGuide 105,{ + cutin "prt_soldier",2; + mes "[Alberta Guide]"; + mes "Welcome to Alberta,"; + mes "the Port City. Feel free"; + mes "to ask me if you're having"; + mes "trouble finding anything in"; + mes "town, or if you just need"; + mes "guidance around the city."; + set .@loop1,1; + while (.@loop1) { + next; + switch(select("City Guide:Remove Marks from Mini-Map:Notice:Cancel")) { + case 1: + mes "[Alberta 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) { + if (.@wait_button_chk == 0) set .@wait_button_chk,1; + else next; + + switch(select("^FF0000Merchant Guild^000000:Weapon Shop:Tool Shop:Inn:Forge:Cancel")) { + case 1: + mes "[Alberta Guide]"; + mes "The Merchant Guild"; + mes "handles Job Changes"; + mes "to the Merchant Class,"; + mes "and is located in the"; + mes "southwest corner"; + mes "of Alberta."; + if (.@compass_check) + viewpoint 1,33,41,2,0xFF0000; + break; + case 2: + mes "[Alberta Guide]"; + mes "The Weapon Shop"; + mes "can be found in the"; + mes "southern end of Alberta."; + if (.@compass_check) + viewpoint 1,117,37,3,0xFF00FF; + break; + case 3: + mes "[Alberta Guide]"; + mes "The Tool Shop"; + mes "is kind of close"; + mes "to the center of"; + mes "Alberta. It shouldn't"; + mes "be too hard to find."; + if (.@compass_check) + viewpoint 1,98,154,4,0xFF00FF; + break; + case 4: + mes "[Alberta Guide]"; + mes "There's an Inn"; + mes "at the northern"; + mes "end of Alberta"; + mes "where you can rest."; + if (.@compass_check) + viewpoint 1,65,233,5,0xFF00FF; + break; + case 5: + mes "[Alberta Guide]"; + mes "The Forge in Alberta"; + mes "is in the same building"; + mes "as the Merchant Guild."; + mes "It's to the southwest."; + if (.@compass_check) + viewpoint 1,35,41,6,0xFF00FF; + break; + case 6: + mes "[Alberta 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,2,0xFF0000; + viewpoint 2,237,41,3,0xFF00FF; + viewpoint 2,46,345,4,0xFF00FF; + viewpoint 2,175,220,5,0xFF00FF; + viewpoint 2,175,220,6,0xFF00FF; + set .@compass_check,0; + break; + case 3: + mes "[Alberta 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 "[Alberta 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 "[Alberta 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 Alberta."; + break; + case 4: + mes "[Alberta Guide]"; + mes "Be safe when you"; + mes "travel and don't hesitate"; + mes "to ask me if you have any"; + mes "questions about Alberta."; + close2; + set .@loop1,0; + } + } + cutin "prt_soldier",255; + end; +} + +alberta,120,60,3 duplicate(AlbGuide) Guide#2alb 105
\ No newline at end of file |