blob: 48fe7c9c043d2edac6968d9ee3fe47851145c3f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// The Mana World scripts.
// Author:
// Micksha
// Description:
// Angus the Smith.
// THIS IS A PLACEHOLDER!
008-2-17,34,47,0 script Angus NPC_ANGUS_THE_SMITH,{
speech
l("Hello."),
l("Do you need your pickaxe or your shovel fixed? Then I am your man."),
lg("If you want to play with unicorns, you better piss off now.");
close;
OnInit:
.bodytype = BODYTYPE_3;
.distance = 4;
end;
}
|