Housecar command in Dialog Bugg - 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: Housecar command in Dialog Bugg (
/showthread.php?tid=142637)
Housecar command in Dialog Bugg -
sjvt - 19.04.2010
*fixed
Re: Housecar command in Dialog Bugg -
Jay_ - 19.04.2010
Код:
if(PlayerInfo[playerid][pPocket] && playerid >= 20000)
That expression is just checking if PlayerInfo[playerid][pPocket] is true, and if the players id is is more or equal to 20,000.
Код:
if(PlayerInfo[playerid][pPocket] >= 20000)
{
bla
}