26.10.2010, 01:54
219 means you have a new variable defined that is defined at a preceding level.
For Example:
or having it defined in 2 levels of a command or other fxn:
For Example:
pawn Код:
new string[128];
public OnPlayerCommandText(playerid, cmdtext[])
{
new string[128];
if(!strcmp(cmdtext, "/msg", true))
{
format(string, sizeof(string), "%i", 42);
SendClientMessage(playerid, COLOR_GREEN, string);
}
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new string[128];
if(!strcmp(cmdtext, "/msg", true))
{
new string[128];
format(string, sizeof(string).......... //You get the rest