[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Einbech Guides |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= Muad_dib; L0ne_W0lf |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.5 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= eAthena SVN |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= [Aegis Conversion] |
---|
| 11 | //= Guides for the City of Einbroch |
---|
| 12 | //===== Additional Comments: ================================= |
---|
| 13 | //= 1.0 Einbech guide by Muad_dib in prometheus format |
---|
| 14 | //= 1.0a Conversion to eA format [MasterOfMuppets] |
---|
| 15 | //= 1.1 missing tabs [Lupus] |
---|
| 16 | //= 1.2 Optimized, updated common guide names [Lupus] |
---|
| 17 | //= 1.3 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA] |
---|
| 18 | //= 1.4 Removed Duplicates [Silent] |
---|
| 19 | //= 1.4a missing tabs [KarLaeda] |
---|
| 20 | //= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] |
---|
| 21 | //============================================================ |
---|
| 22 | |
---|
| 23 | einbech,67,37,4 script Guide#4ein::EinGuide2 852,{ |
---|
| 24 | cutin "ein_soldier",2; |
---|
| 25 | mes "[Einbech Guide]"; |
---|
| 26 | mes "Welcome to Einbech,"; |
---|
| 27 | mes "the Mining Town. We're"; |
---|
| 28 | mes "here to assist tourists,"; |
---|
| 29 | mes "so if you have any questions,"; |
---|
| 30 | mes "please feel free to ask us."; |
---|
| 31 | set .@loop1,1; |
---|
| 32 | while (.@loop1) { |
---|
| 33 | next; |
---|
| 34 | switch(select("City Guide.:Remove Marks from Mini-Map.:Notice.:Cancel.")) { |
---|
| 35 | case 1: |
---|
| 36 | mes "[Einbech Guide]"; |
---|
| 37 | mes "Please select"; |
---|
| 38 | mes "a location from"; |
---|
| 39 | mes "the following menu."; |
---|
| 40 | if (.@compass_check == 0) { |
---|
| 41 | mes "Would you like me"; |
---|
| 42 | mes "to mark locations"; |
---|
| 43 | mes "on your Mini-Map?"; |
---|
| 44 | next; |
---|
| 45 | if (select("Yes.:No.") == 1) set .@compass_check,1; |
---|
| 46 | } |
---|
| 47 | set .@loop2,1; |
---|
| 48 | while (.@loop2) { |
---|
| 49 | if (.@wait_button_chk == 0) set .@wait_button_chk,1; |
---|
| 50 | else next; |
---|
| 51 | switch(select("Train Station:Tavern:Tool Shop:Swordman Guild:Mine:Cancel")) { |
---|
| 52 | case 1: |
---|
| 53 | mes "[Einbech Guide]"; |
---|
| 54 | mes "The Train Stations are"; |
---|
| 55 | mes "located in the northwest"; |
---|
| 56 | mes "and northeast parts of"; |
---|
| 57 | mes "Einbech. There, you can"; |
---|
| 58 | mes "take a train to Einbroch."; |
---|
| 59 | if (.@compass_check) |
---|
| 60 | viewpoint 1,43,213,2,0xFF0000; |
---|
| 61 | break; |
---|
| 62 | case 2: |
---|
| 63 | mes "[Einbech Guide]"; |
---|
| 64 | mes "The Tavern is located"; |
---|
| 65 | mes "in the southern part of"; |
---|
| 66 | mes "Einbech. It's a nice place"; |
---|
| 67 | mes "to relax after a long day."; |
---|
| 68 | if (.@compass_check) |
---|
| 69 | viewpoint 1,142,112,3,0xFF00FF; |
---|
| 70 | break; |
---|
| 71 | case 3: |
---|
| 72 | mes "[Einbech Guide]"; |
---|
| 73 | mes "You can find the Tool"; |
---|
| 74 | mes "Shop in the center of"; |
---|
| 75 | mes "Einbech. There, you can"; |
---|
| 76 | mes "purchase any tools you"; |
---|
| 77 | mes "might need for your travels."; |
---|
| 78 | if (.@compass_check) |
---|
| 79 | viewpoint 1,176,136,4,0xFF00FF; |
---|
| 80 | break; |
---|
| 81 | case 4: |
---|
| 82 | mes "[Einbech Guide]"; |
---|
| 83 | mes "The Swordman Guild"; |
---|
| 84 | mes "is located in the eastern"; |
---|
| 85 | mes "outskirts of Einbech. It's"; |
---|
| 86 | mes "under construction and they"; |
---|
| 87 | mes "haven't started accepting"; |
---|
| 88 | mes "applications."; |
---|
| 89 | if (.@compass_check) |
---|
| 90 | viewpoint 1,250,110,5,0xFF00FF; |
---|
| 91 | break; |
---|
| 92 | case 5: |
---|
| 93 | mes "[Einbech Guide]"; |
---|
| 94 | mes "The Mine, which is"; |
---|
| 95 | mes "Einbech's major industry,"; |
---|
| 96 | mes "is located in the northern"; |
---|
| 97 | mes "part of this town. It's where"; |
---|
| 98 | mes "we get all our ores, although monsters get in the miners' way."; |
---|
| 99 | if (.@compass_check) |
---|
| 100 | viewpoint 1,138,251,6,0x00FF00; |
---|
| 101 | break; |
---|
| 102 | case 6: |
---|
| 103 | mes "[Einbech Guide]"; |
---|
| 104 | mes "Please ask me to ''Remove"; |
---|
| 105 | mes "Marks from Mini-Map'' if you"; |
---|
| 106 | mes "no longer wish to have the"; |
---|
| 107 | mes "location marks displayed"; |
---|
| 108 | mes "on your Mini-Map."; |
---|
| 109 | set .@loop2,0; |
---|
| 110 | } |
---|
| 111 | } |
---|
| 112 | break; |
---|
| 113 | case 2: |
---|
| 114 | viewpoint 2,43,213,2,0xFF0000; |
---|
| 115 | viewpoint 2,142,112,3,0xFF00FF; |
---|
| 116 | viewpoint 2,176,136,4,0xFF00FF; |
---|
| 117 | viewpoint 2,250,110,5,0xFF00FF; |
---|
| 118 | viewpoint 2,138,251,6,0x00FF00; |
---|
| 119 | set .@compass_check,0; |
---|
| 120 | mes "[Einbech Guide]"; |
---|
| 121 | mes "Okay, the marks from"; |
---|
| 122 | mes "your Mini-Map have been"; |
---|
| 123 | mes "removed. If you need any"; |
---|
| 124 | mes "guidance around Einbech,"; |
---|
| 125 | mes "please let me or one of the"; |
---|
| 126 | mes "other Einbech Guides know."; |
---|
| 127 | break; |
---|
| 128 | case 3: |
---|
| 129 | mes "[Einbech Guide]"; |
---|
| 130 | mes "Through the technology of"; |
---|
| 131 | mes "the Schwaltzvalt Republic,"; |
---|
| 132 | mes "we've upgraded to a digital"; |
---|
| 133 | mes "information system that allows"; |
---|
| 134 | mes "us to mark locations on your"; |
---|
| 135 | mes "Mini-Map for easier navigation."; |
---|
| 136 | next; |
---|
| 137 | mes "[Einbech Guide]"; |
---|
| 138 | mes "Your Mini-Map is located"; |
---|
| 139 | mes "in the upper right corner"; |
---|
| 140 | mes "of the screen. If you can't"; |
---|
| 141 | mes "see it, press the Ctrl + Tab"; |
---|
| 142 | mes "keys or click the ''Map'' button in your Basic Info Window."; |
---|
| 143 | next; |
---|
| 144 | mes "[Einbech Guide]"; |
---|
| 145 | mes "On your Mini-Map,"; |
---|
| 146 | mes "click on the ''+'' and ''-''"; |
---|
| 147 | mes "symbols to zoom in and"; |
---|
| 148 | mes "our of your Mini-Map. We"; |
---|
| 149 | mes "hope you enjoy your travels"; |
---|
| 150 | mes "here in Einbech, adventurer."; |
---|
| 151 | break; |
---|
| 152 | case 4: |
---|
| 153 | mes "[Einbech Guide]"; |
---|
| 154 | mes "We hope that you"; |
---|
| 155 | mes "enjoy your travels"; |
---|
| 156 | mes "here in Einbech."; |
---|
| 157 | close2; |
---|
| 158 | set .@loop1,0; |
---|
| 159 | } |
---|
| 160 | } |
---|
| 161 | cutin "ein_soldier",255; |
---|
| 162 | end; |
---|
| 163 | } |
---|
| 164 | |
---|
| 165 | einbech,48,214,4 duplicate(EinGuide2) Guide#5ein 852 |
---|