SA-MP Forums Archive
>>> A pair of questions <<< - 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: >>> A pair of questions <<< (/showthread.php?tid=70685)



>>> A pair of questions <<< - RyDeR` - 26.03.2009

First of all hi,
Here are my questions

How to remove the marker that us late come in?

Код:
Example


What is the code to spawn o player when type /login (Just Like RPG) ?

How to disable stunt money?

That's it. Please Help






Re: >>> A pair of questions <<< - Rks25 - 26.03.2009

1)
pawn Код:
public OnGameModeInit()
{
  DisableInteriorEnterExits();
  return 1;
}
2) Save players pos when disconnection and load when they login and than do SpawnPlayer. Just check scripts like gf or pen1, for that feature.

3)
pawn Код:
public OnGameModeInit()
{
  EnableStuntBonusForAll(0);
  return 1;
}



Re: >>> A pair of questions <<< - RyDeR` - 26.03.2009

Quote:
Originally Posted by Rk_
1)
pawn Код:
public OnGameModeInit()
{
  DisableInteriorEnterExits();
  return 1;
}
2) Save players pos when disconnection and load when they login and than do SpawnPlayer. Just check scripts like gf or pen1, for that feature.

3)
pawn Код:
public OnGameModeInit()
{
  EnableStuntBonusForAll(0);
  return 1;
}
Thx