SA-MP Forums Archive
help with virtual worlds - 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: help with virtual worlds (/showthread.php?tid=531062)



help with virtual worlds - tommzy09 - 10.08.2014

hey guys, i'm trying to make a command where if the players virtual world id is higher than 1, they cannot use the command.

i have a /joinrace command and it only bugs when someone in a virtual world tries to join the race.

why would someone be in a virtual world you might ask? well for my script i have multiple burger shots and they all share the same interior/location but each of them have different virtual world ids.

how would i go about this? is it similar to checking if a player has enough money, etc?

Код:
if(GetPlayerVirtualWorld(playerid) > 0) return SendClientMessage(playerid, 0xFFFFFF, "You can't Join the Race in this Interior!");
would that work?


Re: help with virtual worlds - DarkZeroX - 10.08.2014

Код:
if(GetPlayerInterior(playerid) > 0) return SendClientMessage(playerid, 0xFFFFFF, "You can't Join the Race in this Interior!");
??


Re: help with virtual worlds - Kaperstone - 10.08.2014

As I understand, you're asking if its possible to restrict commands to be used within virtualworld 0 only and unusable from other virtual worlds.
Yes it will work and yes it is similar to if a player has enough money.


Re: help with virtual worlds - tommzy09 - 10.08.2014

have i done it right in my code above?


Re: help with virtual worlds - Kaperstone - 10.08.2014

Yes as long as the virtual world is being set when the player enter the burger shot.

If you're not changing it then the virtual world will stay 0 and it won't work.


Re: help with virtual worlds - DarkZeroX - 10.08.2014

Yes.


Re: help with virtual worlds - tommzy09 - 10.08.2014

ok no worries, the bit of code i pasted actually does work lol, i felt like it wouldnt but it did thanks anyways guys