SA-MP Forums Archive
where can i find... - 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: where can i find... (/showthread.php?tid=155948)



where can i find... - dendudes123 - 20.06.2010

where can i find a filterscript or what if a player dies it got respawn time


Re: where can i find... - DJDhan - 20.06.2010

Код:
public OnPlayerDeath(playerid)
{
  TogglePlayerSpectating(playerid,1);
  SetCameraLookAt(2000.0,129.0,34.0);
  SetCameraPos(1999.0,120.0,330.0);

  SetTimerEx("spawnplayer",10000,0,"i",playerid);
  return 1;
}
Anywhere in the script:
Код:
forward spawnplayer(playerid);
public spawnplayer(playerid)
{
  SpawnPlayer(playerid);
  SetCameraBehindPlayer(playerid);
  return 1;
}