I want to make a plugin to put the boot on the server, I made this plugin, but ... I give erroare "Don't send ..."
Why?
Code:
#include <amxmodx>
#include <amxmisc>
#include <fakemeta>
new const bot_name[ ] = "Fake Player"
public plugin_init()
{
register_plugin("PLUGIN", "VERSION", "AUTHOR")
new FAKE_PLAYER = engfunc(EngFunc_CreateFakeClient, bot_name)
dllfunc(DLLFunc_ClientConnect, FAKE_PLAYER)
dllfunc(DLLFunc_ClientPutInServer,FAKE_PLAYER)
set_pev(FAKE_PLAYER, pev_team, 3)
}