17.02.2014, 13:26
pawn Код:
if (!sscanf(params, "fffD(0)D(0)", x, y, z, virtualw, interior))
{
new string[128];
SetPlayerPos(playerid, x, y, z);
SetPlayerVirtualWorld(playerid, virtualw);
format(string, sizeof(string), "Coords changed to : {ffff00}%f, %f, %f, {ffffff}VW : %d, Interior : %d.", x, y, z, virtualw, interior);
SendClientMessage(playerid, COLOR_LIGHTNBLUE, string);
return 1;
}
pawn Код:
if (!sscanf(params, "fffD(0)D(0)", x, y, z, virtualw, interior))
{
new string[128];
SetPlayerPos(playerid, x, y, z);
SetPlayerVirtualWorld(playerid, virtualw);
SetPlayerInterior(playerid, interior);
format(string, sizeof(string), "Coords changed to : {ffff00}%f, %f, %f, {ffffff}VW : %d, Interior : %d.", x, y, z, virtualw, interior);
SendClientMessage(playerid, COLOR_LIGHTNBLUE, string);
return 1;
}