12.10.2013, 20:38 
	
	
	
		bumping, also. Change your code to:
	
	
	
	
pawn Код:
CMD:telebycoord(playerid, params[])
{
new x_,y_,z_;
if(sscanf(params, "fff", x_, y_, z_))return SendClientMessage(playerid, 0xFF0000FF, "Usage: /telebycoord [X Pos] [Y Pos] [Z Pos]");
SetPlayerPos(playerid, x_, y_, z_);
return 1;
}


