How can I respawn dead players using
ONLY fakemeta? I tryed this:
Code:
dllfunc(DLLFunc_Spawn,id)
but when players respawns they are laying on the ground and have 0 hp
then I found this:
Code:
stock fm_respawn(id)
{
set_pev(id, pev_deadflag, DEAD_RESPAWNABLE)
dllfunc(DLLFunc_Spawn, id)
set_pev(id, pev_iuser1, 0)
}
but it gives the same result