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(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, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1, priority = 0);
Re: issue with streamer -
justjamie - 29.05.2016
Quote:
Originally Posted by AbyssMorgan
PHP код:
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, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1, priority = 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(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, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1, priority = 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?