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
|
function script useRedWarpTowel {
warp "009-1.gat",51,40; // Hurnscald
getitem "WhiteWarpTowel", 1;
end;
}
function script useGreenWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script useDarkBlueWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script useYellowWarpTowel {
warp "001-1.gat",40,71; // Tulimshar
getitem "WhiteWarpTowel", 1;
end;
}
function script useLightBlueWarpTowel {
warp "020-1.gat",66,91; // Nivalis
getitem "WhiteWarpTowel", 1;
end;
}
function script usePinkWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script useBlackWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script useOrangeWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script usePurpleWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
function script useDarkGreenWarpTowel {
warp "003-1.gat",35,25;
getitem "WhiteWarpTowel", 1;
end;
}
//TODO: entry in items.xml
|