02.08.2013, 05:50
Well, i've started a new script from scratch, but there's a problem:
I'm keep getting some weird error's in the strings, and i can't see anything wrong.
Never had the error before.
CMD:
I'm keep getting some weird error's in the strings, and i can't see anything wrong.
Never had the error before.
CMD:
pawn Код:
CMD:credits(playerid, params[])
{
new string[128];
format(string,sizeof(string), "Credits:");
SendClientMessage(playerid, COLOR_LGREEN, string);
format(string,sizeof(string), "Server founder: ThaCrypte");
SendClientMessage(playerid, COLOR_WHITE, string); //error on this line
format(string,sizeof(string), "Server owner: ThaCrypte");
SendClientMessage(playerid, COLOR_WHITE, string); //error on this line
format(string,sizeof(string), "Server scripter: ThaCrypte");
SendClientMessage(playerid, COLOR_WHITE, string); //error on this line
format(string,sizeof(string), "...");
SendClientMessage(playerid, COLOR_WHITE, string); //error on this line
return 1;
}