summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/inn.txt
blob: 45ed4052ba82fc0777e31a3a92fd5bbe1c0a7cb3 (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
// INN

function|script|Inn|,
{
    mes "[" + @npcname$ + "]";
    mes "\"Would you like to rest? It's only " + @cost + " gp.\"";
    next;
    menu
        "Yes", L_Next,
        "No", L_No;

L_Next:
    if (Zeny < @cost)
        goto L_NoMoney;
    set Zeny, Zeny - @cost;
    heal 10000, 10000;

    mes "[" + @npcname$ + "]";
    mes "\"Sleep well!\"";
    close;

L_No:
    mes "[" + @npcname$ + "]";
    mes "\"See you.\"";
    close;

L_NoMoney:
    mes "[" + @npcname$ + "]";
    mes "\"You don't have enough money to stay here.\"";
    close;
}