summaryrefslogtreecommitdiff
path: root/npc/002-5/main.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/002-5/main.txt')
-rw-r--r--npc/002-5/main.txt48
1 files changed, 48 insertions, 0 deletions
diff --git a/npc/002-5/main.txt b/npc/002-5/main.txt
new file mode 100644
index 000000000..667712270
--- /dev/null
+++ b/npc/002-5/main.txt
@@ -0,0 +1,48 @@
+// TMW2 script
+// Originals from TMW-BR
+// TODO WARNING: File not yet modified. DO NOT USE.
+
+002-5,28,27,0 script #teleporterNavio NPC_HIDDEN,117,29,{
+ end;
+
+OnEvent:
+ if (PC_DEST == 1) goto L_Destino1;
+ if (PC_DEST == 2) goto L_Destino2;
+ if (PC_DEST == 3) goto L_Destino3;
+ end;
+
+L_Destino1:
+ message strcharinfo(0), "" + strcharinfo(0) + " desembarcou na Ilha de Bhramir.";
+ warp "007", 21, 94;
+ PC_DEST = 0;
+ @timer_navio_running = 0;
+ end;
+
+L_Destino2:
+ message strcharinfo(0), "" + strcharinfo(0) + " desembarcou no Polo Norte.";
+ warp "010", 178, 67;
+ PC_DEST = 0;
+ @timer_navio_running = 0;
+ end;
+
+L_Destino3:
+ message strcharinfo(0), "" + strcharinfo(0) + " desembarcou nas Terras Desconhecidas.";
+ warp "org016", 51, 102;
+ PC_DEST = 0;
+ @timer_navio_running = 0;
+ end;
+}
+
+002-5,40,26,0 script Elmo NPC_ELMO,{
+ set @porto, 0; // Em alto mar
+ //callfunc "CapitaoMirc";
+ hello;
+ close2;
+ if (PC_DEST != 0 && @timer_navio_running == 0) goto L_Timer;
+ end;
+
+L_Timer:
+ addtimer 42000, "#teleporterNavio::OnEvent";
+ @timer_navio_running = 1;
+ end;
+}