summaryrefslogtreecommitdiff
path: root/src/map/script.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-07 13:09:17 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-07 13:09:17 +0300
commitc7f3d116efdcc50b0b9a9b6649f1779caf972648 (patch)
treef36b0c387d5ea7ce890c138b0d7fb19fb661d909 /src/map/script.c
parent74a811c80e816b182b70fc2eeefd75cf7800494c (diff)
downloadevol-hercules-c7f3d116efdcc50b0b9a9b6649f1779caf972648.tar.gz
evol-hercules-c7f3d116efdcc50b0b9a9b6649f1779caf972648.tar.bz2
evol-hercules-c7f3d116efdcc50b0b9a9b6649f1779caf972648.tar.xz
evol-hercules-c7f3d116efdcc50b0b9a9b6649f1779caf972648.zip
Remove script command getnpcdir because going to upstream.
setnpcdir left for more optimal way to set npc direction.
Diffstat (limited to 'src/map/script.c')
-rw-r--r--src/map/script.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/map/script.c b/src/map/script.c
index d8ea254..fd34aa7 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -398,34 +398,6 @@ BUILDIN(getq)
return true;
}
-BUILDIN(getNpcDir)
-{
- struct npc_data *nd = 0;
-
- if (script_hasdata(st, 2))
- {
- nd = npc->name2id (script_getstr(st, 2));
- }
- if (!nd && !st->oid)
- {
- script_pushint(st, -1);
- return true;
- }
-
- if (!nd)
- nd = (struct npc_data *) map->id2bl (st->oid);
-
- if (!nd)
- {
- script_pushint(st, -1);
- return true;
- }
-
- script_pushint(st, (int)nd->dir);
-
- return true;
-}
-
BUILDIN(setNpcDir)
{
int newdir;