blob: 879208096cca42d9752ea3aa21b01eba2cef608a (
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
26
27
|
// TMW2 scripts.
// Author:
// Jesusalva
// Description:
// Debug functions for Craft Systems
001-3-1,32,89,0 script GM Alchemy Table NPC_NO_SPRITE,{
if (!$@GM_OVERRIDE && $EVENT$ == "" && !is_staff()) goto L_Offline;
mesc l("Welcome to Saulc's Magic Alchemy Table!");
mesc l("This table will prepare the potion for you, no skill required!");
mesc l("What will you brew today?");
if (AlchemySystem(CRAFT_NPC))
mesc l("Success!"), 3;
else
mesc l("That didn't work!"), 1;
close;
L_Offline:
npctalk3 l("Oops! Seems like Saulc doesn't wants you messing on his chemistry set!");
close;
OnInit:
.distance=5;
end;
}
|