SA-MP Forums Archive
issue with 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: issue with streamer (/showthread.php?tid=608228)



issue with streamer - justjamie - 29.05.2016

Hello.
My CreateDynamicObjects only spawn when i'm really close.
How do i set the streamer distance, so i can see the objects from further away?


Re: issue with streamer - AbyssMorgan - 29.05.2016

PHP код:
CreateDynamicObject(modelidFloat:xFloat:yFloat:zFloat:rxFloat:ryFloat:rzworldid = -1interiorid = -1playerid = -1Float:streamdistance STREAMER_OBJECT_SDFloat:drawdistance STREAMER_OBJECT_DDSTREAMER_TAG_AREA areaid STREAMER_TAG_AREA -1priority 0); 



Re: issue with streamer - justjamie - 29.05.2016

Quote:
Originally Posted by AbyssMorgan
Посмотреть сообщение
PHP код:
CreateDynamicObject(modelidFloat:xFloat:yFloat:zFloat:rxFloat:ryFloat:rzworldid = -1interiorid = -1playerid = -1Float:streamdistance STREAMER_OBJECT_SDFloat:drawdistance STREAMER_OBJECT_DDSTREAMER_TAG_AREA areaid STREAMER_TAG_AREA -1priority 0); 
i converted it from convertffs.
Isn't there a way that i can automatically further?


Re: issue with streamer - karoliko - 29.05.2016

Quote:
Originally Posted by AbyssMorgan
Посмотреть сообщение
PHP код:
CreateDynamicObject(modelidFloat:xFloat:yFloat:zFloat:rxFloat:ryFloat:rzworldid = -1interiorid = -1playerid = -1Float:streamdistance STREAMER_OBJECT_SDFloat:drawdistance STREAMER_OBJECT_DDSTREAMER_TAG_AREA areaid STREAMER_TAG_AREA -1priority 0); 
Hmmm i have same issue, i didnґt understood your exemple.


Re: issue with streamer - justjamie - 29.05.2016

i need the objects to load from farther away.
How do i do that?


Re: issue with streamer - AbyssMorgan - 29.05.2016

what's the problem add parameters?


Re: issue with streamer - justjamie - 29.05.2016

Quote:
Originally Posted by AbyssMorgan
Посмотреть сообщение
what's the problem add parameters?
maybe because i have over 1000 dynamic objects and i have more important things to do?


Re: issue with streamer - AbyssMorgan - 29.05.2016

I have 30,000 and I have no problem with the addition of all of the additional parameter.
notepad / notepad ++ is used for this


Re: issue with streamer - Darkwood17 - 29.05.2016

Open streamer.inc and search for #define STREAMER_OBJECT_SD.
Change from:
Код:
#define STREAMER_OBJECT_SD 300.0
to:
Код:
#define STREAMER_OBJECT_SD 1000.0
Also change this:
Код:
#define STREAMER_OBJECT_DD 0.0
to:
Код:
#define STREAMER_OBJECT_DD 1000.0
Save streamer.inc.
Open your script and compile (make sure you have included streamer.inc).
Use CreateDynamicObject to create objects.


Re: issue with streamer - karoliko - 29.05.2016

Quote:
Originally Posted by Darkwood17
Посмотреть сообщение
Open streamer.inc and search for #define STREAMER_OBJECT_SD.
Change from:
Код:
#define STREAMER_OBJECT_SD 300.0
to:
Код:
#define STREAMER_OBJECT_SD 1000.0
Also change this:
Код:
#define STREAMER_OBJECT_DD 0.0
to:
Код:
#define STREAMER_OBJECT_DD 1000.0
Save streamer.inc.
Open your script and compile (make sure you have included streamer.inc).
Use CreateDynamicObject to create objects.
I open with pawno or what?