13.01.2015, 21:35
aight Show me Line 3349
And ,
About the Should Return Value , use this
Remember : This should Fix THe Warning ,
About The Error , Show me line So i can know Wats Wrong
And ,
About the Should Return Value , use this
pawn Код:
CMD:healall(playerid,params[])
{
new string[200];
LoginCheck(playerid);
if(User[playerid][accountAdmin] >= 4)
{
foreach(Player, i)
{
PlayerPlaySound(i,1057,0.0,0.0,0.0);
SetPlayerHealth(i,100.0);
}
}
format(string, 128, "[HEAL] "white"Everyone has been healed by %s.", GetName(playerid));
SendAMessage(COLOR_RED, string);
}
else
{
SendClientMessage(playerid, COLOR_GREY, "You are not authorized to use that command!"); // if not, send him only the following message
}
return 1;
}
}
About The Error , Show me line So i can know Wats Wrong