blob: 7b0c5660233ac9b9f24e04c29de75134987c0ad7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// TMW2 Scripts
// If you have a rowboat, you can sail in 014-2 22 96-97 to 011-4 123 21-22
014-2,22,96,0 script #Dock0142 NPC_HIDDEN,0,1,{
end;
OnTouch:
if (!@rowboat_rented) {
dispbottom l("You need a rowboat to set sail here.");
close;
}
warp "011-4", 123, any(21, 22);
sleep2(10);
setmount 3;
end;
}
|