Posts: 14
Threads: 5
Joined: Jun 2017
Reputation:
0
I want to make it so, if there's a player in virtual world 1, it automatically sets other player to virtual world 2.
I have no clue how to do that, and I can't find it anywhere. Could someone help me out?
Posts: 117
Threads: 4
Joined: Feb 2018
Quote:
Originally Posted by GameOvr
You can do something like this,
Code:
new vw = 1:
SetPlayerVirtualWorld(playerid, vw):// here vw of the 1st player joining will be 1
vw++: //after he enters to the world we make the vw 2 then the next player joining will be vw2
Like wise...
Gimme a rep if it was helpful
|
Why do that?
Here's what you can do.
Code:
SetPlayerVirtualWorld(playerid, playerid);
Easy, right?