02.01.2012, 21:16
Quote:
You are creating both global and local variables with the same name. You will need to re-name one of the two.
|
pawn Код:
stock Function()
{
new bool:variable = false;
if(variable == false)
{
new variable;
}
}