Ladmin 1337 score - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Ladmin 1337 score (
/showthread.php?tid=287776)
Ladmin 1337 score -
ixesas - 04.10.2011
Hi, i need a few codes: In Ladmin4v2 system, when admin 3-5Level Administrator connect, automatically set his scores to 1337. Please codes!!
Re: Ladmin 1337 score -
grand.Theft.Otto - 04.10.2011
This should be in scripting discussion, but anyways, I use LAdmin, here:
pawn Код:
public OnPlayerConnect(playerid)
{
if(PlayerInfo[playerid][Level] >= 3) // if their level is greater than or equal to three, it will set the score
{
SetPlayerScore(playerid,1337);
}
return 1;
}