09.07.2011, 08:18
That means that you've defined doors and lights globally, then tried to define them inside a function.
pawn Код:
new number; // This would be defined globally
public fail()
{
new number; //So you could fix it by removing the global one, or renaming this.
}