28.08.2014, 11:19
@Death1300 : You forgot a params, you put only 3. "fff" - x, y, z. and where's of world?
pawn Код:
CMD:gotoco(playerid, params[])
{
new string[300], Float:x, Float:y, Float:z, interior, world;
if(sscanf(params, "fffd", x, y, z, interior, world)) return SendClientMessage(playerid, -1, "(USAGE) /xogotoco[x][y][z]");
SetPlayerPos(playerid, x,y,z);
SetPlayerVirtualWorld(playerid, world);
return 1;
}