How do I read the entire line, I read only the first in line ... why?
Code:
#include <amxmodx>
#include <fakemeta>
new const BOOT[] = { "Name", "Name2" }
public plugin_init()
{
set_task(2.0, "cmdBOOT")
}
public cmdBOOT()
{
new PLAYER = engfunc(EngFunc_CreateFakeClient, BOOT)
if(pev_valid(PLAYER))
{
set_pev(PLAYER, pev_team, 3)
dllfunc(DLLFunc_Think, PLAYER)
}
}