Revision 1, 2.1 kB
(checked in by jinshiro, 17 years ago)
|
|
Rev | Line | |
---|
[1] | 1 | // $Id: kaho_balmung.txt,v 1.1.1.1 2004/09/10 17:26:46 MagicalTux Exp $ |
---|
| 2 | //-------------------- 'Balmung & Lord Kaho's Horns' Quest -------------------- |
---|
| 3 | // Warning! Don't use this quest 8) |
---|
| 4 | |
---|
| 5 | prontera,158,356,4 script Royal Messenger 105,{ |
---|
| 6 | mes "[Royal Messenger]"; |
---|
| 7 | mes "Welcome to prontera, I am the Royal Messenger in charge of the royal quest."; |
---|
| 8 | next; |
---|
| 9 | menu "Listen",-,"No",Lend; |
---|
| 10 | |
---|
| 11 | mes "[Royal Messenger]"; |
---|
| 12 | mes "There are too quests please chose the one you must like."; |
---|
| 13 | next; |
---|
| 14 | menu "Balmung",-,"Lord Kahos horns",Lkahos,"No",Lend; |
---|
| 15 | |
---|
| 16 | mes "[Royal Messenger]"; |
---|
| 17 | mes "The Balmung quest consist of the next items:"; |
---|
| 18 | mes "120 Steel"; |
---|
| 19 | mes "10 Oridecon"; |
---|
| 20 | mes "10 Rough Wind"; |
---|
| 21 | mes "10 Flame Heart"; |
---|
| 22 | mes "10 Mystic Frozen"; |
---|
| 23 | mes "10 Great Nature"; |
---|
| 24 | mes "1,000,000z"; |
---|
| 25 | next; |
---|
| 26 | if(countitem(999)<120 || countitem(984)<10 || countitem(996)<10 || countitem(994)<10 |
---|
| 27 | || countitem(995)<10 || countitem(997)<10 || Zeny<1000000) goto NoItems; |
---|
| 28 | delitem 999,120; |
---|
| 29 | delitem 984,10; |
---|
| 30 | delitem 996,10; |
---|
| 31 | delitem 994,10; |
---|
| 32 | delitem 995,10; |
---|
| 33 | delitem 997,10; |
---|
| 34 | set Zeny,Zeny-1000000; |
---|
| 35 | mes "[Royal Messenger]"; |
---|
| 36 | mes "I see you already have all the items you need."; |
---|
| 37 | mes "nice work."; |
---|
| 38 | getitem 1161,1; |
---|
| 39 | close; |
---|
| 40 | |
---|
| 41 | Lkahos: |
---|
| 42 | mes "[Royal Messenger]"; |
---|
| 43 | mes "The Lord Kahos horns quest consists of the next items:"; |
---|
| 44 | mes "1 Green Feelers"; |
---|
| 45 | mes "10 Star Dust"; |
---|
| 46 | mes "10 Rough Wind"; |
---|
| 47 | mes "10 Flame Heart"; |
---|
| 48 | mes "10 Mystic Frozen"; |
---|
| 49 | mes "10 Great Nature"; |
---|
| 50 | mes "1,000,000z"; |
---|
| 51 | next; |
---|
| 52 | if(countitem(2298)<1 || countitem(1001)<10 || countitem(996)<10 || countitem(994)<10 |
---|
| 53 | || countitem(995)<10 || countitem(997)<10 || Zeny<1000000) goto NoItems; |
---|
| 54 | delitem 2298,1; |
---|
| 55 | delitem 1001,10; |
---|
| 56 | delitem 996,10; |
---|
| 57 | delitem 994,10; |
---|
| 58 | delitem 995,10; |
---|
| 59 | delitem 997,10; |
---|
| 60 | set Zeny,Zeny-1000000; |
---|
| 61 | mes "[Royal Messenger]"; |
---|
| 62 | mes "I see you already have all the items you need."; |
---|
| 63 | mes "nice work."; |
---|
| 64 | getitem 5013,1; |
---|
| 65 | close; |
---|
| 66 | |
---|
| 67 | Lend: |
---|
| 68 | mes "[Royal Messenger]"; |
---|
| 69 | mes "Have a nice day."; |
---|
| 70 | close; |
---|
| 71 | NoItems: |
---|
| 72 | mes "[Royal Messenger]"; |
---|
| 73 | mes "Sorry you don't have all the items or zeny I need."; |
---|
| 74 | mes "Come back when you have them all"; |
---|
| 75 | close; |
---|
| 76 | } |
---|