SA-MP Forums Archive
1 Warning - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: 1 Warning (/showthread.php?tid=400270)



1 Warning - Blackazur - 17.12.2012

Код:
COMMAND:vipcolor(playerid,params[])
{
  if(VIP[playerid] == 0) return SendClientMessage(playerid,COLOR_RED,"You are not a V.I.P!");
	
    SetPlayerColor(playerid, COLOR_YELLOW);
    return 1;
}
Warning on the line "return 1;": warning 217: loose indentation


Re: 1 Warning - Konstantinos - 17.12.2012

pawn Код:
COMMAND:vipcolor(playerid,params[])
{
    if(VIP[playerid] == 0) return SendClientMessage(playerid,COLOR_RED,"You are not a V.I.P!");

    SetPlayerColor(playerid, COLOR_YELLOW);
    return 1;
}