21.07.2010, 08:40
Correct, but instead of having this.
I could have.
Its a little better doing that in my opinion, its especially nice if I wanted to make something so the first half is like "gate closed" and the second is "gate opened", etc.
pawn Code:
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
CreateDynamicObject(...);
pawn Code:
new Objects[x]
{
{objectID, ...}
{objectID, ...}
{objectID, ...}
{objectID, ...}
{objectID, ...}
{objectID, ...}
}

