Huhu,
Unter hier schonmal die Dialog abfrage + Funktionen sollte eig. Funktionenen, den Befehl wirste ja wohl selber hinkriegen:
if(dialogid == DIALOG_Goto)
{
if(response)
{
new coordstr[3][24], Float:coords[3], idx;
tmp = strtok(inputtext, idx);
if(!strlen(tmp)) return ShowPlayerDialog(playerid,DIALOG_Goto,DIALOG_STYLE_INPUT,"Gotocoords","Bitte tippe die Koordinaten ein Schema: X,Y,Z","Goto","Cancel");
split(tmp,coordstr,',');
coords[0] = floatstr(coordstr[0]);
coords[1] = floatstr(coordstr[1]);
coords[2] = floatstr(coordstr[2]);
SetPlayerPos(playerid,coords[0],coords[1],coords[2]);
format(string,sizeof(string)," Erfolgreich teleportiert: X %f Y %f Z %f",coords[0],coords[1],coords[2]);
SendClientMessage(playerid,COLOR_YELLOW,string);
}
}