10.02.2019, 14:36
Quote:
and if your if statement has only one line of code, there is no need to add braces, you can:
Код:
if(PlayerIsInLobby[playerid]) return SetPlayerHealth(playerid, Float:0x7F800000); Код:
if(PlayerIsInLobby[playerid] == 1) { SetPlayerHealth(playerid, Float:0x7F800000 ); } |