diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 17:07:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-05 17:07:13 +0300 |
commit | d7ab3345f454811f5e861aa1394ca2753e7f4ba4 (patch) | |
tree | d71802403e5674865a2d7c9a85b6dc6cccb12a5d | |
parent | 61205395749c082a9b5e607012504c98d9cdfbd4 (diff) | |
download | plugin-d7ab3345f454811f5e861aa1394ca2753e7f4ba4.tar.gz plugin-d7ab3345f454811f5e861aa1394ca2753e7f4ba4.tar.bz2 plugin-d7ab3345f454811f5e861aa1394ca2753e7f4ba4.tar.xz plugin-d7ab3345f454811f5e861aa1394ca2753e7f4ba4.zip |
remove functions what already implimented in script language.
-rw-r--r-- | src/map/init.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/map/init.c b/src/map/init.c index 8c65efe..1af804a 100644 --- a/src/map/init.c +++ b/src/map/init.c @@ -45,12 +45,7 @@ HPExport void plugin_init (void) { addScriptCommand("closedialog", "", dummy); addScriptCommand("shop", "s", dummy); addScriptCommand("getitemlink", "s", dummyStr); -// addScriptCommand("menuimage", "ss", dummyStr); -// addScriptCommand("mesn", "*", dummy); -// addScriptCommand("mesq", "s*", dummy); -// addScriptCommand("g", "ss", dummyStr); addScriptCommand("l", "s*", l); - addScriptCommand("lg", "s*", dummyStr); addScriptCommand("getlang", "*", dummyStr); addScriptCommand("setlang", "i", dummy); addScriptCommand("requestlang", "*", dummy); @@ -58,7 +53,6 @@ HPExport void plugin_init (void) { addScriptCommand("setq", "ii", dummy); addScriptCommand("getnpcdir", "*", dummyInt); addScriptCommand("setnpcdir", "*", dummy); -// addScriptCommand("col", "si", dummyStr); addScriptCommand("rif", "is*", dummyStr); addScriptCommand("countitemcolor", "*", dummyInt); addScriptCommand("getclientversion", "*", dummyInt); |