CreateDynamicObject not working for ingame systems
#1

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.
Reply
#2

There a limit of CreateObject maybe over loaded. That's why this problem happening.
Reply
#3

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
Reply
#4

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?
Reply
#5

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.
Reply
#6

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.
Reply
#7

Us e Create Objects it will be cool for furniture i also mapped many things like nightclud i use Create objects use it
Reply
#8

Quote:

Create Objects it will be cool for furniture

how is it cool for furniture and not for street lamps?
Reply
#9

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.
Reply
#10

If you have big maps in your server, I would suggest you to use some of these maps in a Filterscript.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)