Hey, wie kann ich folgenden Befehl mit /flood_an /flood_aus ein und ausschalten?
#if FLOOD_AN == 1
printf("%s(%d) Wurde gebannt! %s (FLOOD ATTACKEN).", PlayerName(playerid), playerid, PlayerIP(playerid));
format(string, sizeof(string), "banip %s", PlayerIP(playerid));
SendRconCommand(string);
SendRconCommand("reloadbans");
#endif
}
Bei CommandText:
if (strcmp("/flood_an", cmdtext, true) == 0) {
if(Spieler[playerid][pAdmin]>=1337) {
??????????????????
Sprachnachricht(playerid, Rot, "Du hast das AntiFlood eingeschaltet!","You gave the AnfiFlood turn on!");
}
else {
Sprachnachricht(playerid, Rot, "Du bist kein 1337 Admin!","You aren't a 1337 Admin!");
}
return 1;
}
if (strcmp("/flood_aus", cmdtext, true) == 0) {
if(Spieler[playerid][pAdmin]>=1337) {
??????????????????
Sprachnachricht(playerid, Rot, "Du hast das AntiFlood ausgeschaltet!","You have the AntiFlood Turn off!");
}
else {
Sprachnachricht(playerid, Rot, "Du bist kein 1337 Admin!","You aren't a 1337 Admin!");
}
return 1;
}
Gruss und danke!