SA-MP Forums Archive
Dynamic Objects LIMIT???? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Dynamic Objects LIMIT???? (/showthread.php?tid=554977)



Dynamic Objects LIMIT???? - S4MSUNG - 05.01.2015

Hello SAMP!,

Today im here to ask what is the currently LIMIT of CreateDynamicObjects. The Incognito Streamer. Because when im making a Dynamic Object and paste it to my gamemode, the Objects are non streamed, non sync or sometimes it not showing up, Like its incomplete, Some parts are missing.

Im so sorry if its a complicated question because my accent is not english, however i will give +rep for those who will try to solve my problem


Re: Dynamic Objects LIMIT???? - S4MSUNG - 06.01.2015

Quote:
Originally Posted by ******
Посмотреть сообщение
There is no dynamic objects limit, but there is a limit to the number of objects a player can see at once. The streamer works by swapping objects, so at any given moment you can see a subset of all the objects. However, this means that if you have too many in one small area, they won't all show up because they can't. Also, if you have a load of static object ("CreateObject"), they limit the streamer's ability to work.
So do you mean i should convert CreateObject to CreateDynamicObject? How can i see the subset of all the objects?


Re: Dynamic Objects LIMIT???? - Th3UnKnOwN - 06.01.2015

Yes, convert all CreateObject to CreateDynamicObject


Re: Dynamic Objects LIMIT???? - S4MSUNG - 06.01.2015

Quote:
Originally Posted by Th3UnKnOwN
Посмотреть сообщение
Yes, convert all CreateObject to CreateDynamicObject
Thanks ! I will try it


Re: Dynamic Objects LIMIT???? - PowerPC603 - 06.01.2015

If you already had 700 objects created using CreateObject, you'll limit the streamer to use only the 300 remaining slots, as the server limit is 1000 objects.
The streamer will still work, but can't swap when needed because the first 700 object slots have been fixed and cannot be used by the streamer.