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



score - FireCat - 02.09.2010

How can i make when someone connect it gives him +1 score?
_______________________
My jobs HCatcher
1-3$ fix warnings 1-5$fix errors
6-15$ make gamemodes(not roleplay) 3-10$ make filterscripts-scriptfiles
Dont ASK! me RolePlay questions
www.mefreeroam.tk



Re: score - gamer931215 - 02.09.2010

pawn Код:
SetPlayerScore(playerid,GetPlayerScore(playerid)+1);



Re: score - Bumbis - 02.09.2010

OnPlayerConnect(playerid)
{
SetPlayerScore(playerid,GetPlayerScore(playerid)+1 );
return 1;
}

Something like this i think.