SA-MP Forums Archive
>>> HELP ME PLEASE <<< - 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: >>> HELP ME PLEASE <<< (/showthread.php?tid=671016)



>>> HELP ME PLEASE <<< - vincentdineros24 - 04.12.2019

Anyone can you help me to spawn all of my objects 3800 CreateDynamicObjects.
But i have problem only half of the 3800 is coming out to the server how to do it all

and give me link of Incognito Streamer Plugins

I have question " CreateDynamicObject is " Unlimited or no.


Re: >>> HELP ME PLEASE <<< - CrystalMethod - 04.12.2019

Handy tool for converting objects.
https://www.convertffs.com/


Re: >>> HELP ME PLEASE <<< - SiNaGaMeR - 04.12.2019

You can create DynamicObjects as you want it doesn't have any limits.
Update your Streamer plugin and it will solve your problem.
https://github.com/samp-incognito/sa...lugin/releases


Re: >>> HELP ME PLEASE <<< - CXdur - 04.12.2019

Maybe the visible limit is exceeded (the amount of objects one player can stream at once)?

You can can debug it with Streamer natives, for instance:
Code:
new Float:distance,
	Float:size,
	visibleItems,
	visibleItemsGlobal;

	Streamer_GetCellDistance(distance);
	Streamer_GetCellSize(size);
	visibleItems = Streamer_CountVisibleItems(playerid, STREAMER_TYPE_OBJECT);
	visibleItemsGlobal = Streamer_GetVisibleItems(STREAMER_TYPE_OBJECT);

	SendClientMessage(playerid, COLOR_ORANGE, "Streamer info:");
	sfm(playerid, COLOR_WHITE, "Tick rate: %d, Cell distance: %f, Cell size: %f, visible items: %d, visible limit: %d", Streamer_GetTickRate(), size, distance, visibleItems, visibleItemsGlobal);