From c7f3d116efdcc50b0b9a9b6649f1779caf972648 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Dec 2014 13:09:17 +0300 Subject: Remove script command getnpcdir because going to upstream. setnpcdir left for more optimal way to set npc direction. --- src/map/init.c | 1 - src/map/script.c | 28 ---------------------------- src/map/script.h | 1 - 3 files changed, 30 deletions(-) (limited to 'src/map') diff --git a/src/map/init.c b/src/map/init.c index 397be52..fb09b87 100644 --- a/src/map/init.c +++ b/src/map/init.c @@ -74,7 +74,6 @@ HPExport void plugin_init (void) addScriptCommand("requestitems", "v*", requestItems); addScriptCommand("getq", "i", getq); addScriptCommand("setq", "ii", setq); - addScriptCommand("getnpcdir", "*", getNpcDir); addScriptCommand("setnpcdir", "*", setNpcDir); addScriptCommand("rif", "is*", rif); addScriptCommand("countitemcolor", "v*", countItemColor); 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; diff --git a/src/map/script.h b/src/map/script.h index 7fc4ba6..c329359 100644 --- a/src/map/script.h +++ b/src/map/script.h @@ -19,7 +19,6 @@ BUILDIN(requestItem); BUILDIN(requestItems); BUILDIN(getq); BUILDIN(setq); -BUILDIN(getNpcDir); BUILDIN(setNpcDir); BUILDIN(rif); BUILDIN(countItemColor); -- cgit v1.2.3-70-g09d2