GetPlayerInterior - 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)
+--- Thread: GetPlayerInterior (
/showthread.php?tid=507248)
GetPlayerInterior -
Blackazur - 16.04.2014
Hello, i want to check if a player isnt in that interior i tried that but that doesnt seem to work:
Код:
if(!GetPlayerInterior(playerid) == 3)
Re: GetPlayerInterior -
klimgorilla - 16.04.2014
Quote:
Originally Posted by Blackazur
Hello, i want to check if a player isnt in that interior i tried that but that doesnt seem to work:
Код:
if(!GetPlayerInterior(playerid) == 3)
|
Код:
if(GetPlayerInterior(playerid) != 3)
Re: GetPlayerInterior -
PrivatioBoni - 16.04.2014
if(GetPlayerInterior(playerid) != 3)
(Someone beat me to it.)