1 | //===== eAthena Script ======================================= |
---|
2 | //= Ice Cream Maker |
---|
3 | //===== By: ================================================== |
---|
4 | //= KOOK SWU |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.2 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena 1.0 |
---|
9 | //===== Description: ========================================= |
---|
10 | //= A man makes you ice-cream |
---|
11 | //===== Additional Comments: ================================= |
---|
12 | //= 1.1 Optimized, changed overlapping coords in Alberta [Lupus] |
---|
13 | //= 1.2 According to the patch, IceCream seller has been removed from Morocc [Lupus] |
---|
14 | //============================================================ |
---|
15 | |
---|
16 | //ALBERTA |
---|
17 | alberta,120,45,2 script Ice Cream Maker::IceCreamer 85,{ |
---|
18 | mes "[Ice Cream Maker]"; |
---|
19 | mes "Fresh Ice Cream made with snow from Lutie!"; |
---|
20 | mes "Enjoy it now, it won't be on sale for long!"; |
---|
21 | mes "^0000FF100 Zeny^000000 Ice Cream,"; |
---|
22 | mes "Ice Cream!"; |
---|
23 | next; |
---|
24 | menu "Gimme Ice Cream!",-,"Cancel Trade",L_End; |
---|
25 | |
---|
26 | mes "[Ice Cream Maker]"; |
---|
27 | mes "Fresh Ice Cream made with snow from Lutie!"; |
---|
28 | mes "Everyone wants our delicious ice cream, but we have limited amount,"; |
---|
29 | mes "so you can only purchase 5 at a time!!"; |
---|
30 | next; |
---|
31 | input @input; |
---|
32 | mes "[Ice Cream Maker]"; |
---|
33 | if(@input<1) goto L_inpC; |
---|
34 | if(@input>5) goto L_inpM; |
---|
35 | if(Zeny< @input*100) goto L_NoZ; |
---|
36 | set Zeny,Zeny-100*@input; |
---|
37 | getitem 536,@input; |
---|
38 | mes "Here you go " +@input+ " Ice Cream for you."; |
---|
39 | close; |
---|
40 | |
---|
41 | L_inpC: |
---|
42 | mes "Deal is canceled."; |
---|
43 | close; |
---|
44 | L_inpM: |
---|
45 | mes "Sorry, but you can only buy 5 at a time."; |
---|
46 | close; |
---|
47 | L_NoZ: |
---|
48 | mes "Sorry, but you need more money."; |
---|
49 | close; |
---|
50 | L_End: |
---|
51 | mes "[Ice Cream Maker]"; |
---|
52 | mes "Are you sure you don't want any?"; |
---|
53 | mes "I won't be selling it for long, and once I run out, there won't be anymore!!!"; |
---|
54 | close; |
---|
55 | } |
---|
56 | |
---|
57 | //MORROC FIELD |
---|
58 | moc_fild16,88,304,4 duplicate(IceCreamer) Ice Cream Maker#2 85 |
---|
59 | |
---|
60 | //MORROC |
---|
61 | //morocc,160,144,4 duplicate(IceCreamer) Ice Cream Maker#3 85 |
---|