22.02.2017, 16:43
Quote:
Код:
forward SendFactionMessage(faction, color, string[]); Код:
stock SendFactionMessage( ... , col, string[]) |
error 025: function heading differs from prototype
CODE:
Код HTML:
stock SendFactionMessage(faction, col, string[])
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pFaction] > 0)
SendClientMessage(i, col, string);
}
return 1;
}