streamer help please
#1

I'm useing Incognito's streamer for my server when i run it in windows the objects appear just fine but when i upload it to serverffs and try to run the server none of the objects show but it loads the plugin just fine whats wrong please help.
Reply
#2

I guess that all depends from internet speed. Reduce objects quantity or make automatic freeze - unfreeze option for spawns.
Reply
#3

How would I do that?
Reply
#4

Make automatic freeze - unfreeze timer with your selected time interval and than just put it into all spawn functions.
Reply
#5

Can you please provide a tutorial im kinda a noob sorry
Reply
#6

So this lines bears the responsibility for players freezing. Just put them in spawn functions like in onplayerspawn public.

Код:
TogglePlayerControllable(playerid, 0);
SetTimerEx("Spawn", 3000, false, "i", playerid);
And this lines bears the responsibility for players unfreezing. Put these script lines at the end of your gamemode.

Код:
forward Spawn(playerid);
public Spawn(playerid)
{
	if(IsPlayerConnected(playerid))
	{
	    TogglePlayerControllable(playerid, 1);
	}
	return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)