Please do not reply to your own post within 24 hours. Use the "Edit" function instead.
Beiträge von Luk
-
-
Last Stand is not a weapon and therefore doesn't get logged. The ManuAdminMod can only react on logged things.
-
-
You have to replace [PATH_TO_PHP] with an actual path to a php installation.
-
Jetzt sind wir hier aber pingelig^^
-
Nein, wie Yenz bereits sagte kann man nur einen Platzhalter einfügen.....
Bitte in Zukunft die "Bearbeiten" Funktion nutzen, keine Doppelposts (pushen/Antworten auf deinen eigenen Beitrag) innerhalb von 24h.
-
Was denn für eine Richtungsangabe? Guck dir den Code von Yenz noch mal genau an, da steht ganz genau, wo das rein muss.
Außerdem muss der Befehl als solcher noch als Gruppenberechtigung in die groups.cfg eingefügt werden, damit man ihn ausführen kann. Den MAM nach dem Hinzufügen von Custom Commands neustarten.
-
in the config file
And where would you set "do not greet on mapstart = 0"? There is no such option.Are you running a Mod?
-
Nope, ranked Servers do not allow modified scripts that would enable custom commands. If there would be a way, ranked gaming would get interesting again XD
-
Bei mir funktioniert das Plugin auch einwandfrei. Sobald eine leere GUID joint, wird er sofort geschmissen.
-
guide des spielers unterdrücken, sodass das feld mit guide im rcon tool leer ist und wenn mal ihn per adminmod bannen will kommt, dass es mehrere treffer gab und der deswegen nicht gebannt werden kann
Ein "guide" ist eine Anleitung. Was du meinst ist eine GUID "Globally Unique Identifier". CoD4 kann keine Spieler mit leerer GUID bannen.
Wir hatten hier mal ein anti-emptyguid Plugin.
Spoiler anzeigen
PHP
Alles anzeigen<?php $antiEmptyGuid = new AntiEmptyGuid(); // events and commands $mod->registerEvent("playerJoined", "playerJoined", $antiEmptyGuid); // default CVars $mod->setDefaultCV("antiemptyguid", "enabled", 0); $mod->setDefaultCV("antiemptyguid", "mode", "kick"); $mod->setDefaultCV("antiemptyguid", "kickreason", "Empty GUID is not valid!"); class AntiEmptyGuid { public function playerJoined ($guid) { global $mod; global $players; if (!$mod->getCV("antiemptyguid", "enabled")) { return; } if (trim($guid) == "") { switch ($mod->getCV("antiemptyguid", "mode")) { case "tempban": $players[$guid]->tempBan($mod->getCV("antiemptyguid", "kickreason")); break; case "kick": $players[$guid]->kick($mod->getCV("antiemptyguid", "kickreason")); break; case "ban": $players[$guid]->ban($mod->getCV("antiemptyguid", "kickreason")); break; } } } } ?>
-
Und ich könnte schwören, dass ich das schon einmal versucht hatte..... Oh man, man kann wirklich mit ; auskommentieren
-
Man kann in den Configs ja nicht einmal auskommentieren^^
-
Please don't doublepost (answer your own post) within 24 hours, use the "Edit" function instead.
And please don't mix your questions, open a new topic for a new problem, or use the search first.
-
Hier ist die .php-Datei:
-
Korrekt wäre das Ganze nur, wenn du deine eigenen MW2 Files auf den Server lädst und mit den 4D1 Daten hostbar machst. Das Verteilen der Files ist, wie Dennis schon sagte, im Falle von MW2 dann "Filresharing" und ist vermutlich so - da nicht also dedizierte Server gedacht und daher nicht offiziell frei verfügbar - nicht vom Rechteinhaber gewollt.
-
4D1 ist in erster und einziger Linie eine Möglichkeit um mit der Steamversion von MW2 auf dedizierten Servern zu spielen. Anfragen nach Cracks werden nicht geduldet, also @phipag: Entscheide, was du jetzt hier anfragst.
-
Ich will hier keine Links zu irgendwelchen Cracks sehen, wenn dann nur Anwendungen oder Serverfiles, die für den Betrieb eines fourdeltaone Servers benötigt werden.
-
Frag mich nicht, manche haben das Symbol, manche nicht. Dieser Thread ist der einzige, in dem "Reallifebug" bisher partizipiert hat.
-
I guess you would have to rewrite all texts in the MAM to make them coloured in the console. Btw. this has nothing to do with the config.cfg.