F_Streamer issue! - 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: F_Streamer issue! (
/showthread.php?tid=459536)
F_Streamer issue! -
Eugene. - 23.08.2013
Hello. I am currently developing a Gamemode for SA-MP and I have a small problem. I currently made several mappings for the server in the center of Fort Carson and the mapping isn't loading properly. I mean, objects appears kinda late and things like that.
I've tried with streamer too but there the objects are loading slowly too. Any suggestions of what should I do ?!
Note: I have somewhere around 700-1200 objects in center.
Thanks, Eugene.!
Re: F_Streamer issue! -
sleepysnowflake - 23.08.2013
yes use
streamer plugin
Re: F_Streamer issue! -
Eugene. - 23.08.2013
Using already.
Re: F_Streamer issue! -
Pottus - 23.08.2013
Let me guess you have CreateDynamicObject() but that function doesn't have a drawdistance parameter that will cause objects to stream in/out late and early.
Re: F_Streamer issue! -
Eugene. - 23.08.2013
Negative. I don't have CreateDynamicObject().
Re: F_Streamer issue! -
Konstantinos - 23.08.2013
I'd say that F_Streamer is outdated. You can use Incognito's Streamer plugin instead, take a look at its thread.
Re: F_Streamer issue! -
Snipa - 23.08.2013
Your problem is that you're using F_Streamer
Re: F_Streamer issue! -
Eugene. - 23.08.2013
Well, like I said in the thread. I've tried Incognito's Streamer plugin and I am having the same problems-.. objects are loading low and I don't really know what to do about it. I have around 500-700 objects in center of Fort Carson and they are loading like hell.
Re: F_Streamer issue! -
Pottus - 23.08.2013
I told you Incognito's Streamer has a problem with CreateDynamicObject() there is no drawdist parameter there are two ways around this use
pawn Код:
CreateDynamicObjectEx()
// OR
Streamer_SetFloatData(STREAMER_TYPE_OBJECT,ObjectID,E_STREAMER_DRAW_DISTANCE, Float:DrawDistance);
// After using CreateDynamicObject()
Use 300.0 for large objects and 150.0 for small as a general rule however using 300.0 for all will work fine as well.