Hallo liebe Community,
ich habe ein kleines Problem undzwar wenn ich ein Hotel lösche, dann wird die Nachricht gespammt.. bzw mein Chat ?!
Hiermal mein Befehl..
if(!strcmp(cmdtext, "/hotellöschen", true))
{
new string[256];
if(Spieler[playerid][Admin] >= 7)
{
for(new i = 0; i<MAX_HOTELS; i++)
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, HotelInfo[i][Entrx], HotelInfo[i][Entry], HotelInfo[i][Entrz]))
DestroyDynamic3DTextLabel(HotelInfo[i][Label]);
DestroyDynamicPickup(HotelInfo[i][Pickup]);
format(string, sizeof string, "/Hotels/%d.ini", i);
fremove(string);
HotelInfo[i][Entrx] = 0;
HotelInfo[i][Entry] = 0;
HotelInfo[i][Entrz] = 0;
HotelInfo[i][Intx] = 0;
HotelInfo[i][Inty] = 0;
HotelInfo[i][Intz] = 0;
HotelInfo[i][Besetzt] = 0;
format(HotelInfo[i][Besitzer], MAX_PLAYER_NAME, "-");
HotelInfo[i][Preis] = 0;
HotelInfo[i][Intid] = 0;
HotelInfo[i][Interior] = 0;
format(HotelInfo[i][Descr], 50, "-");
SendClientMessage(playerid, GRAU, "Hotel gelöscht!");
}
}
return 1;
}
Hoffe ihr könnt mir weiterhelfen.
MFG K3VIN