If Playervirtual world - 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: If Playervirtual world (
/showthread.php?tid=577046)
If Playervirtual world -
GlaL - 08.06.2015
Please i want make a define like IfplayerIndm,,, But it's Ifplayervirtualworld
like Ifplayervirtualworld = 1) Return SendclientMessage You Cant Use this command at this world
Please Help
AW: If Playervirtual world -
Kaliber - 08.06.2015
Just like this:
Код:
if(GetPlayerVirtualWorld(playerid) == 1) return SendClientMessage(playerid,-1,"You can't use this command in this world!");
Greekz
Re: If Playervirtual world -
Pottus - 08.06.2015
Dirt easy.
Код:
#define IsPlayerInDM(%0); if(GetPlayerVirtualWorld(%0) == 1) return SendClientMessage(%0,-1,"You cant Use this command at this world");
Re: AW: If Playervirtual world -
GlaL - 08.06.2015
Thanks All