blob: 862be80a0009a01c87a7c17a45365600dbf84ba5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Banker.
024-3,33,28,0 script Arauto NPC_LLOYD,{
Banker(.name$, "Frostia", 9800);
close;
OnInit:
.sex = G_MALE;
.distance = 5;
.bankId = RegisterBank("Frostia", 12);
end;
}
|