02.01.2012, 15:40
(
Last edited by Gh05t_; 17/01/2012 at 10:05 AM.
)
Quote:
The other error i think was happening when you had a global variable and a local one with the same name.
For example at the top of the script you have "new playername" and somewhere in the middle of the script you also use again "new playername" to create a local variable. |
pawn Code:
stock Function()
{
new bool:variable = false;
if(variable == false)
{
new variable;
}
}