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!
  • RCON - frostbite3 header

    • Mirko911
    • 7. Juli 2014 um 19:06

    @Master of Little
    wir müssten eh nochmal reden, einer mehr oder weniger wird nicht schaden :D

  • Problem new MAM 1.0.0 beta4

    • Mirko911
    • 7. Juli 2014 um 11:28

    something is wrong with your rcon connecion

  • i am facing problem in mam 1.0.0 beta 4

    • Mirko911
    • 7. Juli 2014 um 08:37

    why do you use old beta versions.

    Beta 2 had problems with game specific commands

  • playername

    • Mirko911
    • 6. Juli 2014 um 01:49

    Thats wrong.

    He means that he wants to kick players with less then 3 chars in the name.

    The punishment system isn't finished yet, but when it's done, it will be easy to write a plugin.

    Btw. do you use 0.12 or 1.0.0?

  • Plugins for latest MAM 1.0.0-+4

    • Mirko911
    • 6. Juli 2014 um 01:38

    I think he means that

      "master_1": "^5Roll out the red carpet! ^7<GROUP_NAME> <PLAYER_NAME> ^5from ^7<COUNTRY_NAME> ^5has joined the <SERVER_NAME>^5 server.",

    This feature is planned but not available atm

  • Rotu Revolution Commands!

    • Mirko911
    • 5. Juli 2014 um 17:20

    mit alt meinst du 0.12 oder noch älter?

    Rotu Revolution = der Zombie Mod, oder :D?

    Was es für CMD's gibt, kann ich dir auch nicht sagen, du kannst aber mal in der gsc nach getDvar() schauen, oft werden damit die Server Commands realisiert (Es sind dann in wirklichkeit keine Commands, sondern einfach nur Dvars die alle 0.05 Sekunden überprüft werden :D)

  • Tag Protection

    • Mirko911
    • 3. Juli 2014 um 10:42

    uff, momentan haut das vom Zeitplan her nicht so hin.

    Wuerde gerne den MAM erstmal fertigstellen, bevor wir mit den Plugins anfangen.
    Es kann gut sein, dass sich dort noch große Teile ändern, vorallem im Bereich
    der Kicks/Bans/Warns ist einiges geplant :)

  • upgrade time and date

    • Mirko911
    • 1. Juli 2014 um 20:46

    Hey, 1 info

    My name Mirko and not Mikro

  • upgrade time and date

    • Mirko911
    • 1. Juli 2014 um 15:00

    dafuq, what are you doing there?

    PHP
    <?php
    
    
    
    
    $mod->registerCommand("date", false);
    
    
    
    
    function time($guid, $parameters) {
        //Get access to the mod class, which holds all mam relevant functions, values
        global $mod;
    
        //Find out the date.  Y = year, m = month, d = day
        $mytime = date('Y-m-d');
    
        //Say this message to everyone on the server
        $mod->rconSay("$mytime");
    }
    ?>
    Alles anzeigen

    should work

  • upgrade time and date

    • Mirko911
    • 1. Juli 2014 um 07:04

    post your code of the plugin and we can tell you the error ;)

  • hello

    • Mirko911
    • 30. Juni 2014 um 19:03

    send file please

  • hello

    • Mirko911
    • 30. Juni 2014 um 18:32

    the problem is $guid

    the header for a command function like !admintest is
    function myFuncionName($guid, $parameters)
    in this function you need $guid because it's the guid of the executing person

    for registerEvent you don't need the guid paramter,
    so I would do it like this:

    PHP
    <?php
    $mod->registerEvent("playerSay", "hello");
    
    
    
    
    function hello($args) {
        global $mod;
        list($guid, $message, $executed) = $args;
    
    
    
    
        $search = 'hi';
        $pos = strpos($message,$search);
    
    
    
    
        if($pos !== false) {
            $mod->rconSay("hi");
        }
    }
    Alles anzeigen


    list() splits an array in variables (this only works if you know the number of elements in the array)

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 30. Juni 2014 um 10:46

    0:00 [30.06.14 10:26:27] Error: RCON connection failed: Wrong RCON password

    schau mal in die config.cfg und ueberpruefe, ob dein rcon pw gesetzt ist, bzw ob die ip stimmt. (manchmal klappt es ueber localhost / 127.0.0.1 nicht, dann musst du die Server IP nehmen und umgekehrt)

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 30. Juni 2014 um 10:12

    gibt es jetzt vielleicht eine mod.log?

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 30. Juni 2014 um 09:51

    dein Hoster sollte PHP schon installiert haben,

    du nutzt doch MAM 0.12 oder?

  • need help with this

    • Mirko911
    • 30. Juni 2014 um 07:09

    every Player has his own instance if the object "Player", which is saved in the $players array. The playerguid is the key for the array.

    $players[$guid]->say() is a Function of "Players" which sends a PRIVATE message to the Player with the guid $guid

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 29. Juni 2014 um 23:46

    :D

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 29. Juni 2014 um 22:59

    schick mal den Inhalt der mam.cfg

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 29. Juni 2014 um 22:14

    ok

    schau mal, ob es im Log Ordner eine mod.log gibt. Wenn ja, poste mal den Content

  • Manu admin bei Professional-Gameserver.com

    • Mirko911
    • 29. Juni 2014 um 21:39

    kannst du den Adminmod nur über ein Webinterface starten oder hast du Zugriff auf SSH?

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