Open ../src/map/script.cpp and before:
/// script command definitions
/// for an explanation on args, see add_buildin_func
struct script_function buildin_func[] = {
add:
BUILDIN_FUNC(kick)
{
TBL_PC *sd;
if (!script_rid2sd(sd))
return SCRIPT_CMD_SUCCESS;
clif_GM_kick(NULL, sd);
return SCRIPT_CMD_SUCCESS;
}
after:
/// script command definitions
/// for an explanation on args, see add_buildin_func
struct script_function buildin_func[] = {
add:
BUILDIN_DEF(kick, ""),
Example:
geffen,132,38,3 script Example 51,{
kick;
}