blob: 20fd9cab0f3a07f8a29882aea3761ceb0b0af1a6 (
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
28
29
30
31
32
33
34
35
36
37
|
// TMW-2 Script
// Author:
// Saulc
// Jesusalva
// Description:
// Free well that give sewer water. a good place for tulim kids to miss school :b
003-1,47,79,0 script Old Well NPC_PLAYER,{
mes col("You found a free well, It's time to plenty some @@!", getitemlink(EmptyBottle)", 9);
input .@count;
if (.@count == 0)
close;
.@empty = countitem("EmptyBottle");
if (.@empty < .@count)
goto L_NotEnoughBottles;
getinventorylist;
inventoryplace BottleOfSewerWater, .@count;
delitem "EmptyBottle", .@count;
getitem "BottleOfSewerWater", .@count;
close;
L_NotEnoughBottles:
mes col("You don't have that many empty bottles!", 9);
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
|