i just said where to put it. In taskNoclipRemove inside the if(is_user_alive(id)) {
EDIT: I have noclip block in my bm too and it works fine when i put it there.
EDIT2: I dont have that stock, but try this stock instead:
PHP Code:
stock bool:is_user_stuck(index) {
new Float:g_noclip_origin[3];
pev(index, pev_origin, g_noclip_origin);
if ( trace_hull(g_noclip_origin, HULL_HUMAN,index) != 0 )
{
return true;
}
return false;
}
and then do as Xellath said:
PHP Code:
if (is_user_stuck(id)) {
user_kill(id);
}