Problem with Incognito's Streamer - 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: Problem with Incognito's Streamer (
/showthread.php?tid=403695)
Problem with Incognito's Streamer -
JaKe Elite - 31.12.2012
I don't know why but.
If i use more than 500+ objects or more using CreateObject
Incognito's Streamer stopped working i mean.
It doesn't create object. All objects that created by CreateDynamicObject has been disappear.
If i remove some objects from CreateObject.
Incognito's Streamer start working again.
What is the problem?
I'm using 2.6.1 version of Incognito's Streamer.
Re: Problem with Incognito's Streamer -
Babul - 31.12.2012
you are basically taking away the streamers' chance to use (remaining) objects.
convert more of your CreateObject to CreateDynamicObject, to give the streamer the freedom it needs: at least 200 free/nonused objects.
Re: Problem with Incognito's Streamer -
JaKe Elite - 31.12.2012
Thanks worked.
But how about if my CreateDynamicObject reached 1000+ objects?
It will stop working or it will still working?
Re: Problem with Incognito's Streamer -
iggy1 - 31.12.2012
If you look at the general notes in the plugin thread, you will see that by default the max visible objects is 500. When you use
CreateObject the object that is created is taken from that 500 and is always visible.
So for example if you have 100
CreateObject in your code the streamer will only stream 400 objects created with
CreateDynamicObject. Like babul said.
If you just use
CreateDynamicObject everything should work as expected. Change the streamer settings if you want more than 500 objects streamed (at the same time).