open.mp forum
[Server] Can't see objects from distance. - Printable Version

+ open.mp forum (https://forum.open.mp)
-- Forum: SA-MP (https://forum.open.mp/forumdisplay.php?fid=3)
--- Forum: Support (https://forum.open.mp/forumdisplay.php?fid=12)
--- Thread: [Server] Can't see objects from distance. (/showthread.php?tid=2217)



Can't see objects from distance. - Cherry. - 2021-09-22

Hello.



I have an issue with my server, Players can't see objects from distance, they must be SO close to them.

Tried the entire versions of streamer and still the same issue...



What can be the issue except of streamer?


RE: Can't see objects from distance. - Awide - 2021-09-22

I am not sure about what's causing this but check out these config options:





Code:
? ? Streamer_SetMaxItems(STREAMER_TYPE_OBJECT, -1);

? ? Streamer_SetTickRate(50);

? ? Streamer_SetVisibleItems(STREAMER_TYPE_OBJECT, 900);

? ? Streamer_SetRadiusMultiplier(STREAMER_TYPE_OBJECT, 1.6);



RE: Can't see objects from distance. - renato - 2021-09-25

Code:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = STREAMER_OBJECT_SD, Float:drawdistance = STREAMER_OBJECT_DD, areaid = -1, priority = 0)



The streaming distance (streamdistance) refers to how close the player needs to be to the object before it is streamed in by the plugin.

The draw distance (drawdistance) is a parameter used by the game that determines how close the player needs to be to the object before it is rendered on the player's screen.



Check out the streamdistance for all of your objects created with streamer and make sure they are within an acceptable range.