06.10.2011, 06:19
that means that you used for example this
you can fix this by changing the name of the shadowed variable.
this question is not that stupid, i guess you are still learning
pawn Код:
new x;
OnPlayerConnect(playerid)
{
new x; // this one is being shadowed and will not work properly
x = playerid;
return 1;
}
this question is not that stupid, i guess you are still learning