08.01.2016, 17:44
Hello, I was reading that it is possible to hide hud with TogglePlayerSpectating. I've set it to 1 in OnPlayerConnect, but hud is still showing, so I've created new test gamemode where I have only this and HUD is still shown:
pawn Код:
#include "a_samp"
main()
{
}
public OnPlayerConnect(playerid)
{
TogglePlayerSpectating(playerid, 1);
return 1;
}