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
55
56
57
58
59
60
61
62
63
|
// TMW2 script
// Originals from TMW-BR
// Imported by Jesusalva
016-6,0,0,0 script #MarineShip NPC_HIDDEN,117,29,{
end;
OnEvent:
// Handle travel
if (@timer_navio_running == 0) end;
if (PC_DEST$ == "Tulim") goto L_Tulim;
else if (PC_DEST$ == "Hurns") goto L_Hurns;
else if (PC_DEST$ == "Nival") goto L_Nival;
else goto L_Error;
end;
L_Tulim:
PC_DEST$ = "";
LOCATION$ = "Tulim";
@timer_navio_running = 0;
warp "003-1", 119, 25;
message strcharinfo(0), l("@@ disembarks at Tulimshar.", strcharinfo(0));
goto L_CleanUp;
L_Hurns:
PC_DEST$ = "";
LOCATION$ = "Hurns";
@timer_navio_running = 0;
warp "012-1", 156, 65;
message strcharinfo(0), l("@@ disembarks at Hurnscald.", strcharinfo(0));
goto L_CleanUp;
L_Nival:
PC_DEST$ = "";
LOCATION$ = "Nival";
@timer_navio_running = 0;
warp "019-2", 119, 113;
message strcharinfo(0), l("@@ disembarks at Nivalis.", strcharinfo(0));
goto L_CleanUp;
L_Error:
debugmes "ERROR: PLAYER INVALID PC_DEST ON #MarineShip: " + PC_DEST$;
PC_DEST$ = "";
@timer_navio_running = 0;
warp "000-1", 22, 22;
dispbottom l("An error on your travel happened. Please report.");
goto L_CleanUp;
L_CleanUp:
// Clean up pirate ship, if needed.
if (mobcount("016-7", "#MarineShipAttack::OnPirateDie") && !getmapusers("016-7")) {
killmonster("016-7", "All");
}
if (mobcount("016-7", "#MarineShipAttack::OnVictory") && !getmapusers("016-7")) {
killmonster("016-7", "All");
}
if (mobcount("016-7", "#MarineShipAttack::OnVictory") > 1) {
killmonster("016-7", "#MarineShipAttack::OnVictory");
monster "016-7", 38, 27, "Pirate Captain", OceanPirate, "#MarineShipAttack::OnVictory";
}
end;
}
|