SA-MP Forums Archive
Objects don't load in time! HELP - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Objects don't load in time! HELP (/showthread.php?tid=174853)



Objects don't load in time! HELP - jakeyboyzang - 07.09.2010

Hey guys, SaiTeK here.
My server 'Galactic Stunts v5' is getting much more popular these days and I have a very big problem.
I've tried many different object streamers but none of the objects ever load in time (for all players).
For example, when people spawn at a high altitude place (aka a Sky Road) they just FALL through it and have to type the command again.
Any tips on how to make the objects load faster?
Regards,
SaiTeK (Jake).



Re: Objects don't load in time! HELP - Hiddos - 07.09.2010

Well, you could try force re-streaming (giving the command to stream, preferably for that specific player) or increase the stream rate. I'd do the 1st option.


Re: Objects don't load in time! HELP - jakeyboyzang - 07.09.2010

Okay I could try that, any suggestions on what is the best / fastest object streamer available?
I'm using RyDeR's object streamer at present.


Re: Objects don't load in time! HELP - Hiddos - 07.09.2010

At the moment, Incognito's streamer is the fastest and best around (Correct me if I'm wrong).


Re: Objects don't load in time! HELP - jakeyboyzang - 07.09.2010

Okay thanks for your help dude.
Now I gotta convert 9000+ objects to Incognito's streamer! XD


Re: Objects don't load in time! HELP - Voldemort - 07.09.2010

You could re-SetPlayerPos after he uses cmd which spawn him there, like

/race1 -

SetTimerEx("ResetPos",1500,0,"i",playerid); // 1500 adjust your time

EDIT: even with Incognito you will get this "bug", its just cant work that fast, because Incognito works with Pos change, but you change pos in less than 1mls, so stremer can't get your pos change so fast


Re: Objects don't load in time! HELP - Hiddos - 07.09.2010

Quote:
Originally Posted by Voldemort
Посмотреть сообщение
You could re-SetPlayerPos after he uses cmd which spawn him there, like

/race1 -

SetTimerEx("ResetPos",1500,0,"i",playerid); // 1500 adjust your time

EDIT: even with Incognito you will get this "bug", its just cant work that fast, because Incognito works with Pos change, but you change pos in less than 1mls, so stremer can't get your pos change so fast
Gave me an idea, how about freezing him for a second or so, so the objects can load?


Re: Objects don't load in time! HELP - PinkFloydLover - 07.09.2010

Ive seen this problem on other servers too, and freezing doesnt work, it is the objects down the road that appear to late and make you fall through them, and it is annoying as hell


Re: Objects don't load in time! HELP - iggy1 - 07.09.2010

There is another good/reliable way to fix the spawn problem, use 'CreateObject' instead of the streamer, just for the objects you will be spawning on it worked for me.


Re: Objects don't load in time! HELP - Voldemort - 07.09.2010

Quote:
Originally Posted by iggy1
Посмотреть сообщение
There is another good/reliable way to fix the spawn problem, use 'CreateObject' instead of the streamer, just for the objects you will be spawning on it worked for me.
++, this is also a good fixway