warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetPlayerVirtualWorld
Description
Retrieves the current virtual world the player is in.
Name | Description |
---|---|
playerid | The ID of the player to get the virtual world of. |
Returns
The ID of the virtual world the player is currently in.
Examples
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp(cmdtext, "/world", true))
{
new string[32];
format(string, sizeof(string), "Your virtual world: %i", GetPlayerVirtualWorld(playerid));
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
return 0;
}
Notes
tip
Virtual worlds are not the same as interiors.
Related Functions
- SetPlayerVirtualWorld: Set the virtual world of a player.
- GetVehicleVirtualWorld: Check what virtual world a vehicle is in.
- GetPlayerInterior: Get the current interior of a player.