27.07.2009, 22:38
How to create a virtual world and acces it with a command? And to leave it just do /main
if(strcmp(cmdtext, "/world", true, 6) == 0)
{
SetPlayerVirtualWorld(playerid, 1);
return 1;
}
if(strcmp(cmdtext, "/main", true, 5) == 0)
{
SetPlayerVirtualWorld(playerid, 0);
return 1;
}