I`m trying to block spawn for a player, using player offset 365, but it doesn`t seem to work.
I want him to not spawn for the whole round. As I saw in a Connor`s post before, setting it to 0 was enough to block the spawn, but it doesn`t work for me.
PHP Code:
#include <amxmodx>
#include <fakemeta>
public client_putinserver( id )
{
set_pdata_int(id, 365, 0, 5);
}
And another question. If a have an outside function that spawns the player, can I block this spawning by setting the offset or it can`t be done.