26.04.2018, 14:41
something like that
It will assign virtual world id with playerid+1 like if anyone have 1 playerid then it will set the player virtual world to 2 when he spawn
PHP код:
public OnPlayerSpawn(playerid)
{
SetPlayerVirtualWorld(playerid, playerid+1);
return 1;
}