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

Beiträge von GumGes1

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!
  • Target Machine Refuses RCON

    • GumGes1
    • 4. August 2014 um 10:59

    open port by firewall
    search at firewall in start and go to windows fire wall click at advanced settings when is open click at inbound rules then choose new rule

  • mask and unmask

    • GumGes1
    • 4. August 2014 um 10:56

    we can add new group in groups.cfg and name to hide and give him power !hide and !unhide if !hide he will be setgroup in hide group if !unhide he will be setgroup as admin or master admin :P
    that's works i think and in basiccommands we add if group == hide that mean it will be return false

  • How to stop hackers

    • GumGes1
    • 1. August 2014 um 21:17

    don't join who ask you to join his server and you will be ok :)

  • problem :|

    • GumGes1
    • 1. August 2014 um 12:34

    here but its not finished yet :)

    Spoiler anzeigen
    PHP
    <?php
    
        $fastcommands = new fastcommands();
    
        $mod->registerCommand("rules",        false,                  "servrules",    $fastcommands);
        $mod->registerCommand("respawn",      false,                  "respawns",     $fastcommands);
        $mod->registerCommand("found",        '~^found .+$~i'           "found",        $fastcommands);
        $mod->registerCommand("playerson",    false,                  "playersons",   $fastcommands);
        $mod->registerCommand("score",        false,                  "scores",       $fastcommands);
        $mod->registerCommand("pbanlist",     false,                  "bans",         $fastcommands);
        $mod->registerCommand("report",       '~^report .+$~i',       "reports",      $fastcommands);
        $mod->registerCommand("getguid",      '~^getguid .+$~i',      "guids",        $fastcommands);
    
        class fastcommands{
    
        private $players = array();
        private $mod = false;
        private $logging = false;
    
    
    
    
        public function __construct() {
            $this->players = &$GLOBALS['players'];
            $this->mod = &$GLOBALS['mod'];
            $this->logging = &$GLOBALS['logging'];    
        }
    
        public function servrules($guid,$parameters){
    
    $configdir = $GLOBALS['mod']->getConfigDir();
    $rules = explode("\n",file_get_contents($configdir . "/plugins/rules.lst"));
    $counts = count($rules);
    $this->players[$guid]->say("^7Please Follow This ^3[^2$counts^3] ^7Rules");
    foreach($rules as $key => $rule){
    
        $this->players[$guid]->say("^7Rule ^3[$key] ^7 = $rule");
    
        }    
    }    
    
    
        public function respawns($guid,$parameters){
    
    
            $value = array_shift($parameters);
            $type = implode(" ",$parameters);
            if(is_numeric($value)){
            $this->mod->rconSetDvar("scr_".$type."_playerrespawndelay " ,$value);
            $this->mod->rconSay("Respawn Changed");
    
            }else{
    
                $this->players[$guid]->say("^1The GameType Is Wrong");
            }
    
    
        }
    
        public function scores($guid,$parameters){
    
            $num = array_shift($parameters);
            $gtype = implode(" ",$parameters);
    
            $this->mod->rconSetDvar("scr_".$gtype."_scorelimit ", $num);
            if(is_numeric($num)){
            $this->mod->rconSay("^2ScoreChanged Score :^7$num");
            }else{
    
            $this->players[$guid]->say("^1The GameType Is Wrong");
        }
    }
    
        public function playersons($guid,$parameters){
    
            $lists = $this->mod->getPlayerList();
            $counts = count($lists);
            $this->mod->rconSay("^2OnlinePlayers : ^7[^3$counts^7]");
    
        }
    
    
    
    
        public function found($guid,$parameters){
    
    
            $name = implode(" ",$parameters);
            $theguid = $this->mod->findPlayerGuid($name);
            $playername = $this->players[$guid]->getName($theguid);
            if($theguid){
    
                $this->players[$guid]->say("Name : $playername And Guid : $theguid");
            }else{
    
                $this->players[$guid]->say($this->mod->getLngString("playerNotFound",array("<SEARCH>"),array($parameters)));
            }
            if(empty($parameters)){
    
                $this->players[$guid]->say($this->mod->getLngString("playerNotFound",array("<SEARCH>"),array($parameters)));
            }else{
    
                $this->players[$guid]->say("lol");
            }
    
        }
    
    
    }
    ?>
    Alles anzeigen
  • problem :|

    • GumGes1
    • 1. August 2014 um 09:48

    yes

    in languages /help/ i added the found when i type !found genius they said syntax error and they post what i do in Languages

  • problem :|

    • GumGes1
    • 1. August 2014 um 09:45

    plugin

    Spoiler anzeigen
    Code
    public function found($guid,$parameters){
    
    
            $name = implode(" ",$parameters);
            $theguid = $this->mod->findPlayerGuid($name);
            $playername = $this->players[$guid]->getName($theguid);
            if($theguid){
    
                $this->players[$guid]->say("Name : $playername And Guid : $theguid");
            }else{
    
                $this->players[$guid]->say($this->mod->getLngString("playerNotFound",array("<SEARCH>"),array($parameters)));
            }
            if(empty($parameters)){
    
                $this->players[$guid]->say($this->mod->getLngString("playerNotFound",array("<SEARCH>"),array($parameters)));
            }else{
    
                $this->players[$guid]->say("lol");
            }
    
        }
    Alles anzeigen

    mod.log

    Spoiler anzeigen

    0:00 [02.08.14 00:53:03] Notice: === Start processing loglines... ===
    0:00 [02.08.14 00:53:05] Notice: Banner message was sent: ^2Next map is: ^7killhouse ^3(Headquarters)
    62:13 [02.08.14 00:53:15] Notice: Genius' joined, PID: 0, GUID: c9c10719578932c9167e59ea825a2cb3
    62:24 [02.08.14 00:53:26] Notice: Player 'Genius' executed command: 'found Genius', PID: 0, GUID: c9c10719578932c9167e59ea825a2cb3
    62:24 [02.08.14 00:53:27] Notice: Banner message was sent: ^2Use ^3!geo ^2To Show Your Country Location
    62:24 [02.08.14 00:53:48] Notice: Banner message was sent: ^2Check Our ^3!Time
    62:51 [02.08.14 00:53:53] Notice: Player 'Genius' quit, PID: 0, GUID: c9c10719578932c9167e59ea825a2cb3

    edit : i was using with !found not !respawns

  • problem :|

    • GumGes1
    • 1. August 2014 um 08:49

    this not working :(

    Code
    $mod->registerCommand("respawns",  '~^respawns .+$~i',  "respawn",  $fastcommands);
  • mask and unmask

    • GumGes1
    • 30. Juli 2014 um 22:35

    can it work if admin need to hide himself by !hide and then unhide by !unhide ?

  • new game

    • GumGes1
    • 30. Juli 2014 um 19:33

    HAHAHAHAHAHAHHA xD
    you edit the topic O_O
    btw i got stupid game too :|

  • new game

    • GumGes1
    • 29. Juli 2014 um 19:15

    choose your spoiler and post what you got from the first spoiler don't cheat :P
    don't add bad post if its shows bad answer its a game :P

    Spoiler anzeigen

    donkey

    Spoiler anzeigen

    you are master

    Spoiler anzeigen

    :heart:

    Spoiler anzeigen

    badboy

    Spoiler anzeigen

    you are girl :kiss:

    Spoiler anzeigen

    you always cool :cool:

    Spoiler anzeigen

    kid :sick:

    Spoiler anzeigen

    stupid game

  • How to stop hackers

    • GumGes1
    • 29. Juli 2014 um 18:42

    no one can take your guid only if you joined his server and he had b3 or manuadmin or some command to get your guid

  • Download This New Plugin :P

    • GumGes1
    • 29. Juli 2014 um 18:37

    i will use this ManuAdminMod Language strings thanks mirKo for this info :)

  • How to stop hackers

    • GumGes1
    • 29. Juli 2014 um 18:32

    your GameRanger IP And Port none can hack only you even in rcontool try it give some one rcon password he can't connect XD

  • Download This New Plugin :P

    • GumGes1
    • 29. Juli 2014 um 18:12

    here the plugin
    !found <Player_Name> or !found playernumber by using !pl that mean pid (return if this name found in the game or not)
    !getguid <player_name> or !getguid playernumber by using !pl that mean pid (return the name and the guid of playersname)

  • How to stop hackers

    • GumGes1
    • 29. Juli 2014 um 14:47

    but i delete all logfiles every 3 or 2days because some times if i need to make a plugin and give error i delete then run again to know the error because when i open mod.log not responding
    but i think dennis right maybe the keyCode because no any way to get admin power

  • How to stop hackers

    • GumGes1
    • 29. Juli 2014 um 08:40

    they said i reached 10k characters !!
    and keycode changed i will try now

  • How to stop hackers

    • GumGes1
    • 29. Juli 2014 um 07:27
    Zitat von Dennis

    I can't believe you, sorry, there is no other way to do so.


    then i will check the keycode because i left the cod4 from 5 years then i came back again idk what is the keycode if its cracked or not but i remember that i was using original one from my CD cod4
    i'll check the CD then Check The Code in The Cod4

  • Problems ManuAdminMod

    • GumGes1
    • 28. Juli 2014 um 06:39
    Zitat von Dante

    The one I have is the latest version of php, then I tried to move the files, now comes this


    he already said that O_O
    or the 5.4 different ?

  • How to stop hackers

    • GumGes1
    • 28. Juli 2014 um 02:40

    i don't have admins :tired:

  • Problems ManuAdminMod

    • GumGes1
    • 28. Juli 2014 um 00:31

    windows 8 or 7? and 64 bit or 32 bit ?
    guys if he removed the $this->getPluginData()["name"]; to => $this->getPluginData()."name";
    its not going to work ?

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