14.10.2018, 18:39
Warnings
Codes
CODE IMAGE FOR LINES
https://imgur.com/a/YGuXMt9
Код:
G:\Pawno\MW3SAMP-master\gamemodes\minigames.pwn(73) : warning 215: expression has no effect G:\Pawno\MW3SAMP-master\gamemodes\minigames.pwn(79) : warning 215: expression has no effect Pawn compiler 3.2.3664 Copyright © 1997-2016, ITB CompuPhase 2 Warnings.
Код:
CMD:vgod(playerid)
{
if(PlayerInfo[playerid][pVIP] >= 2) return SendClientMessage(playerid, COLOR_RED, "You don't have V.I.P Access to you're account.");
{
if(PlayerInfo[playerid][pGOD] < 0)
{
SetPlayerHealth(playerid, 999999999);
SendClientMessage(playerid, COLOR_GREEN, "You have enabled God Mode.");
PlayerInfo[playerid][pGOD] < 1;
}
if(PlayerInfo[playerid][pGOD] < 1)
{
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid, COLOR_GREEN, "You have disabled God Mode.");
PlayerInfo[playerid][pGOD] == 0;
}
}
return 1;
}
https://imgur.com/a/YGuXMt9


