// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL. // Copyright (c) 2014 Evol developers #include #include #include #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; }