22.07.2016, 14:40
Код:
warning 204: symbol is assigned a value that is never used: "level"
Код:
stock ABroadCast(color,string[],level) { foreach(Player, i) { if(PlayerInfo[i][pAdmin] >= level) { SendClientMessage(i, color, string); } } return 1; }
Код:
local variable "szRank" shadows a variable at a preceding level
Loose indentations means, your braces and function etc aren't aligned properly. For example;
Bad:
Код:
public test() { if(something) { otherthing; } }
Код:
public test() { if(something) { otherthing; } }