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
|
function script useWhiteWarpTowel {
warp "020-1.gat",66,91; // Nivalis
getitem "GreyWarpTowel", 1;
end;
}
function script useRedWarpTowel {
warp "009-1.gat",51,40; // Hurnscald
getitem "GreyWarpTowel", 1;
end;
}
function script useGreenWarpTowel {
warp "003-1.gat",35,25;
getitem "GreyWarpTowel", 1;
end;
}
function script useBlueWarpTowel {
warp "003-1.gat",35,25;
getitem "GreyWarpTowel", 1;
end;
}
function script useYellowWarpTowel {
warp "001-1.gat",40,71; // Tulimshar
getitem "GreyWarpTowel", 1;
end;
}
function script usePurpleWarpTowel {
warp "003-1.gat",35,25;
getitem "GreyWarpTowel", 1;
end;
}
function script useOrangeWarpTowel {
warp "027-1.gat",70,100; // Graveyard
getitem "GreyWarpTowel", 1;
end;
}
function script usePinkWarpTowel {
warp "012-3.gat",448,66; // Terranite Cave
getitem "GreyWarpTowel", 1;
end;
}
function script useTealWarpTowel {
warp "003-1.gat",35,25;
getitem "GreyWarpTowel", 1;
end;
}
function script useLimeWarpTowel {
warp "003-1.gat",35,25;
getitem "GreyWarpTowel", 1;
end;
}
|