VWORLDS
#1

How to create a virtual world and acces it with a command? And to leave it just do /main
Reply
#2

This under OnPlayerCommandText:

Код:
if(strcmp(cmdtext, "/world", true, 6) == 0)
	{
	SetPlayerVirtualWorld(playerid, 1);
    return 1;
	}
if(strcmp(cmdtext, "/main", true, 5) == 0)
	{
	SetPlayerVirtualWorld(playerid, 0);
    return 1;
	}
Reply
#3

K thanks!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)