summaryrefslogtreecommitdiff
path: root/npc/functions/bank.txt
blob: 22facc1fcb2fb7fc3a596f7c95587b1fc8afb519 (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
69
70
71
72
73
74
75
76
// Evol scripts.
// Authors:
//    gumi
//    Reid

function	script	MerchantGuild_Bank	{
    speech 5,
        l("Fine, what do you want to do with your money?");

    do
    {
        .@q = select (l("Deposit."),
                     l("Withdraw."),
                     l("Check my balance."),
                     l("I'm done."));
        switch (.@q)
        {
            case 1:
                speech 1,
                    l("Enter the amount that you want to deposit.");
                mes "";

                input .@amount;
                if (.@amount < 1)
                {
                    speech 5,
                        l("Please enter a valid amount.");
                    continue;
                }
                if (.@amount > Zeny)
                {
                    speech 5,
                        l("You do not have enough Esperin on yourself.");
                    continue;
                }
                set Zeny, Zeny - .@amount;
                set #MerchantBank, #MerchantBank + .@amount;

                speech 5,
                    l("You made a cash deposit of @@ E.", .@amount);

                break;
            case 2:
                speech 1,
                    l("Enter the amount that you want to withdraw.");
                mes "";

                input .@amount;
                if (.@amount < 1)
                {
                    speech 5,
                        l("Please enter a valid amount.");
                    continue;
                }
                if (.@amount > #MerchantBank)
                {
                    speech 5,
                        l("You do not have enough Esperin on your bank account.");
                    continue;
                }
                set #MerchantBank, #MerchantBank - .@amount;
                set Zeny, Zeny + .@amount;

                speech 5,
                    l("You withdrawn a total of @@ E.", .@amount);

                break;
            case 3:
                speech 5,
                    l("You currently have @@ on your bank account.", #MerchantBank);
                break;
        }
    } while (.@q != 4);

    return;
}