Hallo,
Ich habe ein kleines Problem mit meinen /gotocoords Command
if(strcmp(cmd,"/gotocoords",true) == 0)
{
if(SpielerInfo[playerid][pAdmin] >= 5)
{
new coordstr[3][24], Float:coords[3];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid,COLOR_WHITE,"Tippe: /gotocoords X,Y,Z");
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]);
}
return 1;
}
Ich sehe hier kein Fehler eine Fehlermeldung gibt es auch nicht, Das Problem ist das ich InGame nicht geportet werde, Weiß Jemand warum?
MFG