summaryrefslogtreecommitdiff
path: root/world/map/npc/030-2/empty_boxes_helper.txt
blob: fbc720f7c164a42ef22086b967c796792addd270 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Annual Xmas
// author: Jenalya, wushin
// Urmas asks for raw logs to make empty presents boxes
// later he can be asked for those boxes to put toys in

030-2,140,41,0|script|Urmas|328
{
    callfunc "XmasStates";

    if($@xmas_time)
        goto L_XmasMain;
    goto L_OffSeason;

L_OffSeason:
    mes "[Urmas]";
    mes "\"It's nice to not need to find logs in such a hurry. I always seem to have problems every year.\"";
    goto L_Close;

L_XmasMain:
    if (@xmas_helper_bit) goto L_Helping;

    mes "[Urmas]";
    mes "\"Don't stand in the way! We have some serious problems here.\"";
    goto L_Close;

L_Helping:
    mes "[Urmas]";
    mes "\"Ah, I see you're one of the seasonal helpers. Ok, listen to me.";
    mes "\"We have a shortage on the empty present boxes. Don't ask me how that can happen!";
    mes "Those paper-shufflers up there probably messed up the ordering or something. Pah.\"";
    next;
    mes "\"However, we need to fix it. I have only a few boxes left.";
    mes "Bring me some wood, so I can make new boxes out of it.";
    mes $@xmas_log_amount + " Raw Logs will do for one box.\"";
    mes "";
    if (countitem("RawLog") < $@xmas_log_amount)
        mes "\"But I see you do not have enough with you anyway. Come back with some material please.\"";
    if (countitem("RawLog") < $@xmas_log_amount) goto L_Close;
    next;
    mes "\"How many boxes do you need?\"";
    input @amount;
    if (@amount <= 0)
        goto L_Close;
    if (countitem("RawLog") < (@amount * $@xmas_log_amount))
        goto L_NoItems;
    getinventorylist;
    if (@inventorylist_count > 100)
        goto L_FullInv;
    delitem "RawLog", (@amount * $@xmas_log_amount);
    mes "[Urmas]";
    mes "\"Alright! Good job, kid. I'll start to make some more boxes now.";
    mes "Here, take this in the meanwhile and put some toys in it.\"";
    getitem "OpenPresentBox", @amount;
    goto L_Close;

L_FullInv:
    mes "\"You need some space to put the empty boxes.\"";
    goto L_Close;

L_NoItems:
    mes "[Urmas]";
    mes "\"Eh? Are you kidding?\"";
    goto L_Close;

L_Close:
    set @amount, 0;
    close;
}