/gotopos xcoord, ycoord, zcoord,
/gotopos -2459.11, -984.89, 90.58
CMD:gotopos(playerid,params[])
{
new Float:x,Float:y,Float:z;
if(sscanf(params,"fff",x,y,z))return SendClientMessage(playerid,-1,"Use: /gotopos [X] [Y] [Z]");
SetPlayerPos(playerid,x,y,z);
return 1;
}