[1] | 1 | //===== eAthena Script ======================================= |
---|
| 2 | //= Custom Kiel Dungeon Warper |
---|
| 3 | //===== By: ================================================== |
---|
| 4 | //= Lupus |
---|
| 5 | //===== Current Version: ===================================== |
---|
| 6 | //= 1.0 |
---|
| 7 | //===== Compatible With: ===================================== |
---|
| 8 | //= eAthena 1.0 |
---|
| 9 | //===== Description: ========================================= |
---|
| 10 | //= I't custom 8) But you have to pay every time u enter |
---|
| 11 | //===== Additional Comments: ================================= |
---|
| 12 | //= |
---|
| 13 | //============================================================ |
---|
| 14 | |
---|
| 15 | prontera,157,168,2 script Kiel Capry 68,{ |
---|
| 16 | mes "[Kiel Capry]"; |
---|
| 17 | mes callfunc("F_Hi"); |
---|
| 18 | mes "Help us! Everybody's evacuated! There's been an accident in my father's University..."; |
---|
| 19 | if(rand(2))close; |
---|
| 20 | specialeffect 417; |
---|
| 21 | next; |
---|
| 22 | emotion e_wah; |
---|
| 23 | mes "[Kiel Capry]"; |
---|
| 24 | mes "My father, ^FF0000Kiel Carlo^000000 is waiting for help in the broken elevator."; |
---|
| 25 | if(rand(2))close; |
---|
| 26 | next; |
---|
| 27 | mes "[Kiel Capry]"; |
---|
| 28 | mes "What? Our home is located in the middle of ^FF0000Yuno field 08^000000..."; |
---|
| 29 | close; |
---|
| 30 | } |
---|
| 31 | |
---|
| 32 | kh_school,119,146,3 script Kiel Carlo 748,{ |
---|
| 33 | mes "[Kiel Carlo]"; |
---|
| 34 | mes callfunc("F_Hi"); |
---|
| 35 | mes "We have evacuated all the students!"; |
---|
| 36 | mes "What? Are you going to jump in the lift tunnel, right into the hands of those gone bad robots?"; |
---|
| 37 | mes "Well... we need money. Will you pay 10.000z?"; |
---|
| 38 | next; |
---|
| 39 | emotion e_hmm; |
---|
| 40 | menu "Yep.",M_GO, "No way!",-; |
---|
| 41 | |
---|
| 42 | mes "[Kiel Carlo]"; |
---|
| 43 | mes "Well... "+callfunc("F_Bye"); |
---|
| 44 | close; |
---|
| 45 | |
---|
| 46 | M_GO: |
---|
| 47 | mes "[Kiel Carlo]"; |
---|
| 48 | mes "I refuse to let you enter if you don't meet these conditions:"; |
---|
| 49 | mes "1. You have to be 70 Base Level or higher."; |
---|
| 50 | mes "2. You have to donate 10.000 zeny."; |
---|
| 51 | next; |
---|
| 52 | if(BaseLevel<70 || Zeny<10000){ |
---|
| 53 | mes "[Kiel Carlo]"; |
---|
| 54 | mes "Alas... I can't let you in."; |
---|
| 55 | emotion e_sry; |
---|
| 56 | close; |
---|
| 57 | } |
---|
| 58 | set Zeny,Zeny-10000; |
---|
| 59 | warp "kh_kiehl02",rand(46,53),rand(9,12); |
---|
| 60 | end; |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | kh_kiehl02,49,5,0 warp warpk06 1,1,kh_school,119,146 |
---|