01.01.2018, 09:29
Rename those declared variables (new) to some random like stringix instead of string and if you get any "ERROR UNDEFINED SYMBOL" go to that line and rename the used variable to the declared one you renamed. IE. Instead of:
Do this
PHP код:
new name[26];
public OnPlayerConnect(playerid)
{
new name[26];
GetPlayerName(playerid,name,26);
return 1;
}
PHP код:
new name[26];
public OnPlayerConnect(playerid)
{
new playername[26];//changed
GetPlayerName(playerid,playername,26);//changed
return 1;
}