blob: 5e572b70824260f1fc6d7a2d7eef12c24a6aadba (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Evol scripts.
// Author:
// Micksha
// Description:
// Neko, the Trader in Legion area in Tulimshar.
// THIS IS A PLACEHOLDER!
020-1,278,99,0 script Neko NPC_DESERT_HAT_MAN,{
speech
l("Hi there."),
l("I am out of stock, unfortunately."),
l("What do you mean to look at my wares?!"),
l("My collection of random stuff is not for sale! Go away!");
close;
OnInit:
.bodytype = BODYTYPE_2;
.distance = 4;
end;
}
|