1. GSManager
    1. Funktionen
    2. Unterstützte Spiele
    3. Neuigkeiten
    4. Statistiken
    5. Serverliste
  2. Lexikon
  3. Filebase
  4. Entwicklung
  5. Forum
    1. Dashboard
    2. Unerledigte Themen
  6. Web-Interface
  7. Artikel
  8. Mitglieder
    1. Letzte Aktivitäten
    2. Benutzer online
    3. Team
    4. Mitgliedersuche
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  1. GSManager
  2. Mitglieder
  3. Angel

Beiträge von Angel

Das Projekt GSManager (vormals ManuAdminMod) wurde am 01.01.2020 eingestellt - diese Internetpräsenz bleibt verfügbar, die Software wird aber nicht länger gepflegt. Vielen Dank für eure Unterstützung in den mehr als zehn vergangenen Jahren!
  • ManuAdminMod - Webinterface v0.2

    • Angel
    • 6. Januar 2011 um 11:40

    ja geile Sache ich hätte noch ein vorschlag das auch normal admins zugreifen können nicht nur master admin das wäre super

  • PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()

    • Angel
    • 6. Januar 2011 um 11:34

    habe den Fehler gefunden das war was mit der map config Zutun habe die map habe den Server beobachtet bei map wecksel Kamm der Fehler immer da war mir klar das es an der map config lag aber danke an alle die mir helfen wollten

  • PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()

    • Angel
    • 5. Januar 2011 um 17:33

    ja danke erst mal aber wo ist das Problem jetzt ich weiß nicht was da falsch sein soll

    Spoiler anzeigen

    <?php

    //Funktionen
    function makeuptime($time) //Generiert aus Minuten Tage, Stunden und Minuten
    {
    $minuten = $time % 60;
    $weiter = ($time - $minuten) / 60;
    $stunden = $weiter % 24;
    $tage = ($weiter - $stunden) / 24;
    return sprintf("%dD %02d:%02d", (int)$tage, (int)$stunden, (int)$minuten);
    }

    function makeuptime2 ($time) //Generiert aus Sekunden Stunden, Minuten und Sekunden
    {
    $sekunden = $time % 60;
    $weiter = ($time - $sekunden) / 60;
    $minuten = $weiter % 60;
    $stunden = ($weiter - $minuten) / 60;
    return sprintf("%02d:%02d:%02d", (int)$stunden, (int)$minuten, (int)$sekunden);
    }

    function __autoload($class_name) {
    require_once "classes/" . $class_name . '.class.php';
    }

    function error_handler($errno, $errstr, $errfile, $errline) {
    global $logging;

    if (error_reporting() == 0) return;

    $errortype = array (
    E_ERROR => 'Error',
    E_WARNING => 'Warning',
    E_PARSE => 'Parsing Error',
    E_NOTICE => 'Notice',
    E_CORE_ERROR => 'Core Error',
    E_CORE_WARNING => 'Core Warning',
    E_COMPILE_ERROR => 'Compile Error',
    E_COMPILE_WARNING => 'Compile Warning',
    E_USER_ERROR => 'User Error',
    E_USER_WARNING => 'User Warning',
    E_USER_NOTICE => 'User Notice',
    E_STRICT => 'Runtime Notice',
    E_RECOVERABLE_ERROR => 'Catchable Fatal Error'
    );

    $dir = dirname(__FILE__);
    $errfile = substr(str_replace($dir, "", $errfile), 1);

    $logging->write(MOD_PHPERROR, "$errortype[$errno] in $errfile:$errline => $errstr");
    }

    function parse_cfg_file($file, $process_sections = false) {
    global $logging;

    $process_sections = ($process_sections !== true) ? false : true;

    $ini = file($file);
    if (count($ini) == 0) {return array();}

    $sections = array();
    $values = array();
    $result = array();
    $globals = array();
    $i = 0;
    $lineno = 0;
    foreach ($ini as $line) {
    $lineno ++;
    $line = trim($line);
    $line = str_replace("\t", " ", $line);

    // Comments
    if (!preg_match('/^[a-zA-Z0-9[-]/', $line)) {
    if (!empty($line) && $line{0} != ";") { //Not a Comment
    $logging->write(MOD_ERROR, "Parse error in $file on line $lineno");
    }
    continue;
    }

    // Sections
    if ($line{0} == '[') {
    $tmp = explode(']', $line);
    $sections[] = trim(substr($tmp[0], 1));
    $i++;
    continue;
    }

    // Key-value pair
    $parts = explode('=', $line, 2);
    if (count($parts) != 2) {
    $logging->write(MOD_ERROR, "Parse error in $file on line $lineno");
    }
    list($key, $value) = $parts;
    $key = trim($key);
    $value = trim($value);

    if (strtolower($value) == "null") {
    $value = null;
    }
    else {
    if (strstr($value, ";")) {
    $tmp = explode(';', $value);
    if (count($tmp) == 2) {
    if ((($value{0} != '"') && ($value{0} != "'")) ||
    preg_match('/^".*"\s*;/', $value) || preg_match('/^".*;[^"]*$/', $value) ||
    preg_match("/^'.*'\s*;/", $value) || preg_match("/^'.*;[^']*$/", $value) ){
    $value = $tmp[0];
    }
    } else {
    if ($value{0} == '"') {
    $value = preg_replace('/^"(.*)".*/', '$1', $value);
    } elseif ($value{0} == "'") {
    $value = preg_replace("/^'(.*)'.*/", '$1', $value);
    } else {
    $value = $tmp[0];
    }
    }
    }
    $value = trim($value);
    $value = trim($value, "'\"");
    }

    if ($i == 0) {
    if (substr($line, -1, 2) == '[]') {
    $globals[$key][] = $value;
    } else {
    $globals[$key] = $value;
    }
    } else {
    if (substr($line, -1, 2) == '[]') {
    $values[$i-1][$key][] = $value;
    } else {
    $values[$i-1][$key] = $value;
    }
    }

    }

    for($j = 0; $j < $i; $j++) {
    if ($process_sections === true) {
    $result[$sections[$j]] = $values[$j];
    } else {
    $result[] = $values[$j];
    }
    }

    return $result + $globals;
    }

    function size($size)
    {
    $sizes = Array('Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB');
    $ext = $sizes[0];
    for ($i=1; (($i < count($sizes)) && ($size >= 1024)); $i++) {
    $size = $size / 1024;
    $ext = $sizes[$i];
    }
    $size = round($size, 2) . ' ' . $ext;
    return $size;
    }

    function config_merge($config1, $config2) {
    $configs = func_get_args();
    $result = array_shift($configs);

    foreach ($configs as $config) {
    foreach ($config as $sectionname => $section) {
    foreach ($section as $key => $value) {
    $result[$sectionname][$key] = $value;
    if ($value == null) {
    unset($result[$sectionname][$key]);
    }
    }
    }
    }

    return $result;
    }

    function array_i_key_exists($needle, $stack) {
    $needle = strtolower($needle);
    $keys = array_keys($stack);
    $keys = array_map("strtolower", $keys);
    return (in_array($needle, $keys));
    }

    function parse_argv() {
    $possible = array(
    "force" => array("count" => 2, "multiple" => true),
    "configdir" => array("count" => 1, "multiple" => false),
    "logdir" => array("count" => 1, "multiple" => false),
    "splitlog" => array("count" => 1, "multiple" => false),
    "usemysql" => array("count" => 5, "multiple" => false),
    );

    global $argv, $argc;

    $parsed = array();

    for ($i = 1; $i < $argc; $i ++) {
    if ($argv[$i]{0} != "-" && $argv[$i]{0} != "/") {
    throw new Exception("Unrecognized part '$argv[$i]'");
    }

    $name = strtolower(substr($argv[$i], 1));
    if (!array_key_exists($name, $possible)) {
    throw new Exception("Unrecognized parameter '$argv[$i]'");
    }

    if (array_key_exists($name, $parsed) && !$possible[$name]["multiple"]) {
    throw new Exception("'$name' can't be set multiple times");
    }

    $values = array();
    for ($j = 1; $j <= $possible[$name]["count"]; $j++, $i++) {

    if (!isset($argv[$i + 1])) {
    throw new Exception("Wrong parameter count for '$name'");
    }

    if ($possible[$name]["count"] == 1) {
    $values = $argv[$i + 1];
    }
    else {
    $values[] = $argv[$i + 1];
    }
    }

    if ($possible[$name]["multiple"]) {
    if (!array_key_exists($name, $parsed)) {
    $parsed[$name] = array();
    }
    $parsed[$name][] = $values;
    }
    else {
    $parsed[$name] = $values;
    }

    }

    return $parsed;

    }

    ?>

  • PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()

    • Angel
    • 4. Januar 2011 um 12:19

    hallo was meint dr mod damit ich kann nichts damit anfangen bitte um helfe


    0:00 [04.01.11 11:30:23] Notice: ==========================================
    0:00 [04.01.11 11:30:23] Notice: Manu-Admin-Mod v0.11.3 beta is starting...
    0:00 [04.01.11 11:30:23] Notice: ==========================================
    0:00 [04.01.11 11:30:23] Notice: !! Please wait until the mod is completely initialised
    0:00 [04.01.11 11:30:23] Notice: Config loaded: config.cfg
    0:00 [04.01.11 11:30:23] Notice: Config loaded: plugins/serverinfo.cfg
    0:00 [04.01.11 11:30:23] Notice: Config loaded: maps.cfg
    0:00 [04.01.11 11:30:23] Notice: Config loaded: admins.cfg
    0:00 [04.01.11 11:30:23] Notice: Config loaded: groups.cfg
    0:00 [04.01.11 11:30:23] Notice: Config loaded: reasons.cfg
    0:00 [04.01.11 11:30:23] Notice: Language files loaded: de
    0:00 [04.01.11 11:30:23] Notice: All config files were parsed
    0:00 [04.01.11 11:30:24] Notice: RCON connection established (87.118.86.34:28960)
    0:00 [04.01.11 11:30:24] Notice: Game detected: Call of Duty 4
    0:00 [04.01.11 11:30:25] Notice: Dvar check successful
    0:00 [04.01.11 11:30:26] Notice: Synced playerlist with 'status'
    0:00 [04.01.11 11:30:26] Notice: Updated Dvar g_gametype
    0:00 [04.01.11 11:30:27] Notice: Updated teamnames (sas vs. ussr)
    0:00 [04.01.11 11:30:28] Notice: Sets Dvar _manuadminmod to '0.11.3 beta'
    0:00 [04.01.11 11:30:28] Notice: == Loading plugins and commands ==
    0:00 [04.01.11 11:30:28] Notice: - Loading antiaimbot.php
    0:00 [04.01.11 11:30:28] Notice: - Loading antiteamkiller.php
    0:00 [04.01.11 11:30:28] Notice: - Loading badwords.php
    0:00 [04.01.11 11:30:28] Notice: - Loading banner.php
    0:00 [04.01.11 11:30:28] Notice: - Loading basiccommands.php
    0:00 [04.01.11 11:30:28] Notice: - Loading chatlog.php
    0:00 [04.01.11 11:30:28] Notice: - Loading customcommands.php
    0:00 [04.01.11 11:30:28] Notice: - Loading funmessages.php
    0:00 [04.01.11 11:30:28] Notice: - Loading logkickbans.php
    0:00 [04.01.11 11:30:28] Notice: - Loading mapvote.php
    0:00 [04.01.11 11:30:28] Notice: - Loading modstuff.php
    0:00 [04.01.11 11:30:28] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: Couldn't resolve hostname
    0:00 [04.01.11 11:30:28] Notice: - Loading nameprotection.php
    0:00 [04.01.11 11:30:28] Notice: - Loading pingkicker.php
    0:00 [04.01.11 11:30:28] Notice: - Loading punkbuster.php
    0:00 [04.01.11 11:30:29] Notice: - Loading randommapcycle.php
    0:00 [04.01.11 11:30:29] Notice: - Loading serverinfo.php
    0:00 [04.01.11 11:30:29] Notice: - Loading serverrules.php
    0:00 [04.01.11 11:30:29] Notice: - Loading spreemessages.php
    0:00 [04.01.11 11:30:29] Notice: - Loading statistics.php
    0:00 [04.01.11 11:30:29] Notice: - Loading tcp_query.php
    0:00 [04.01.11 11:30:29] Notice: - Loading voting.php
    0:00 [04.01.11 11:30:29] Notice: - Loading warns.php
    0:00 [04.01.11 11:30:29] Notice: - Loading weaponrestrictions.php
    0:00 [04.01.11 11:30:29] Notice: - Loading welcomemessages.php
    0:00 [04.01.11 11:30:29] Notice: == Finished loading plugins ==
    0:00 [04.01.11 11:30:29] Notice: !! Finished initialisation
    0:00 [04.01.11 11:30:29] Notice: === Start processing loglines... ===
    0:00 [04.01.11 11:30:31] Notice: Banner message was sent: ^2Next map is: ^7unknown (unknown)
    1958:30 [04.01.11 11:32:33] Notice: Banner message was sent: ^2Play fair and have fun{{br}}^2Spielt fair und habt Spaß
    1960:32 [04.01.11 11:34:34] Notice: Banner message was sent: ^1Den Admins ist immer folge zu leisten, tut man das nicht, führt dies zu einem Kick oder Ban!!!!!!
    1961:13 [04.01.11 11:35:14] Notice: TCP-Query: New connection from 91.37.155.76 on port 49553
    1961:19 [04.01.11 11:35:21] Notice: TCP-Query: User logged in: Miau (91.37.155.76:49553)
    1962:31 [04.01.11 11:36:35] Notice: Banner message was sent: ^1Serverrules bekommt ihr under (!rules) eingabe!!!!
    1964:34 [04.01.11 11:38:37] Notice: Banner message was sent: ^2Next map is: ^7unknown (unknown)
    1966:20 [04.01.11 11:40:22] Notice: Next map / map restart
    1966:20 [04.01.11 11:40:22] Notice: RCON connection established (87.118.86.34:28960)
    1966:20 [04.01.11 11:40:22] Notice: Current map: mp_backlot (war)
    1966:20 [04.01.11 11:40:26] Notice: Updated teamnames (usmc vs. arab)
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()
    1966:20 [04.01.11 11:40:26] PHP-Error: Warning in functions.php:168 => Invalid argument supplied for foreach()

  • Hausverbot Plugin V1.1

    • Angel
    • 3. Januar 2011 um 04:28

    HiHO macht jetz einer noch das plugins oder nicht ich komme nicht weiter mit das ding bitte um helfe leute heul

  • COD4 Server bekommen !

    • Angel
    • 29. Dezember 2010 um 17:22

    ja du brauchst die Zugangs Daten vom Server und ftp Daten auch du musst ja den Manuadminmod ja ruf laden

  • Hausverbot Plugin V1.1

    • Angel
    • 25. Dezember 2010 um 14:36

    hallo ich habe das so gemacht wie das ,da so steht , es geht immer noch nicht was mache ich falsch.
    config.cfg

    Spoiler anzeigen

    hv ="^1<GROUP_NAME> Du Hast Hausverbot ihr!!!!"

    [hausverbot]
    enabled = 1
    reason = "^1Du Hast Hausverbot ihr!!!!"


    notlastgt = 1

    [badwords]
    enabled = 1
    warnstokick = 3
    mode = "tempban"
    kickreason = "Use of bad words liebe grüße Miau"

    [warns]
    enabled = 1
    warnstokick = 2
    mode = "kick"
    kickreason = "Too many warns by Miau"

    [pingkicker]
    enabled = 1
    maxping = 500
    checkinterval = 30
    warnstokick = 2
    mode = "kick"
    kickreason = "Your ping is too high"

    [nameprotection]
    enabled = 1
    badnamekick = 1
    badnamekickmode = "kick"
    badnamekickreason = "Your name contains an illegal part: <PART>"
    adminnamekick = 1
    adminnamekickmode = "kick"
    adminnamekickreason = "Your name is an admins name"
    maxnamechanges = 0
    maxnamechangeskickmode = "tempban"
    maxnamechangeskickreason = "Max. namechanges reached"
    uppercasedisallow = 0
    uppercasekickreason = "Please do not use only upper case letters in your nickname"
    uppercasekickmode = "kick"

    [modstuff]
    checkforupdates = 1
    checkinterval = 6
    announceinterval = 5
    serverlist = 1
    serverlistip = ""

    [customcommands]
    pbsay = "pb_sv_say -1 <ARG>"
    kickme = "pb_sv_kick <PLAYER:PBID> 0 <ARG:OPT:You kicked yourself>"
    payback = "pb_sv_kick <LAST_KILLER:PBID> 0 ^1NEVER KILL AN ADMIN!"

    [spreemessages_config]
    enabled = 1
    firstblood = 1
    killsprees = 1
    deathsprees = 1
    spreeendsfrom = 10
    multikills = 1
    spreeends = 1


    [aliases]
    k = "kick"
    b = "ban"
    rm = "quitmod"
    mr = "quitmod"
    setlevel = "setgroup"
    admincheck = "checkadmin"
    owned = "fun owned"
    pwned = "fun owned"
    killed = "fun killed"
    bye = "fun bye"
    pizza = "fun pizza"
    beer = "fun beer"
    coke = "fun coke"
    whoiam = "fun whoiam"
    groups = "setgroup listgroups dummy"
    f = "forgive"
    y = "yes"
    n = "no"
    j = "yes"
    ja = "yes"
    nein = "no"
    votekick = "vote kick"
    votemap = "vote map"
    voteban = "vote ban"
    banlist = "pbbanlist"
    unban = "pbunban"
    godmode = "fun godmode"
    aimbot = "fun aimbot"
    sex = "fun sex"
    kamikaze = "fun kamikaze"
    death = "fun death"
    bigadmin = "fun bigadmin"
    off = "readconfig off"
    on = "readconfig"
    dpizza = "fun dpizza"


    [funmessages]
    enabled = 1
    killed = "^7<PLAYER_NAME> ^1was last killed by ^7<PLAYER_LASTKILLER> ^1with a ^7<PLAYER_LASTWEAPONDEATH>"
    owned = "^7<PLAYER_NAME> ^1killed ^7<PLAYER_LASTVICTIM> ^1with a ^7<PLAYER_LASTWEAPONKILL>"
    bye = "^7<PLAYER_NAME>^2 waves his hand to say ^1GOOD BYE^2. We surely meet later!"
    pizza = "^2Someone calls Mario and he brings ^7<PLAYER_NAME>^2 a hot pepperoni pizza!"
    beer = "^2A nice sexy waitress brings ^7<PLAYER_NAME>^2 a nice pint of beer!"
    coke = "^2Ah... A delicious glass of cold Coca Cola[tm] (*thinks ^7<PLAYER_NAME>^2 while he's drinking*)"
    whoiam = "^2My name is ^7<PLAYER_NAME>^2, I'm in the team ^7<PLAYER_TEAM>^2 with a ^7<PLAYER_LASTWEAPONKILL>^2 and have ^7<PLAYER_KILLS>^2 Kills"
    godmode = "^1GODMODE^2 is now enabled for player ^7<PLAYER_NAME>"
    aimbot = "^3<PLAYER_NAME> ^2turned on his ^1AIM-BOT!"
    sex = "^2SEX is not the answer. SEX is the question and ^7<PLAYER_NAME> ^2is the answer!!"
    kamikaze = "^7<PLAYER_NAME> ^2is desperately trying to figure out why kamikaze pilots wore helmets."
    death = "^2Hello ^7<PLAYER_NAME>^2, this is ^7Death. ^2Please answer when you're ready."
    bigadmin = "^1Ooooooh, ^3Big Admin is watching ^1YOU!"
    dpizza = "^2Jemand ruft Mario und er bringt ^7<PLAYER_NAME>^2 pepperoni eine heiße Pizza!"
    dbye = "^7<PLAYER_NAME>^2 bewegt seine Hand wellenartig ^1GOODBYE^2. Wir treffen sicher uns später!"
    dbeer = "^2A nette reizvolle Kellnerin hollt ^7<PLAYER_NAME>^2 ein nettes halbes Liter Bier!"
    dcoke = "^2Ah… Ein köstliches Glas kalte Coca Cola[tm] (*thinks ^7<PLAYER_NAME>^2 während he' s-Trinkeng*)"

    [voting]
    enabled = 1
    duration = 45
    interval = 120
    annouce = 15
    minplayers = 3
    maxvotesperplayer = 2
    timelimit = 0
    ignoremapchange = 0
    allowkick = 1
    allowban = 1
    allowmap = 1
    allownextmap = 1
    allowsetnextmap = 1
    allowgametype = 1
    allowhardcore = 1
    allowrestart = 1
    allowedmaps = "<maps.cfg>"
    allowedgametypes = "war"
    banduration = 0

    [antiaimbot]
    ; plugin einschalten / enable plugin
    enabled = 1

    ; gültige Werte/valid modes: kick, tempban, ban
    mode = "tempban"

    ; gültige Werte/valid modes: kick, tempban, ban
    bugmode = "kick"

    ; Mindestanzahl an Kopfschüssen / minimum number of head shots
    minheadshots = 5

    ; Mindestanzahl an Kills / minimum number of kills
    minkills = 10

    ; Spieler wird bestraft, wenn das Verhältnis Kopfschüsse/Körperteiltreffer zu Kills größer oder gleich diesem Wert ist
    ; player will be punished if his headshots/bodypartshots to kill ratio is equal or higher
    maxratio = 0.8

    ; Mindestanzahl an Spielern damit die Prüfung erfolgt
    ; minimum number of players for check to be active
    minplayers = 5

    ; Maximaler Schaden, den ein Spieler erhalten kann ohne zu sterben
    ; max amount of damage a player may handle without dying
    maxdamage = 500

    ; Zeitperiode in der die Anzahl der Kopfschüsse gezählt wird
    ; time period the number of headshots is counted
    timecheckseconds = 10

    ; Anzahl der erlaubten Kopfschüsse pro Zeitperiode
    ; number of headshots allowed per time period
    timecheckmaxhs = 5

    ; Anzahl der erlaubten Kills pro Zeitperiode
    ; number of kills allowed per time period
    timecheckmaxkills = 8

    ; Zeitperiode in der die Anzahl der Teamwechsel gezählt wird
    ; time period the number of team changes is counted
    timecheckteams = 2

    ; Anzahl der erlaubten Teamwechsel pro Zeitperiode
    ; number of team changes allowed per time period
    timecheckmaxteams = 1

    ; Sollen alle Körperteile geprüft werden?
    ; include all body parts in permanent check?
    allbodyparts = 1

    ; Ausschlussliste für Waffen bei denen nicht geprüft wird
    ; Im Plugin ist bereits eine Liste hinterlegt, die hier ergänzt werden kann
    ; list of weapons where the kill does not count
    ; there is already a list of weapons in the plugin that can be extended here
    excludedweapons = "bazooka_mp panzershrek_mp"

    ; Grund für die Bestrafung (wird bei Bestrafung dem Spieler angezeigt)
    ; reason for punishment (will be shown to the player on punishment)
    kickreason = "Go away cheater"

    ; Grund für die Fehler-Bestrafung (wird bei Fehler dem Spieler angezeigt)
    ; reason for bug punishment (will be shown to the player on bug punishment)
    bugkickreason = "Go away cheater"

    ; Anzeige im Spiel wenn ein Spieler bestraft wurde
    ; message in game when a player was punished
    message = "^3<PLAYER_NAME>^1 ^3cheated^1 and got kicked!"

    ; Anzeige im Spiel wenn ein Spieler für einen Fehler bestraft wurde
    ; message in game when a player was punished for a bug
    bugmessage = "^3<PLAYER_NAME>^1 ^3got a game bug^1 and has been kicked!"

    groups.cfg

    Spoiler anzeigen

    [master]
    name = "Masteradmin"
    commands = "*"

    [admin]
    name = "Admin"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme,kick,tempban,map,restart,maprotate,say,setnextmap,warn,gametype,ban,kickall,setpw,removepw,hardcore,oldschool,killcam,gravity,knockback,speed,setff,exec,avote,cancel,pass,resetplayerstats,paypack,getip"

    [SuvAdmin]
    name = "Suv-Admin"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme,kick,tempban,map,restart,maprotate,say,setnextmap,warn,gametype,ban,kickall,setpw,removepw,hardcore,oldschool,killcam,gravity,knockback,speed,setff,exec,avote,cancel,pass,resetplayerstats,paypack,getip"

    [GFK]
    name = "GFK-Mitglieder"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"

    [SuV]
    name = "SuV-Member"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"


    [SuV-Leader]
    name = "SuV-Leader"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"

    [default]
    name = "Player"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"


    [user]
    name = "User"
    commands = "rules,vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme"


    [hv]
    name = "hv"
    commands ""

  • Zusatz group erstellen

    • Angel
    • 5. November 2010 um 20:02

    ich habe vollzogenes Problem ich möchte Zusatz gruben erstellen aber das geht nicht so richtig wie es soll

    in der groub,config habe ich schön das eingefügt
    [master]
    name = "Masteradmin"
    commands = "*"

    [admin]
    name = "Admin"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme,kick,tempban,map,restart,maprotate,say,setnextmap,warn,gametype,ban,kickall,setpw,removepw,hardcore,oldschool,killcam,gravity,knockback,speed,setff,exec,avote,cancel,pass,resetplayerstats,paypack,getip"

    [SuV]
    name = "SuV-Member"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"

    [GFK]
    name ="GFK-Mitglieder"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"

    [SuvAdmin]
    name = "Suv-Admin"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme,kick,tempban,map,restart,maprotate,say,setnextmap,warn,gametype,ban,kickall,setpw,removepw,hardcore,oldschool,killcam,gravity,knockback,speed,setff,exec,avote,cancel,pass,resetplayerstats,paypack,getip"

    [user]
    name = "User"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap,cointoss,pl,maps,checkadmin,kickme"

    [default]
    name = "Player"
    commands = "vote,yes,no,forgive,tki,stats,fun,help,admintest,time,nextmap,uptime,status,info,me,ff,cmdlist,session,serverstats,resetmystats,skip,vmap"

    und inter config habe ich das auch schön eingefügt
    [welcomemessages]
    enabled = 1
    master = "^1<GROUP_NAME> DER BIG BOSS ist da ^7<PLAYER_NAME>^1 Betrat das Spiel"
    admin = "^1<GROUP_NAME> ^7<PLAYER_NAME>^1 Betrat das Spiel!"
    SuV = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>^2Betrat das Spiel"
    SuvAdmin ="^1<GROUP_NAME> ^7<PLAYER_NAME>^1 Betrat das Spiel!"
    GFK = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>^2"
    user = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>^2"
    default = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>"
    whisper = 0
    so habe alles auf root gebackt wenn ich jetzt ein den group zufügen möchte komm das !setgroup GRUPPE PID|TEIL_DES_NICKS Setzt die Admingruppe eines Spielers
    könnte mir einer sagen was ich vergessen habe

  • Serverinfo-Banner

    • Angel
    • 28. August 2010 um 09:57

    hallo erst mal alle ich habe Problem mit serverinfo er sagt zur mir !! Warning: ConfigVar [serverinfo]enabled NOT set, using default: '0' was meint er damit kann mir da einer helfen bitte

    PS ich habe das auf cod 4 server am laufen

  • punkte höher stellen oder runter setzen

    • Angel
    • 13. August 2010 um 08:53

    wie kann ich die punkte in manuadminmod hör oder runder stellen in der server conf habe ich auf 3000 aber er macht nur bis 2500 wenn manuadminmod an ist bitte um Hilfe

  • manuAdminMod

    • Angel
    • 7. August 2010 um 21:21

    ich hoffe das er mir helfen kann

  • manuAdminMod

    • Angel
    • 7. August 2010 um 18:58

    ich habe folgendes Problem ein Server läuft super wenn ich dann den 2 an
    mache und dann das manutool dann sagt er zur mir:

    Zitat

    PHP Fatal error:
    Allowed memory size of 134217728 bytes exhausted (tried to allocate 35
    bytes) in F:\GFK\Call of Duty 4 - Modern Warfare 16\adminmod_0.11.3_beta\adminmod\classes\parser.class.php on line 42

    was meint er und was kann ich da machen?

  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™