12.06.2013, 14:30
Just found out that you make objects like this -> id = CreateDynamicObject....
You can't do it like this because each time you create an object its ID replaces with the previously created object. You need to make a define of MAX_EDIT_OBJECTS and edit new id; to new id[MAX_EDIT_OBJECTS];
When you create an object it should look like this: id[SOME ID] = CreateDynamicObject....
You can't do it like this because each time you create an object its ID replaces with the previously created object. You need to make a define of MAX_EDIT_OBJECTS and edit new id; to new id[MAX_EDIT_OBJECTS];
When you create an object it should look like this: id[SOME ID] = CreateDynamicObject....

