Question ? GetPlayerScore [SOLVED] - 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: Question ? GetPlayerScore [SOLVED] (
/showthread.php?tid=248888)
Question ? GetPlayerScore [SOLVED] -
park4bmx - 16.04.2011
i want to get the player score so if it from
500 -to- 1000 something happens
Can i Do it liek this ??
pawn Код:
if(GetPlayerScore(playerid) >=500 && GetPlayerScore(playerid) <=1000))
Re: Question ? GetPlayerScore -
iJumbo - 16.04.2011
Yes you can do
Re: Question ? GetPlayerScore -
park4bmx - 16.04.2011
Quote:
Originally Posted by [ISS]jumbo
Yes you can do
|
ok ty
Re: Question ? GetPlayerScore [SOLVED] -
Calgon - 16.04.2011
Yes, but you'll want to delete the extra bracket:
pawn Код:
if(GetPlayerScore(playerid) >=500 && GetPlayerScore(playerid) <=1000)