CreateDynamicObject not working for ingame systems -
CoachCarter - 25.12.2015
Okay here's the thing I figured out from the last topic, it seems that createdynamicobjects aren't working from ingame, the object appears and disappears, I already Updated the plugins and includes, tested the system without any objects on the gamemode but when I use CreateDynamicObject for furniture and other systems objects gets destroyed after a second but when I use createobject everything is alright.
Re: CreateDynamicObject not working for ingame systems -
SoFahim - 25.12.2015
There a limit of CreateObject maybe over loaded. That's why this problem happening.
Re: CreateDynamicObject not working for ingame systems -
CoachCarter - 25.12.2015
Quote:
Originally Posted by SoFahim
There a limit of CreateObject maybe over loaded. That's why this problem happening.
|
Quote:
tested the system without any objects on the gamemode
|
I already tried to delete all the maps on my gamemode but the system still isn't creating the objects with createdynamicobject
Re: CreateDynamicObject not working for ingame systems -
SoFahim - 25.12.2015
Quote:
Originally Posted by CoachCarter
I already tried to delete all the maps on my gamemode but the system still isn't creating the objects with createdynamicobject
|
Have you tried using CreateObject for that dynamic feature?
Re: CreateDynamicObject not working for ingame systems -
CoachCarter - 25.12.2015
Quote:
Originally Posted by SoFahim
Have you tried using CreateObject for that dynamic feature?
|
Yes the ingame systems work for CreateObject but I am not using it cause I have a big community and everysingle one of the is using furniture objects so it's more handy to use createdynamicobject. Week ago it was working well I don't know what happend to it this week.
Re: CreateDynamicObject not working for ingame systems -
SoFahim - 25.12.2015
Quote:
Originally Posted by CoachCarter
Yes the ingame systems work for CreateObject but I am not using it cause I have a big community and everysingle one of the is using furniture objects so it's more handy to use createdynamicobject. Week ago it was working well I don't know what happend to it this week.
|
I think using CreateObject for furniture object , would be cool. I saw many script that using Createobject for that. So go for it.
Re: CreateDynamicObject not working for ingame systems -
RaajParker - 25.12.2015
Us e Create Objects it will be cool for furniture i also mapped many things like nightclud i use Create objects use it
Re: CreateDynamicObject not working for ingame systems -
lucamsx - 25.12.2015
Quote:
Create Objects it will be cool for furniture
|
how is it cool for furniture and not for street lamps?
Re: CreateDynamicObject not working for ingame systems -
Tamy - 25.12.2015
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.
Код:
1000-(Total objects that you created through CreateObject)
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.
Re: CreateDynamicObject not working for ingame systems -
KillerDVX - 25.12.2015
If you have big maps in your server, I would suggest you to use some of these maps in a Filterscript.