diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-26 17:06:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-26 17:06:58 +0300 |
commit | 4f1b7c5f4a35b098560f047ae0579861f4ca96e4 (patch) | |
tree | 5b13136cfb0f71876b83d9da1347e8db1c629048 /src/map | |
parent | 369f7b3a44b0838e168ef7dcdc36d182845e8874 (diff) | |
download | evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.gz evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.bz2 evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.tar.xz evol-hercules-4f1b7c5f4a35b098560f047ae0579861f4ca96e4.zip |
remove files for dummy script functions.
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/dummy.c | 40 | ||||
-rw-r--r-- | src/map/dummy.h | 11 | ||||
-rw-r--r-- | src/map/init.c | 1 |
3 files changed, 0 insertions, 52 deletions
diff --git a/src/map/dummy.c b/src/map/dummy.c deleted file mode 100644 index ae579b7..0000000 --- a/src/map/dummy.c +++ /dev/null @@ -1,40 +0,0 @@ -// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. -// Copyright (c) 2014 Evol developers - -#include <stdio.h> -#include <stdlib.h> -#include <string.h> - -#include "../../../common/HPMi.h" -#include "../../../common/malloc.h" -#include "../../../common/mmo.h" -#include "../../../common/socket.h" -#include "../../../common/strlib.h" -#include "../../../map/clif.h" -#include "../../../map/pc.h" -#include "../../../map/script.h" - -void showNotImplimented() -{ - ShowWarning("Not implimented\n"); -} - -BUILDIN(dummy) -{ - showNotImplimented(); - return true; -} - -BUILDIN(dummyStr) -{ - showNotImplimented(); - script_pushconststr(st, ""); - return true; -} - -BUILDIN(dummyInt) -{ - showNotImplimented(); - script_pushint(st, 0); - return true; -} diff --git a/src/map/dummy.h b/src/map/dummy.h deleted file mode 100644 index e799586..0000000 --- a/src/map/dummy.h +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. -// Copyright (c) 2014 Evol developers - -#ifndef EVOL_MAP_DUMMY -#define EVOL_MAP_DUMMY - -BUILDIN(dummy); -BUILDIN(dummyInt); -BUILDIN(dummyStr); - -#endif // EVOL_MAP_DUMMY diff --git a/src/map/init.c b/src/map/init.c index 03e6320..2f309da 100644 --- a/src/map/init.c +++ b/src/map/init.c @@ -35,7 +35,6 @@ #include "common/interfaces.h" #include "map/clif.h" -#include "map/dummy.h" #include "map/lang.h" #include "map/npc.h" #include "map/parse.h" |