summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map/init.c1
-rw-r--r--src/map/script.c8
-rw-r--r--src/map/script.h1
3 files changed, 10 insertions, 0 deletions
diff --git a/src/map/init.c b/src/map/init.c
index 2448ffa..e4c395c 100644
--- a/src/map/init.c
+++ b/src/map/init.c
@@ -61,6 +61,7 @@ HPExport void plugin_init (void)
addScriptCommand("setcamnpc", "*", setCamNpc);
addScriptCommand("setcam", "ii", setCam);
+ addScriptCommand("movecam", "ii", moveCam);
addScriptCommand("restorecam", "", restoreCam);
addScriptCommand("npctalk3", "s", npcTalk3);
addScriptCommand("closedialog", "", closeDialog);
diff --git a/src/map/script.c b/src/map/script.c
index d71cc82..e7a3df4 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -82,6 +82,14 @@ BUILDIN(setCam)
return true;
}
+BUILDIN(moveCam)
+{
+ send_npccommand2(script->rid2sd (st), st->oid, 4, 0,
+ script_getnum(st, 2), script_getnum(st, 3));
+
+ return true;
+}
+
BUILDIN(restoreCam)
{
getSD();
diff --git a/src/map/script.h b/src/map/script.h
index fb93c77..88a0e1b 100644
--- a/src/map/script.h
+++ b/src/map/script.h
@@ -8,6 +8,7 @@ BUILDIN(l);
BUILDIN(lg);
BUILDIN(setCamNpc);
BUILDIN(setCam);
+BUILDIN(moveCam);
BUILDIN(restoreCam);
BUILDIN(npcTalk3);
BUILDIN(closeDialog);