25.12.2015, 12:58
CreateObject creates a server object (a permanent object actually) and there is a limit on it, it's 1000. The objects which you have created through CreateObject have taken the slots.
This will give you the remaining slots which can be used for the CreateDynamicObject. The more CreateObjects you have in the script, less slots you have for the CreateDynamicObject.
So I would say that remove all CreateObjects you are using in the script and use CreateDynamicObject for all objects you create in your server.
Код:
1000-(Total objects that you created through CreateObject)
So I would say that remove all CreateObjects you are using in the script and use CreateDynamicObject for all objects you create in your server.