Files
2026-06-01 12:46:52 +02:00

41 lines
827 B
C++

#include "stdafx.h"
#include "SBotScript.h"
#include <lua/lua.hpp>
//////////////////////////////////////////////////////////////////////////
//Bot Manage
//Bot 추가
int SCRIPT_BotAdd ( struct lua_State *L )
{
int n = lua_gettop(L); // number of arguments
// g_pSBotMng->Perform( id_SPELL, msg );
return NULL;
}
//Bot 삭제
int SCRIPT_BotDel ( struct lua_State *L )
{
int n = lua_gettop(L); // number of arguments
// g_pSBotMng->Perform( id_SPELL, msg );
return NULL;
}
//Bot List
int SCRIPT_BotList ( struct lua_State *L )
{
int n = lua_gettop(L); // number of arguments
// g_pSBotMng->Perform( id_SPELL, msg );
return NULL;
}
//Bot Select
int SCRIPT_BotSelect( struct lua_State *L )
{
int n = lua_gettop(L); // number of arguments
// g_pSBotMng->Perform( id_SPELL, msg );
return NULL;
}