summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-03-01 20:40:08 +0300
committerAndrei Karas <akaras@inbox.ru>2019-03-01 20:40:08 +0300
commit65d6304993a13247311f6c7d98debcb9964b1134 (patch)
tree8f3cff2c45fd0f12c93e7b9c66b56a40d3f63e82
parent8f3adbac0d5fa6395b0fd4452e6a5e701b1eba90 (diff)
downloadserverdata-65d6304993a13247311f6c7d98debcb9964b1134.tar.gz
serverdata-65d6304993a13247311f6c7d98debcb9964b1134.tar.bz2
serverdata-65d6304993a13247311f6c7d98debcb9964b1134.tar.xz
serverdata-65d6304993a13247311f6c7d98debcb9964b1134.zip
Fix move command error and style in rowboat npc
-rw-r--r--npc/001-1/rowboat.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/npc/001-1/rowboat.txt b/npc/001-1/rowboat.txt
index a5e158d3..c600f553 100644
--- a/npc/001-1/rowboat.txt
+++ b/npc/001-1/rowboat.txt
@@ -8,8 +8,6 @@
// Make the rowboat move back to the cave if the player doesnt enter in time.
001-1,193,26,0 script #Rowboat NPC_ROWBOAT_STAND_WE,{
-
-
speech S_LAST_BLANK_LINE | S_LAST_NEXT,
l("Oh, hi."),
l("In case you don't have a commendatory letter from you-know-whom, I am just sitting here and observe the whales."),
@@ -25,9 +23,9 @@
}
OnMoveToBeach:
-firstmove;
+ firstmove;
end;
-
+
OnTimer1000:
dographmovestep;
@@ -35,14 +33,15 @@ OnInit:
.sex = G_MALE;
.distance = 3;
.speed = 175;
-
+
initmovegraph "Cave", 193, 26,
"CP1", 202, 27,
"CP2", 213, 58,
"Beach", 203, 64;
-
+
setmovegraphcmd "Cave", "CP1", 1, "dir 4",
"CP1", "CP2", 1, "dir 4",
- "CP2", "Beach", 1, "dir 4";
+ "CP2", "Beach", 1, "dir 4";
+ firstmove;
initnpctimer;
}