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. fraqzr

Beiträge von fraqzr

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!
  • Manu Admin Mod Problem

    • fraqzr
    • 14. August 2014 um 01:19

    Nun gibt es einen error mit dem log file...

    Hier der Error: Error: Couldn't open server's logfile: 'auto'

    Der log file pfad: "C:\Gameserver\Call of Duty 4 Server\Server #2\Mods\pml220"

    Der log pfad stimmt eigentlich vielleich nicht richig?

    Mit freundlichen Grüßen
    FragZ

    Edit: Das Problem habe ich von selbst doch noch lösen können.
    Doch wieder 1 neues Problem:
    Error: Error in engine\quake3\rcon.php:149 => Class 'MAM\Daemon\Engine\Quake3\Exception' not found

  • Manu Admin Mod Problem

    • fraqzr
    • 13. August 2014 um 13:16

    Hallo Master of Little,

    vielen dank für deine Schnelle Antwort :)

    Der Error scheint gefixt zu sein aber nun stellt sich mir ein neues problem:
    Nun gibt es den Fehler
    Error: in engine\quake3\cod4\Rcon\rconlog.php:92 => Call to a member function write() on a non-object

    daraus werde ich nicht schlau :/
    Ich hoffe ich bin nicht zu nervig mit meinen Fragen :P
    In PHP bin ich leider nicht ganz so fit :/

    Viele Grüße
    FraqzR

    Hier die rconlog.php als quellcode:

    PHP
    <?php
    /**
     * ManuAdminMod
     *
     * This is a powerful and platform independent software for administrating game servers of various kinds.
     * If you need help with installing or using this software, please visit our website at: www.ManuAdminMod.de
     * If you want to obtain additional permissions extending the license, contact us at: Webmaster@ManuAdminMod.de
     *
     * @copyright www.ManuAdminMod.de
     * @license http://www.creativecommons.org/licenses/by-nc-nd/4.0/ Creative Commons BY-NC-ND 4.0
     * @version 1.0.0-Beta+3
    **/
    
    
    
    
    namespace MAM\Daemon\Engine\Quake3\Cod4\Rcon;
    
    
    
    
    /**
     * CoD Rcon Log Class
     *
     * This Class logs all Rcon Actions to a file
     *
     * @author Mirko
     */
    class RconLog extends \MAM\Daemon\Engine\Quake3\Cod4\Rcon\Rcon implements \MAM\Daemon\Engine\Quake3\RconLogInterface {
        /**
         * Logging Object
         * @var Daemon\Logging\LogHandler
         */
        private $logfile;
    
    
    
    
        /**
         * Constructs the object
         * @param String $address Server Address
         * @param int $port Server Query Port
         */
        public function __construct($address, $port) {
            $this->logging = new \MAM\Daemon\Libraries\Logging\LogHandler('daemon/', 'quake_rcon');
    
    
    
    
            parent::__construct($address, $port);
        }
    
    
    
    
        /**
         * Connect to the Server
         */
        public function connect() {
            parent::connect();
    
    
    
    
            $this->writeLog("=================");
            $this->writeLog("Connection opened");
        }
    
    
    
    
        /**
         * Sends Rcon Command and receives the answer
         * @param String $str The rcon command you want to send
         * @return String The answer of the server
         */
        public function rcon($str) {
            $this->writeLog(" Input: $str");
            $s = parent::rcon($str);
    
    
    
    
            $lines = explode("\n", $s);
            foreach ($lines as $value) {
                $value = trim($value);
                //Hide Line if Line is empty
                if ($value == "") {
                    continue;
                }
                $this->writeLog("Output: $value");
            }
    
    
    
    
            return $s;
        }
    
    
    
    
        /**
         * Kills the rcon connection
         */
        public function quit() {
            parent::quit();
            if (is_resource($this->log)) {
                $this->writeLog("Connection Closed");
                $this->writeLog("=================");
                fclose($this->log);
            }
        }
    
    
    
    
        /**
         * Writes into the logfile
         *
         * @param String $line The Logline
         */
        private function writeLog($line) {
            $timestamp = date("[d.m.y H:i:s] ");
            $this->logfile->write($timestamp . $line);
        }
    
    
    
    
        /**
         * Destructs the object
         */
        public function __destruct() {
            fclose($this->log);
        }
    }
    Alles anzeigen
  • Manu Admin Mod Problem

    • fraqzr
    • 13. August 2014 um 02:19

    Hallo liebe Community,

    wir haben seit geraumer Zeit einen Gameserver (Windows Server 2012 R2) laufen.
    Auf diesem habe ich nun den Manu Admin Mod Beta 4 installiert.
    Doch es gibt ein Problem.
    Nachdem die Batch Datei geöffnet wurde werden die Configs erfolgreich gelesen soch dann kommt folgender Fehler:
    Error: Error in engine\quake3\cod4\Rcon\rconlog.php:23 => Class 'MAM\Daemon\Engine\Quake3\Cod4\Rcon' not found

    Ich kann dem Fehler eigentlich nur entnehmen dass der Manu Admin Mod die rconlog.php nicht findet.
    Aber wahrscheinlich liegt es an etwas ganz anderem.
    Die mod.log spuckt leider auch keine Infos aus.

    Mit freundlichen Grüßen
    FragZ

    PS: hier noch die MaM config (villeicht ja hilfreich :/ )


    Code
    {
        "connection"           : {
            "ip"               : "127.0.0.1",
            "port"             : 28962,
            "password"         : "Secret! :D"
        },
        "daemon"               : {
            "antispam"         : 1,
            "joinlog"          : "'<NAME>' joined, PID: <PID>, GUID: <GUID>, IP: <IP>",
            "language"         : "german",
            "logrcon"          : true,
            "onlineshowngroups": "master, admin, member, user",
            "pmprefix"         : "^7admin: ^1",
            "prefix"           : "!",
            "responsefailcmds" : true,
            "timezone"         : "Europe/Berlin"
        },
        "database"             : {
            "enable_mysql"     : false,
            "mysql_host"       : "localhost",
            "mysql_user"       : "adminmod",
            "mysql_password"   : "secretmysqlpass!",
            "mysql_prefix"     : "mam01_",
            "mysql_database"   : "adminmod",
            "enable_sqlite"    : false,
            "sqlite_prefix"    : ""
        },
        "quake3"               : {
            "antistartupbug"   : "restart",
            "fastrcon"         : false,
            "fixguidrelax"     : true,
            "logfile"          : "auto"
        },
        "modstuff"             : {
            "checkforupdates"  : true,
            "announceinterval" : 5,
            "serverlist"       : true,
            "serverlistip"     : ""
        },
        "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"
        }
    }
    Alles anzeigen
  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 28. April 2013 um 19:41

    Was für infos bräuchtet ihr denn noch?

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 25. April 2013 um 19:08

    Heute wurde die max execution time auf 0 gesetzt gebracht hat es nichts :(

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 20. April 2013 um 18:28

    Ach sooo... [FACEPALM]
    xD
    man bin ich blöd :D

    Dateien

    mod.log.zip 41,3 kB – 393 Downloads
  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 20. April 2013 um 16:39

    Das hier hab ich heute gefunden(auf dem server) ist im anhang...
    Da steht auch was von error etc mit manu admin mod cannot be run on webspace ....

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 16. April 2013 um 18:28

    Nö :(

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 10. April 2013 um 19:32

    Gar nix (antwort kam etwas spät ich weiss ^^ )
    Also g-portal hat nichts gesagt dazu.

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 3. April 2013 um 16:40

    Der Port ist 28960.
    Der mod startet ja nur stürzt dann nach 2 minuten wieder ab :cry:

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 1. April 2013 um 23:50

    Und wie muss man das dann umstellen ? :=)

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 1. April 2013 um 15:37

    Kann mir das mal jemand erklären was er damit meint ? :D

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 31. März 2013 um 19:15

    Ist nen Linux Root,
    der mod wurde vom hoster "vorinstalliert" musste dann nurnoch configurieren und dann sollte es eigentlich klappen...
    PHP version kenne ich nicht müsste aber die neueste sein da der hoster die immer updated.
    Mod Log im anhang

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 31. März 2013 um 19:05

    Da alles auf einmal zu viel ist hier stückweise :)

    Config:

    Spoiler anzeigen

    [main]
    ip = "Hier könnte ihre werbung stehen"
    port = Hotdog
    logfile = "../main/games_mp.log"
    rconpassword = "xDXDXDXDxDxD"
    timezone = "Europe/Berlin"
    prefix = "!"
    language = "de"
    antispam = 2
    logrcon = 1
    antistartupbug = "restart"
    fixguidrelax = 1
    pmprefix = "^1PM: ^2"
    responsefailcmds = 1

    [kickban]
    defaultkickreason = "Kicked by Admin"
    defaultbanreason = "Banned by Admin"
    usepb = 1
    pbtempbanduration = 5
    announce = 1
    maxtempbantime = 1440

    [welcomemessages]
    enabled = 1
    master = "^1ATTENTION: <GROUP_NAME> ^7<PLAYER_NAME>^1 has joined the game!"
    admin = "^1<GROUP_NAME> ^7<PLAYER_NAME>^1 has joined the game!"
    member = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>^2"
    user = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>^2"
    default = "^2Welcome <GROUP_NAME> ^7<PLAYER_NAME>"
    whisper = 0

    [banner]
    enabled = 1
    time = 120

    [randommapcycle]
    enabled = 1
    maps = "mp_backlot,mp_bloc,mp_bog,mp_cargoship,mp_citystreets,mp_convoy,mp_countdown,mp_crash,mp_crash_snow,mp_crossfire,mp_farm,mp_overgrown,mp_pipeline,mp_showdown,mp_strike,mp_vacant,mp_shipment,mp_broadcast,mp_carentan,mp_creek,mp_killhouse"
    gametypes = "war,dm,sab,koth,sd,dom"
    notlastmaps = 3
    notlastgt = 1

    [badwords]
    enabled = 1
    warnstokick = 3
    mode = "tempban"
    kickreason = "Use of bad words"

    [warns]
    enabled = 1
    warnstokick = 3
    mode = "ban"
    kickreason = "Too many warns by admin"

    [pingkicker]
    enabled = 0
    maxping = 300
    checkinterval = 60
    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 = 5
    maxnamechangeskickmode = "tempban"
    maxnamechangeskickreason = "Max. namechanges reached"
    uppercasedisallow = 1
    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

    [spreemessages_messages]
    firstblood = "^7<PLAYER_NAME> ^1drew first blood!"
    multikill = "^7!! ^1Multikill ^7> ^2<PLAYER_NAME>^7 < ^1Multikill^7 !!"
    monsterkill = "^7!!!! ^1MONSTERKILL ^7>>> ^2<PLAYER_NAME>^7 <<< ^1MONSTER KILL ^7!!!!"
    end_kill = "^2<PLAYER_NAME>^1's killing spree ended (^2<KILLS> ^1kills). He was killed by ^3<KILLER_NAME>^1!"
    end_teamkill = "^2<PLAYER_NAME>^1's killing spree ended (^2<KILLS> ^1kills). He was killed by TEAMMATE ^3<KILLER_NAME>^1!"
    end_selfkill = "^2<PLAYER_NAME>^1's killing spree ended (^2<KILLS> ^1kills). He killed ^3himself^1, what a pity!"
    5 = "^7<PLAYER_NAME> ^1is on a ^3killing spree! ^1(^2<KILLS> ^1kills in a row)"
    10 = "^7<PLAYER_NAME> ^1is on a ^3rampage! ^1(^2<KILLS> ^1kills in a row)"
    15 = "^7<PLAYER_NAME> ^1is ^3dominating! ^1(^2<KILLS> ^1kills in a row)"
    20 = "^7<PLAYER_NAME> ^1is ^3unstoppable! ^1(^2<KILLS> ^1kills in a row)"
    25 = "^7<PLAYER_NAME> ^1is ^3godlike!! ^1(^2<KILLS> ^1kills in a row)"
    30 = "^7<PLAYER_NAME> ^1is ^3wicked sick!!! ^1(^2<KILLS> ^1kills in a row)"
    35 = "^7<PLAYER_NAME> ^1is ^3real Potter!!! ^1(Woohoo, ^2<KILLS> ^1kills in a row!)"
    -10 = "^7<PLAYER_NAME> ^1seems to have a bad day ... (^2<DEATHS>^1 deaths without a ^2kill^1)"
    -15 = "^7<PLAYER_NAME> ^1is on the best way to get ^3victim^1 of the day... (^2<DEATHS> ^1deaths w/o ^2kill^1)"
    -20 = "^7<PLAYER_NAME> ^1really gets his ^3ass kicked!^1 Oh well, ^2<DEATHS> ^1deaths without a ^2kill^1..."

    [mapvote]
    enabled = 0
    type = 2
    mapcount = 3
    duration = 620
    announce = 90
    maps = "<maps.cfg>"
    gametypes = "war,dm,sab,koth,sd,dom"
    notlastmaps = 5
    notlastgt = 1
    votestoskip = "50%"

    [weaponrestrictions]
    enabled = 1
    weapons = "gl,frag_grenade_short"
    warnstokick = 2
    mode = "tempban"
    kickreason = "Used a restricted weapon: <WEAPON>"

    [statistics]
    statsstring = "^2Kills: <KILLS> ^1Deaths: <DEATHS> ^3K/D: <KPD> ^2time: <ONLINETIME> min ^3K/M: <KPM> ^2HS: <HEADSHOTS> ^7TKs: <TEAMKILLS>"
    whisperstats = 0
    savestats = "sqlite"

    [antiteamkiller]
    enabled = 0
    min = -3
    start = 0
    warn = 3
    kick = 4
    teamkill = 1
    kill = 0.1
    mode = "tempban"
    kickreason = "Made too many teamkills"
    forgive = 1
    forgivetime = 30
    forgivepoints = 0.5

    [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"

    [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!"

    [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,dom,koth,dm,sab,sd"
    banduration = 0

    [ftp]
    enabled = 0
    host = ""
    port = 21
    user = ""
    password = ""
    passive = 1

    [tcp_query]
    enabled = 1
    ip = "0.0.0.0"
    port = 1337
    logintimeout = 30
    defaulaction = "say"
    sayprefix = "^3TCP-Admin (<ADMIN>): ^7"
    admingroups = "master,admin"
    disallowedcommands = "vote,yes,no,stats,session"
    maxconnections = 5

    [statistics_mysql]
    host = "localhost"
    user = "anonymous"
    password = ""
    database = "mamstats"
    prefix = "mam01_"

  • Manu Admin mod stürz nach start ab keine Log einträge

    • fraqzr
    • 31. März 2013 um 16:32

    Hallo,
    auf unserem CoD 4 Server (läuft auf einem root von gportal)wollen wir den manu admin mod installieren, das haben wir dann auch getan doch leider stürzt der mod nach dem start (2-3 minuten danach) wieder ab.
    In den logs steht nichts ausser dass er angeblich läuft.
    Ich bitte um hilfestellung da ich nicht mehr weiter weiss!
    IP zum server falls wichtig : removed.

    Bitte um schnelle hilfe :)
    DANKE IM VORRAUS :D :smile:

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