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

Beiträge von Yenz

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!
  • Problem with MAM

    • Yenz
    • 2. März 2013 um 20:11

    then go into /home/srv4000/.callofduty4/main and check the content of games_mp.log ;)

  • Problem with MAM

    • Yenz
    • 2. März 2013 um 14:03

    ok, but it will grow again because of any error. delete it and then upload it while it's small.

  • Problem with MAM

    • Yenz
    • 2. März 2013 um 13:30

    extract the last 100 lines of mod.log and upload them

  • Problem with MAM

    • Yenz
    • 1. März 2013 um 23:51

    it doesn't matter, but it's okay.
    It would be better if you made this change in the server.cfg (and not only per rcon)

    Code
    set g_log games_mp.log


    Then this setting will be loaded automatically after server restart.

  • Problem with MAM

    • Yenz
    • 1. März 2013 um 19:11

    When you download the manu admin mod you have 4 folders named config_*. You have to rename the the right folder to config (if you use cod4, then rename "config_cod4 RENAME TO config IF CoD4" to "config". In this folder is a file config.cfg. Open it (with notepad/wordpad/noteüad++/other texteditor of your choice) and you will see man sections ([this is a section]) and pairs of keys and values (key = value). In the main section you have to edit the importantst settings: ip, port, logfile and rconpassword.

  • Problem with MAM

    • Yenz
    • 1. März 2013 um 18:39

    yes (and of course the rest of the config ^^)

  • Problem with MAM

    • Yenz
    • 1. März 2013 um 18:27

    Then your logfile is
    /home/srv4000/.callofduty/main/file
    That's ok. That's the line to put in mam config.cfg under [main]logfile

    After that (restart you mam) you will be able to execute mam-commands!

  • Problem with MAM

    • Yenz
    • 1. März 2013 um 17:07

    That doesn't matter.
    Just be sure, that you will set it do an existing directory (for which you have write access).

    example:

    Code
    # linux shell command:
    mkdir -p /home/srv4000/.callofduty4
    Code
    //in server.cfg
    fs_homepath /home/srv4000/.callofduty
  • Problem with MAM

    • Yenz
    • 1. März 2013 um 16:38

    The feel free to set one in your server.cfg OR search for "games_mp.log" on your disk.

  • Problem with MAM

    • Yenz
    • 28. Februar 2013 um 21:51

    top answer, belstgut!
    I'm out for the weekend - and now i only have a laptop, can't help more now.
    But as I see I am not the only helping hero here :mrgreen:

  • Problem with MAM

    • Yenz
    • 28. Februar 2013 um 21:48

    take a look in /home/srv4000/.callofduty/...... (hiudden directory)

  • Problem with MAM

    • Yenz
    • 28. Februar 2013 um 19:18

    Logfiles are created in sever's dvar fs_gamepath (or sth. similar) - i will check out my location at home and post more information for you. Meanwhile let us know you operating system on which the server is hosted (windows or linux).

  • Ban IP Plugin

    • Yenz
    • 28. Februar 2013 um 19:16

    Using XAMPP?
    In C:\xampp\php\php.ini change the following line from...

    Code
    ;extension=php_sqlite3.dll


    ... to ...

    Code
    extension=php_sqlite3.dll
  • Scream

    • Yenz
    • 27. Februar 2013 um 23:18

    COD4 is also q3 based, but you might be right with the other color codes.
    Edit: Confirmed! There are only ten color codes available in Call of Duty (from 0 to 9).

  • Scream

    • Yenz
    • 27. Februar 2013 um 20:29

    I would recommend to use mirko's version. It contains a nice feature: You can use reasons (which are defined in config/reasons.cfg) to scream like this with a leading point:

    PHP
    !scream .teamkilling

    To choose the colors and reduce the count of messages replace this part of mirko's code:

    PHP
    for ($i = 0; $i <= 9; $i ++) {
            $mod->rconSay("^$i$msg");
        }


    with something LIKE that (you may want to edit color codes and add further colors by adding a new line):

    PHP
    $mod->rconSay("^1$msg");
        $mod->rconSay("^3$msg");
        $mod->rconSay("^7$msg");
        $mod->rconSay("^2$msg");


    (In this case 4 messages will be printed with color codes 1, 3, 7 and 2.) COLOR CODES

  • Ban IP Plugin

    • Yenz
    • 27. Februar 2013 um 20:22

    What OS do you use?

  • Scream

    • Yenz
    • 27. Februar 2013 um 15:48
    Spoiler anzeigen
    PHP
    <?php
    
    
    
    
    $scream = new Scream();
    
    
    
    
    $mod->registerCommand("scream", false, "command", $scream);
    
    
    
    
    class Scream
    {
        public function command ($guid, $parameters)
        {
            global $mod;
            $message = implode(" ", $parameters);
            for ($color = 0; $color < 10; $color++)
            {
                $mod->rconSay("^$color$message");
            }
        }
    }
    Alles anzeigen


    Save this into plugins/scream.php.
    Add command "scream" into config/groups.cfg to allow executing.

    Usage:

    Code
    !scream very colorish text


    NOT TESTED - please report bugs/errors in mod.log. I'll fix it then!

  • MAM on a COD4 deathrun errors

    • Yenz
    • 27. Februar 2013 um 15:39

    1.) Please post the part around line 282 of your mod.class.php... something is messed up :D
    2.) You don't want the skip-mapvote but normal mapvote by MAM? The set [mapvote]type = 1. Then MAM will offer a few random maps which can be votet by !vmap.
    2b.) If deathrun has it own mapvoting system (which i understand first), then disabling the MAM mapvorting doesn't disable the Deathrun mapvoting.

  • MAM on a COD4 deathrun errors

    • Yenz
    • 27. Februar 2013 um 13:22

    I mixed something up with bbCodes, recheck my prev. post and try again.
    If there's still an error let me know the error message.

    If you don't want any mapvoting, set [mapvote]enabled = 0 in config.cfg.

  • MAM on a COD4 deathrun errors

    • Yenz
    • 27. Februar 2013 um 10:43

    I assume that a deathrun server don't need any teamnames.

    In this case you can replace the line 281:

    PHP
    public function updateTeamNames() {


    with the following

    PHP
    public function updateTeamNames() { return;


    (append "return;")

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