23.01.2012, 21:11
Could you tell me why this command doesnt work? I dont get any errors.
Код:
command(gotointeriorid, playerid, params[])
{
new id, x, y, z;
if(sscanf(params, "mksl", id, x, y, z))
{
if(Player[playerid][AdminLevel] >= 4)
{
SetPlayerVirtualWorld(playerid, 0);
SetPlayerInterior(playerid, id);
SetPlayerPos(playerid, x, y, z);
}
}
}


