SA-MP Forums Archive
Object Problem - 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: Object Problem (/showthread.php?tid=408220)



Object Problem - Blackazur - 17.01.2013

Hello Guys, i have many Objects on my Server, i use already a Streamer but the People fall under the Map or spawn under the Map. Know everoyne an Solution for that?


Re : Object Problem - yusei - 17.01.2013

use a timer before Spawn

an eample

PHP код:
public OnPlayerSpawn(playerid)
{
    if(
playerinfaction =3) return SetTimerEx("spawnfact3"3000false"i"playerid); // 3 seconde time to loading a mapping   
    
return true;
}
forward  spawnfact3(playerid);
public 
spawnfact3(playerid)
{
    
// setplayerpos your code 
    
return true;




AW: Object Problem - Blackazur - 17.01.2013

The Problem is i have Roundmaps so i cant set so the SetPlayerPos.


AW: Object Problem - Blackazur - 17.01.2013

Is it because stream_rate or stream_distance? Or that the streamer cant load so fast the map?


AW: Object Problem - Blackazur - 17.01.2013

Fixed now.