04.10.2011, 20:17
Hi, i need a few codes: In Ladmin4v2 system, when admin 3-5Level Administrator connect, automatically set his scores to 1337. Please codes!!
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;
}