12.10.2014, 08:25
Код:
if (c == 0) return SendClientMessage(playerid, -1, ""STEELBLUE"SERVER: There are no donators/premiums online."); ShowPlayerDialog(playerid, DIALOG_VIPS, DIALOG_STYLE_MSGBOX, ""RED"Premium/Donators Online:", str, "OK", ""); return 1; }
217: loose indentation
The compiler will issue this warning if the code indentation is 'loose', example:
Good:
Код:
if(condition) { action(); result(); }
Код:
if(condition) { action(); result(); }