Tag liebe Community.
Habe hier ein kleines Prob.Ich möchte eine Tanke ingame erstellen und die durch SII speichern.
Doch irgendwie zeigt er mir immer Server Unknown Command an.Why?
Hier der Befehl.dcmd_newtanke(playerid,params[])
{
new
tapreis,
tlapreis,
tlinhalt;
if(IsPlayerConnected(playerid))
{
if(sscanf(params,"ddd",tapreis,tlapreis,tlinhalt)) return SendClientMessage(playerid,COLOR_ADMINCMD,"Benutze: /newtanke [Preis] [Preisproliter] [Inhalt]");
{
printf("Tanke erstellt");
new Float:Pos[3];
GetPlayerPos(playerid,Pos[0],Pos[1],Pos[2]);
TankInfo[Created_Tankstellen][X] = (Pos[0]);
TankInfo[Created_Tankstellen][Y] = (Pos[1]);
TankInfo[Created_Tankstellen][Z] = (Pos[2]);
strmid(TankInfo[Created_Tankstellen][tbesitzer],"None",0,38,38);
TankInfo[Created_Tankstellen][tpreis] = (tapreis);
TankInfo[Created_Tankstellen][tlpreis] = (tlapreis);
TankInfo[Created_Tankstellen][tinhalt] = (tlinhalt);
CreatePickup(1272,1,Pos[0],Pos[1],Pos[2]);
CreateMapIcon(42,0,Pos[0],Pos[1],Pos[2]);
printf("Tanke erstellt2");
Created_Tankstellen++;
SendClientMessage(playerid,COLOR_GREY,"Tankstelle erstellt");
}
}
return 1;
}