17.07.2012, 09:32
Seguramente ke donde se encuanta el player no es el mismo VirtualWorld ke el del Create3DTextLabel
Comprueba con este comando si el player se encuanta en el mismo VirtualWorld ke el Create3DTextLabel
Comprueba con este comando si el player se encuanta en el mismo VirtualWorld ke el Create3DTextLabel
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/world", true) == 0)
{
new string[32];
format(string, sizeof(string), "TU VirtualWorld Es: %d", GetPlayerVirtualWorld(playerid));
SendClientMessage(playerid,-1,string);
return 1;
}
return 0;
}