[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Twin Towers NPCs |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= sEiKaN (1.0) |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.6 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= Any Athena Version; 0315+ |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= mRO Event: Twin Towers NPCs |
---|
| 11 | //===== Additional Comments: ================================= |
---|
| 12 | //= 1.2 by Akaru 1.3 by massdriller(Fixed typos) |
---|
| 13 | //= 1.4 fixed coords, according to off. src [Lupus] |
---|
| 14 | //= 1.5 Removed Duplicates [Silent] |
---|
| 15 | //= 1.6 Fixed wrong sprite id on main npc [ultramage] |
---|
| 16 | //============================================================ |
---|
| 17 | |
---|
| 18 | prontera,146,92,4 script Twin Towers#tt1::Twin-Towers 812,{ |
---|
| 19 | mes "[Twin Towers]"; |
---|
| 20 | mes "How are you? We are the Twin Towers."; |
---|
| 21 | mes "It is such a pleasure to be able to meet you here."; |
---|
| 22 | mes "I suppose you know that this is Ragnarok Online, a land of dreams and fantasies."; |
---|
| 23 | mes "Are you having a joyous adventure and exciting experience?"; |
---|
| 24 | next; |
---|
| 25 | mes "[Twin Towers]"; |
---|
| 26 | mes "Although we can't move around and can't live the way you do,"; |
---|
| 27 | mes "we love the world as much as you do!"; |
---|
| 28 | next; |
---|
| 29 | mes "[Twin Towers]"; |
---|
| 30 | mes "May you experience the sensation of this lovely world!"; |
---|
| 31 | mes "For this reason, we are here at your service with our special magic."; |
---|
| 32 | mes "Kindly let us know."; |
---|
| 33 | next; |
---|
| 34 | menu "I shall accept your offer.",YES,"I'll ask for your service next time.",NO; |
---|
| 35 | |
---|
| 36 | NO: |
---|
| 37 | mes "[Twin Towers]"; |
---|
| 38 | mes "Er, what a pity. Traveling by yourself is still the best evidence of adventure."; |
---|
| 39 | mes "Isn't this proving that you are still young?"; |
---|
| 40 | mes "We respect brave hearts like this"; |
---|
| 41 | next; |
---|
| 42 | mes "[Twin Towers]"; |
---|
| 43 | mes "There are good and bad times in life, moreover, adventure isn't an easy task in the first place."; |
---|
| 44 | mes "Isn't this true?"; |
---|
| 45 | mes "Feel free to come to us when you have time, we will always be there to serve you."; |
---|
| 46 | next; |
---|
| 47 | mes "[Twin Towers]"; |
---|
| 48 | mes "Forget all your troubles, and create a splendid legend in this wonderful world."; |
---|
| 49 | mes "This is such a wonderful world, and you'll always be a great adventurer!"; |
---|
| 50 | close; |
---|
| 51 | YES: |
---|
| 52 | mes "[Twin Towers]"; |
---|
| 53 | mes "The flaming passion of an adventurer,"; |
---|
| 54 | mes "The desire to explore the unknown realms,"; |
---|
| 55 | mes "The dedication and commitment to achieve the aspiration..."; |
---|
| 56 | mes "You are simply a true adventurer with what compassion."; |
---|
| 57 | next; |
---|
| 58 | mes "[Twin Towers]"; |
---|
| 59 | mes "We wish to help passionate adventurers."; |
---|
| 60 | mes "Although we are not able to move, luckily we have the special ability that can warp you to places of danger and excitement."; |
---|
| 61 | next; |
---|
| 62 | mes "[Twin Towers]"; |
---|
| 63 | mes "Come on! Where do you wish to go?"; |
---|
| 64 | mes "Just let us know you desired destination and we will send your there!"; |
---|
| 65 | menu "Hidden Temple", HiddenTemple,"Orc Dungeon",OrcDungeon,"Ant Hell",AntHell,"Mjolnir Waste Pit",MjolnirWastePit,"Sphinx",Sphinx,"Glast Heim",GlastHeim,"Comodo",Comodo; |
---|
| 66 | HiddenTemple: |
---|
| 67 | warp "prt_fild01",136,368; |
---|
| 68 | close; |
---|
| 69 | OrcDungeon: |
---|
| 70 | warp "gef_fild10",67,334; |
---|
| 71 | close; |
---|
| 72 | AntHell: |
---|
| 73 | warp "moc_fild04",210,329; |
---|
| 74 | close; |
---|
| 75 | MjolnirWastePit: |
---|
| 76 | warp "mjolnir_02",79,361; |
---|
| 77 | close; |
---|
| 78 | Sphinx: |
---|
| 79 | warp "moc_fild19",105,99; |
---|
| 80 | close; |
---|
| 81 | GlastHeim: |
---|
| 82 | warp "gef_fild06",45,304; |
---|
| 83 | close; |
---|
| 84 | Comodo: |
---|
| 85 | warp "cmd_fild01",30,317; |
---|
| 86 | close; |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | morocc,160,97,4 duplicate(Twin-Towers) Twin Towers#tt2 812 |
---|
| 90 | payon,176,226,4 duplicate(Twin-Towers) Twin Towers#tt3 812 |
---|
| 91 | izlude,134,92,4 duplicate(Twin-Towers) Twin Towers#tt4 812 |
---|
| 92 | alberta,25,238,4 duplicate(Twin-Towers) Twin Towers#tt5 812 |
---|
| 93 | geffen,120,60,4 duplicate(Twin-Towers) Twin Towers#tt6 812 |
---|
| 94 | aldebaran,143,116,4 duplicate(Twin-Towers) Twin Towers#tt7 812 |
---|
| 95 | comodo,194,158,4 duplicate(Twin-Towers) Twin Towers#tt8 812 |
---|