[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Kunlun Guides |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= kobra_k88; L0ne_W0lf |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.0 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= eAthena SVN |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= [Aegis COnversion] |
---|
| 11 | //= Guides for the City of Kunlun |
---|
| 12 | //===== Additional Comments: ================================= |
---|
| 13 | //= 1.0 First version [L0ne_W0lf] |
---|
| 14 | //============================================================ |
---|
| 15 | |
---|
| 16 | gonryun,163,60,4 script Kunlun Guide#gon 780,{ |
---|
| 17 | mes "[He Yuen Zhe]"; |
---|
| 18 | mes "Ni Hao!"; |
---|
| 19 | mes "Welcome to Kunlun~"; |
---|
| 20 | mes "Take a walk around and experience"; |
---|
| 21 | mes "the ancient history and tradition"; |
---|
| 22 | mes "of our breath taking city."; |
---|
| 23 | next; |
---|
| 24 | mes "[He Yuen Zhe]"; |
---|
| 25 | mes "I am responsible for helping you"; |
---|
| 26 | mes "with any questions you may have."; |
---|
| 27 | mes "Please feel free to ask me anything."; |
---|
| 28 | next; |
---|
| 29 | switch(select("Residence of the Chief:Tool Dealer:Weapon Dealer:Armor Dealer:Wine Maker")) { |
---|
| 30 | case 1: |
---|
| 31 | viewpoint 1,109,131,0,0xFF3355; |
---|
| 32 | mes "[He Yuen Zhe]"; |
---|
| 33 | mes "Please follow your minimap, and head over to the ^FF3355+^000000 mark."; |
---|
| 34 | mes "There, you'll get to the residence of the Chief. Enjoy your stay in lovely Kunlun!"; |
---|
| 35 | mes "Xie Xie!"; |
---|
| 36 | close; |
---|
| 37 | case 2: |
---|
| 38 | viewpoint 1,147,82,1,0xCE6300; |
---|
| 39 | mes "[He Yuen Zhe]"; |
---|
| 40 | mes "Please follow your minimap, and head over to the ^CE6300+^000000 mark."; |
---|
| 41 | mes "There, you'll get to the Tool Dealer. Enjoy your stay in lovely Kunlun!"; |
---|
| 42 | mes "Xie Xie!"; |
---|
| 43 | close; |
---|
| 44 | case 3: |
---|
| 45 | viewpoint 1,174,104,2,0x55FF33; |
---|
| 46 | mes "[He Yuen Zhe]"; |
---|
| 47 | mes "Please follow your minimap, and head over to the ^55FF33+^000000 mark."; |
---|
| 48 | mes "There, you'll get to the Weapon Dealer. Enjoy your stay in lovely Kunlun!"; |
---|
| 49 | mes "Xie Xie!"; |
---|
| 50 | close; |
---|
| 51 | case 4: |
---|
| 52 | viewpoint 1,173,84,3,0x3355FF; |
---|
| 53 | mes "[He Yuen Zhe]"; |
---|
| 54 | mes "Please follow your minimap, and head over to the ^3355FF+^000000 mark."; |
---|
| 55 | mes "There, you'll get to the Armor Dealer. Enjoy your stay in lovely Kunlun!"; |
---|
| 56 | mes "Xie Xie!"; |
---|
| 57 | close; |
---|
| 58 | case 5: |
---|
| 59 | viewpoint 1,215,114,3,0xCD69C9; |
---|
| 60 | mes "[He Yuen Zhe]"; |
---|
| 61 | mes "Please follow your minimap, and head over to the ^CD69C9+^000000 mark."; |
---|
| 62 | mes "There, you'll get to the Wine Maker. Enjoy your stay in lovely Kunlun!"; |
---|
| 63 | mes "Xie Xie!"; |
---|
| 64 | close; |
---|
| 65 | } |
---|
| 66 | } |
---|