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

Beiträge von Secretjail

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!
  • Admin Valid (Version: 1.1)

    • Secretjail
    • 11. Februar 2013 um 12:40

    i think u shuld correct this :

    Zitat

    [admin_valid]
    ip = <your-IP>
    ip = <your-Port>

    to

    Zitat

    [admin_valid]
    ip = <your-IP>
    port = <your-Port>

    example:
    [admin_valid]
    ip = 192.168.1.10
    port = 27017

    and there is no benefit ! as far as i know when someone spoofed an admin GUID he has admin right from spoofed guid

  • Custom commands

    • Secretjail
    • 24. November 2012 um 23:54

    its an example man
    i want use exactly this commands :
    !mr.....= "rcon map_rotate"
    !sd....= "rcon sv_maprotation map_mpex. map mp_e.g2....."
    so i want use just !mrsd to execute those commands abov..
    its now clear for what reason i use this no?

    EDIT:
    another problem is here :

    Zitat


    0:00 [25.11.12 02:18:49] Notice: Player 'secret' joined, PID: 0, GUID: 01100001000000**
    0:00 [25.11.12 02:18:49] !! Warning: ConfigVar [kickban]enabled NOT set, using default: '0'
    0:09 [25.11.12 02:18:54] Notice: Player 'secret' executed command: 'time', PID: 0, GUID: 01100001000000**
    0:13 [25.11.12 02:18:58] Notice: Player 'secret' executed command: 'warn sec', PID: 0, GUID: 01100001000000**
    0:13 [25.11.12 02:18:59] Notice: Warns: Player 'secret' has been warned, reason: '', PID0, GUID:0110000100000**
    0:28 [25.11.12 02:19:13] Notice: Player 'secret' executed command: 'kick secr', PID: 0, GUID: 01100001000000**
    0:28 [25.11.12 02:19:13] !! Error: ConfigVar [kickban]DefaultKickReason NOT set and can't use a default value

    Alles anzeigen


    and mam will restart
    and i use this config in config.cfg but not worked

    Zitat


    [kickban]
    enabled = 1
    DefaultKickReason = "^123 !"
    DefaultTempBanReason = "^3frfddf!"
    DefaultBanListReason = "^weweew !"
    KickReason = "^7<PLAYER_NAME> ^2Kicked for server rules"
    TempBanReason = "^7<PLAYER_NAME> ^2Kicked for server rules"
    BanReason = "^7<PLAYER_NAME> ^2Kicked for server rules"

    or

    [kickban]
    enabled = 1
    KickReason =^2Kicked for server
    TempBanReason = kicked
    defaultkickreason = kick
    defaultbanreason = ban
    DefaultTempBanReason = ban
    usepb = 0
    pbtempbanduration = 1
    tempbanduration = 1
    announce = 1
    maxtempbantime = 10

    or

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

    Alles anzeigen


    i dont want open new topic if admins think it's necessary , so i do that.

  • Custom commands

    • Secretjail
    • 23. November 2012 um 02:47

    how to execute tow command with one?
    for example:
    rk.....................="readconfig & kick secretjail"
    its possible?

  • Ban IP Range plugin

    • Secretjail
    • 18. Oktober 2012 um 00:09

    wow thanks god! i found it :d
    here you go

    Zitat

    [iprangeban]
    enabled = 1 // Ein und Ausschalten des Plugins
    range = "" // mehrere IP Ranges können gebannt werden schreibweise durch ; trennen Beispiel: 192.168.100-192.170.150;150.150.125-150.170.180
    allowed_guids = "" // GUID die nicht mit einbezogen werden 8 stellige genügt (nicht richtig getestet)
    message = "Your IP is banned." // Erklärt sich von selbst

    Zitat

    <?php

    $mod->registerEvent("playerJoined", "iprangeban_main");

    $mod->setDefaultCV("iprangeban", "enabled", 0);
    $mod->setDefaultCV("iprangeban", "range", "");
    $mod->setDefaultCV("iprangeban", "allowed_guids", "");
    $mod->setDefaultCV("iprangeban", "message", "Your IP is banned.");

    function iprangeban_main($guid) {
    global $mod;
    global $players;

    if ($mod->getCV("iprangeban", "enabled") == "0") {
    return;
    }

    $range_string = $mod->getCV("iprangeban", "range");
    $allowed_guids = $mod->getCV("iprangeban", "allowed_guids");


    // Spaltet die erlaubten GUIDS in ein array auf und überprüft ob die GUID von dem Connecteten enthalten ist.
    if ("" != trim($range_string)) {
    $allowed_guids_repl = str_replace(" ", "", $allowed_guids);
    $array_guids = explode(";", $allowed_guids_repl);
    foreach ($array_guids as $value) {
    if ($guid == $value) {
    return;
    }
    }
    }

    Alles anzeigen

    :>:>

  • Ban IP Range plugin

    • Secretjail
    • 17. Oktober 2012 um 23:26

    i need the plugin badly ...
    where is the PVT paula ?
    anyone havent yet it?

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 22:36

    thank you guys , i have a real answer.im goin to send private message to pvt and some one else.

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 22:24
    Zitat von Speedy

    The file isn't available in this forum any more. If you're lucky someone else has this plugin and upload it here.


    why it's not avilable ? dears admins , Yenz , can i have this plugin? if no why ? :confused:

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 21:58
    Zitat von Speedy

    then you have linked the wrong Plugin in your startpost. I think you mean this plugin: IP Rangeban plugin ?


    fu*k yes ,my mistake
    i want ip range plugin php file

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 21:50
    Zitat von Yenz

    Take a look at the second post in this thread, Rycoon already posted the plugin's thread.

    Edit: He posted the german thread, so that one is the english one: [Release] Ban IP Plugin
    Have fun


    hmm if i'm wrong let me know:
    this plug in just ban one by one ip not ip range like: 192.168.0-192.168.254
    i want ban ip Range php file man :)
    if that ban ip plugin can ban multi ip or ip range tell me how can i use for this case?

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 19:41
    Zitat von Yenz

    /me is silva202

    No, this plugin doesn't support IP ranges (as Speedy already pointed out exactly).


    ok then , thanks for info , can i have that php file (iprangeban.php of course) or its not available for some reason?

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 15:45
    Zitat von Rycoon

    I guess you will find it HERE.

    Regards, Rycoon!


    Are you sure it support ip range ?
    the correct answer is on silva202 hands i guess.

  • Ban IP Range plugin

    • Secretjail
    • 14. September 2012 um 15:40

    hi there
    i found this topic
    but where i can download the php file?

  • I Need help not Working Ban in Mw2

    • Secretjail
    • 21. August 2012 um 13:14
    Zitat von I.Q|Mega

    This plugin not Working :(

    did you done this:
    "

    Zitat

    4. add this to config.cfg:

    [pban]
    enable=1
    kickreason=Banned by Admin
    [pban]
    enable=1
    kickreason=Banned by Admin

    Alles anzeigen

    " ?

  • Installing MAM under Linux Centos?

    • Secretjail
    • 15. Juli 2012 um 21:16
    Zitat von Yenz

    If php is already installed you just have to edit the "startscript".


    yes of course it is istalled, im using b3 right now but players cant deal wth it so please tell me how can i edit start script ?
    if i get last version of mam it ok ?i can run it wwithoute any files? as i sayed im newbie in linux.
    post edit: oh, sorry i forgot this its in main folder !!!
    i will try this.

    EDIT: ok , i just edit my path of manu dir like /root/blabla/mam/ ? is this correct?
    and i cant run it with screen -s ./startscript
    :-s
    i must edit path of php or it's not requaired?
    help plz?

  • Installing MAM under Linux Centos?

    • Secretjail
    • 15. Juli 2012 um 08:18

    ok i remmember in wiki tut ther was how to config mam in win/linux when i can run b3 in linux , i think i can do this for mam , so where is this wiki i cant find it :-s

  • Installing MAM under Linux Centos?

    • Secretjail
    • 14. Juli 2012 um 17:41
    Zitat von Yenz

    For linux we provide an other startscript (called startscript).
    You require the program "screen" for that script and you have to make the script executable:
    chmod u+x startscript

    Open an and edit the first part of that startscript.

    Then run the script with ./startscript to see what options do you have with that script.


    oh god im confused...
    if i need some start file thats not in manu 0.11.4 tell me then!
    ok i mkdir mam then i coy all of manu files
    i must startscript is this start.bat ?
    screen in centos is install and ok i lunched the cod4 server and it;s working
    so i dont need php path ? :-s
    i think i must install windows son or later....

  • Installing MAM under Linux Centos?

    • Secretjail
    • 14. Juli 2012 um 17:20

    ok thanks for answer and in other news TUT=Tutorial
    and im newbie in linux , your start.bat command plz ?
    where can i find php :-s
    @echo off
    :1
    [PATH_TO_PHP ? home/? where?]/php -f daemon.php -- -configdir "config" -logdir "log"
    goto 1

  • Installing MAM under Linux Centos?

    • Secretjail
    • 14. Juli 2012 um 16:09

    stupid qustion
    but path to log file when u connect via ssh as root or user must be...
    logfile = "home/user/cod4/main/games_mp.log"
    or?
    where i can tut for running mam under linux centos?
    thanks for helping

  • Site bug :|

    • Secretjail
    • 6. März 2012 um 20:48

    yep
    thanks denis.it's now all correct.

  • Serverlist

    • Secretjail
    • 20. Februar 2012 um 14:09

    Danke für Antwort. Sie sind genial.Ich werde zu aktualisieren :mrgreen:

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