SetPlayerVirtualWorld
From SA-MP Wiki
Description:
Set the virtual world of a player. They can only see other players or vehicles that are in that same world.
(playerid,worldid)
playerid | The ID of the player you want to set the virtual world of. |
worldid | The virtual world ID to put the player in. |
Return Values:
- 1: The function was executed successfully.
- 0: The function failed to execute. This means the player is not connected.
Example Usage:
if (strcmp(cmdtext, "/world3", true) == 0) { SetPlayerVirtualWorld(playerid, 3); return 1; }
Related Functions
The following functions may be helpful as they relate to this function in one way or another.
- GetPlayerVirtualWorld: Check what virtual world a player is in.
- SetVehicleVirtualWorld: Set the virtual world of a vehicle.