Code:
public no_god(id)
{
/**
* If your going to use a set_task with dealing with players
* then your going to have to make sure that they are connected
* the task is completed especially with natives that required the
* the client to be connected.
*/
if(!is_user_connected(id))
return;
set_user_godmode(id) //<---- LINE 637
set_user_rendering(id,kRenderFxNone,255,255,255,kRenderNormal,255)
}
__________________