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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// TMW2: Moubootaur Legends scripts.
// Author:
// Jesusalva
// Description:
// Rentable Alchemy Bench
012-4,27,31,0 script Alchemy Cauldron NPC_NO_SPRITE,{
mesc l("What will you brew today?");
mesc l("It costs %d GP to use.", .price), 1;
mesc l("This tax must be paid now, and you can brew as much as you wish after payment."), 1;
if (Zeny < .price)
close;
next;
select
l("Pay"),
l("Don't pay.");
mes "";
if (@menu == 2) { closeclientdialog; close; }
clear;
if (Zeny < .price) {
mesc l("WARNING, you have been detected cheating and thus, violating Tulimshar Anti-Theft Policy."), 1;
mesc l("You were jailed and now need a GM to get you out of there."), 1;
logmes "WARNING, "+strcharinfo(0)+" found out cheating, only had "+Zeny+"/300 GP for alchemy table. Jailed.", LOGMES_ATCOMMAND;
consoleinfo("%s jailed - no money when brewing.", strcharinfo(0));
atcommand("@jail "+strcharinfo(0));
// Apply a more realistic penalty
Zeny=0;
CRAFTSYS_CURRENT=0;
close;
}
Zeny-=.price;
do {
mesc l("What will you brew today?");
mes "";
if (AlchemySystem(CRAFT_PLAYER)) {
mesc l("Success!"), 3;
} else {
mesc l("That didn't work!"), 1;
}
next;
mesc l("Try again?");
} while (askyesno() == ASK_YES);
close;
OnInit:
.distance=3;
.price=1500;
end;
}
|