04.05.2009, 21:39
Looking through the pwn I can only see 5 tabs, INDENT MOAR!!
Also, while having every object assigned it's own variable w/e works, it would be alot tidier to use an array. Then when it came to removing the objects you could use:
There, that saved ~ 70 lines didn't it!
Also, while having every object assigned it's own variable w/e works, it would be alot tidier to use an array. Then when it came to removing the objects you could use:
pawn Код:
for(new a=0; a<Objects; a++)
{
DestroyObject(a);
}

