06.05.2014, 22:08
SetPlayerColor with no alpha is probably easier (and faster) if you're doing it on global scale. To make the player's current color invisible, use:
pawn Код:
new invisible_color = GetPlayerColor(playerid) & ~0xFF;
SetPlayerColor(playerid, invisible_color);