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

Beiträge von Mirko911

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!
  • Vote map & Gametype

    • Mirko911
    • 26. Januar 2014 um 15:55

    we've to implement an extra function for it.
    If you wish it, please create a new Thread here http://www.manuadminmod.de/wbb/index.php/…e-W%C3%BCnsche/

  • readconfig

    • Mirko911
    • 26. Januar 2014 um 15:53

    du könntest den "PlayerQuit" abfangen und bei jedem quit von $group != "default" einmal die Readconfig
    Funktion aufrufen bzw. sogar ->setGroup("Player"); machen

  • Improve ManuAdminMod Experience?

    • Mirko911
    • 26. Januar 2014 um 03:23

    btw. you can set the timezones for !time in the config.cfg

    timezone = "Europe/Berlin"

    http://www.php.net/manual/en/timezones.php

  • Remove warns

    • Mirko911
    • 23. Januar 2014 um 13:10

    yea

    reconnect removes all warns. Because they aren't permanent.
    Are you sure, that you want to remove temporal warns?
    If yes, I will try to add it as plugin for you

  • [Complaint Cell Plugin installation]

    • Mirko911
    • 19. Januar 2014 um 13:18

    line 29

    remove the word "public"

  • [Complaint Cell Plugin installation]

    • Mirko911
    • 18. Januar 2014 um 22:55

    give me the logfile pls

  • [Complaint Cell Plugin installation]

    • Mirko911
    • 17. Januar 2014 um 17:09

    Create a new php file in plugins folder and add this

    PHP
    <?php
    /**
     * Writes complaints in a logfile
     *
     * With this command, complaints will be added to the logfile
     *
     * @package Plugins
     * @subpackage none
     * @version 1.0
     *
     * @copyright ManuAdminMod (http://www.manuadminmod.de)
    *
     * @author mirko911 (original jinkazama)
     * @since 17.01.14
     */
    $mod->registerCommand("comp", '~^comp \S.*$~i', "comp");
    $mod->setDefaultCV("complaint", "enabled", 1);
    
    
    
    
    /**
     * Writes complaints in a logfile
     * 
     * @author mirko911 (original jinkazama)
     * @since 17.01.14
     * @global mod $mod 
     * @global player $players
     * @param string $guid 32 char long hex guid
     * @return boolean true if all successful
     */
    function comp($guid, $parameters) {
        global $mod,$players;
    
        if(!$mod->getCV("complaint", "enabled"))return false;
    
        $parameters = implode(" ", $parameters);
    
        $players[$guid]->say("Complaint Registered");
        $players[$guid]->say("Your Complaint is > ^0" . $parameters);    
    
        $timestamp = date("[d.m.y H:i:s]");
    
        $fp = fopen(LOGDIR . "/complaint.log", "a");
        fwrite($fp, $timestamp . " [" . $guid . "] : [" . $parameters . "] Complaint by [ " . $players[$guid]->getName() . " ]\n\n");
        fclose($fp);
        return true;
    }
    ?>
    Alles anzeigen

    add to config.cfg

    Code
    [complaint]
    enabled = 1

    add to groups.cfg

    Code
    comp

    Plugin not tested. I just rewrote it to add this later as plugin in the plugin section. But it should work

  • Php Anti Aimbot ?

    • Mirko911
    • 15. Januar 2014 um 15:37

    GPL doesn't force you to publish the scripts.
    But if they are public you can't do nothing against it

  • This issue has me scratching my head... (MAM stops reading log)

    • Mirko911
    • 15. Januar 2014 um 13:03

    Banner Messages works?
    Or nothing works?
    Maybe you should take a look into the Adminmod Screen using screen -x [PID of screen]
    Sometimes there are errors only in the screen ;)

  • Plugin Wishes.

    • Mirko911
    • 15. Januar 2014 um 13:01

    maybe ;-).
    But not with city names

  • Need a plugin plz help !

    • Mirko911
    • 14. Januar 2014 um 19:37
    PHP
    <?php
    /**
     * Register User on Server
     *
     * If you type !register, the server put's you in an other server group
     *
     * @package Plugins
     * @subpackage none
     * @version 1.0
     *
     * @author mirko911
     * @since 05.01.11
     */
    
    
    
    
    $mod->registerCommand("register", false , "register_main" );
    $mod->setDefaultCV("register_main", "registed_group", "user");
    $mod->setDefaultCV("register_main", "registed_message", "you are now registered on this server");
    
    
    
    
    /**
     * If you type !register, the server put's you in an other server group
     * 
     * @author mirko911
     * @since 05.01.11
     * @global mod $mod 
     * @global player $players
     * @param string $guid 32 char long hex guid
     * @return boolean true if all successful
     */
    function register_main($guid) {
        global $mod, $players;
    
    
    
    
        if($players[$guid]->getGroup() != "default") return false;
    
    
    
    
        $players[$guid]->setGroup($mod->getCV("register_main" , "registed_group"));
        $players[$guid]->Say($mod->getCV("register_main" , "registed_message"));
        return true;
    }
    
    
    
    
    ?>
    Alles anzeigen
  • Plugin Wishes.

    • Mirko911
    • 14. Januar 2014 um 17:05

    the old version was public
    But this contains only !geo and !geoip

    Welcome Message with Geoip isn't public atm.

  • This issue has me scratching my head... (MAM stops reading log)

    • Mirko911
    • 7. Januar 2014 um 03:27

    can you give us some information about your servers.

    Do you have a mod on your server, like promod?
    I think that's a g_logsync problem of the server.
    On promod g_logsync is resetted every round if you don't set it in the custom_public.gsc.

    I also saw it on some servers, that they set the rcon_password to "" after specific time [i think that was the rotu zombie server].

    So if this happen again, check "g_logsync" and "rcon_password" on your server

  • Cod4 and Punkbuster

    • Mirko911
    • 7. Januar 2014 um 03:23

    i haven't tested it, but I think there is a way to get the actual pb.
    The same way works with cod2 too.

    You need an old pbsetup.exe with the .html files where the games are stored.
    Then pbsetup performes an update and replaces the html files with newer files [new files don't have the cod4 entry]
    now you have to replace the new html file with the old ones. And pbsetup shows you "cod4" as option to update ;)

    For cod2 it works

  • Error in parser_php

    • Mirko911
    • 7. Januar 2014 um 03:20

    Hey,

    I see you use the adminmod over FTP.
    Are you sure, that you have to use FTP to get the loglines?

    The error says, that there is no "mods/deathrun_12" folder on your ftp server.
    maybe you should try to use the full path like

    Code
    "/home/gameserver/cod4/mods/deathrun_12"


    Replace /home/gameserver/cod4/ with your FULL path to cod4

  • MaM on 1.7a

    • Mirko911
    • 7. Januar 2014 um 03:17

    you can search for the rconsay() function in the mod.class.php and replace the "say" with a "screentell"

    or if you want it as extra plugin, create a topic in the wishes board, and we'll try to write it as plugin :)

  • manuadminmod can Clean console_mp.log

    • Mirko911
    • 7. Januar 2014 um 03:15

    you could also write a plugin, which opens the console_mp.log every minute and writes a " " in it.
    I'm not sure, but normal servers don't write a console_mp.log, do they?
    I think you can try to disable it with the dvar

    Code
    logfile 0


    in your server.cfg

  • I've been having an issue and I cant fix it.

    • Mirko911
    • 7. Januar 2014 um 03:12

    Hey,

    please give us some information about the server and about mam.
    Is there a mod like deathrun/promod/killtheking on the server?
    Is there an error in the logs? Please upload the mod.log from your log folder [maybe compress it. That saves storage]

  • Php Anti Aimbot ?

    • Mirko911
    • 7. Januar 2014 um 03:07

    Hey, there was a script, which detects the headshot rate of a player. Maybe we can rewrite it ;)

  • Chat Flooding Control

    • Mirko911
    • 7. Januar 2014 um 03:00

    you could do it over the "bad words" plugin.

    Add the "help!1!1!" in the list and set the limit for it to 3.
    After 3 "help!1!1!" the player gets a kick/tempban/ban.

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