summaryrefslogtreecommitdiff
path: root/npc/003-3/malindou.txt
blob: 845399f91d586514655186a2e50c7b5e0226cee8 (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
// TMW-2 Script.
// Author:
//    Saulc
//    Jesusalva

003-3,36,34,0	script	Malindou	NPC_LLOYD,{
    Banker(.name$, "Tulimshar", 15000);
    close;

OnInit:
    .sex = G_MALE;
    .distance = 4;
    end;

OnPCLoginEvent:
    checkclientversion;
    if (#MerchantBank)
    {
        BankVault += max(0, #MerchantBank);
        #MerchantBank = 0;
    }
    end;
}