blob: ab8ff432145686f6ed3993397d757ef6621ffd16 (
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
|
// TMW-2 Script.
// Author:
// Saulc
// Jesusalva
// Notes:
// Also handle some PCLogin events: CheckClientVersion, and bank
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;
}
|