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
  • Deutsch
  • Anmelden
  • Registrieren
  • Suche
Forum
  1. GSManager
  2. Mitglieder
  3. raminr63

Beiträge von raminr63

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!
  • 1
  • 2
  • attachment files are gone

    • raminr63
    • 19. November 2012 um 14:03

    hi

    why the most attachment files are gone???
    and there is no link or existe link is dead.

  • GENERATOR not work correctly

    • raminr63
    • 15. November 2012 um 15:35

    Hi

    Why GENERATOR not work correctly i can't create any config export ?!

    key not work at all :sad:

    the old generator is better than new GENERATOR why you removed that?!

  • MAM for mw3

    • raminr63
    • 15. September 2012 um 15:17

    Hi

    i think for now there is a new way for that and its 4D1(iw5m).

    so when the mam can support the mw3?!!

  • MAM for mw3

    • raminr63
    • 27. Dezember 2011 um 14:23

    Luk
    Thanks

  • MAM for mw3

    • raminr63
    • 26. Dezember 2011 um 19:39

    Hi

    By release this tools i think its time the mam support the mw3 .... :D

    :clickme: http://www.itsmods.com/forum/Thread-R…rver-addon.html

    pleas @Admins we wait for nice job .

    Thanks

  • mw3 support on manuadminmod !!

    • raminr63
    • 26. November 2011 um 21:47

    Hi

    Is it possible the manuadminmod support the mw3 dedicated servers??
    any idea ? any future plan?! :)

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 22. Mai 2011 um 15:33
    Zitat von Master of Little

    $mysqlhost="localhost";
    $mysqluser="user";
    $mysqlpasswd="pw";
    $mysqldbname="dbname";


    $con = @mysql_pconnect($mysqlhost, $mysqluser, $mysqlpasswd);
    if(!$con) {
    echo "Mysql error: " . mysql_error();
    exit();
    }

    mysql_select_db($mysqldbname);

    $mod->registerEvent("playerJoined", "registered_main");
    $mod->setDefaultCV("registered", "enabled", 1);
    $mod->setDefaultCV("registered", "kickreason", "->boro baba<-"); //add KICK Reason here or make an config file


    function registered_main($guid) {
    global $mod, $players;

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

    $mysqlt = "table"; ///Your table////

    $abfrage = "SELECT * FROM `$mysqlt`";
    $ergebnis = mysql_query($abfrage);
    $tb = array();
    while($row = mysql_fetch_object($ergebnis))
    {
    $tb[] = $row->land;
    }
    if (!in_array($guid, $tb)) {
    $players[$guid]->kick($mod->getCV("registered", "kickreason"));
    }


    }

    ?>

    Alles anzeigen


    THANKS MAN,... I LOVE U!! :thumbup:

    Its work perfectly .lol
    so for new user i must re lunch the MOM. if the updater can be for it itswill be very perfect.

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 21. Mai 2011 um 19:06

    IN THIS FORUM >>TOPIC I AM ALONE ALONE ALONE ....

    :moin: :moin: :moin: :moin:

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 20. Mai 2011 um 16:01

    HI

    so i edit the cod so plugin successfully connected to database but It seems the plugin cannot read the player GUIDes form data base because all of players kicked from server after connected to game?!!!

    so pleas help to correctly edit his plugin!!

    and :

    the plugin i edit that:

    PHP
    <?php
     $mysqlhost="*****";
       $mysqluser="*****";
       $mysqlpasswd="******";
       $mysqldbname="******";
    
    
    
    
    
    
    
       	  mysql_connect($mysqlhost, $mysqluser, $mysqlpasswd) OR
    		die("Could not connect to the database.<br /> Error Message: <b>".mysql_error());
    
    
    
    
    
    	  mysql_select_db($mysqldbname) OR
       		die("The database could not be used.<br /> Error Message: <b>".mysql_error());
    
    
    
    
    $mod->registerEvent("playerJoined", "registered_main");
    $mod->setDefaultCV("registered", "enabled", 1);
    $mod->setDefaultCV("registered", "kickreason", "->boro baba<-"); //add KICK Reason here or make an config file
    
    
    
    
    $sql = "ALTER TABLE `dle_users` ADD INDEX(`land`)";  // path to your file, place it in your configfolder into folder plugins
    
    
    
    
    $sql = array();
    
    
    
    
    function registered_main($guid) {
     global $mod, $players,$sql;
     if($mod->getCV("registered", "enabled") == 0) {
      return;
     }
     if (!in_array($guid, $sql)) {
      $players[$guid]->kick($mod->getCV("registered", "kickreason"));
     }
    }
    
    
    
    
    ?>
    Alles anzeigen


    from this cod ( original that i given from this site) :

    PHP
    <?php
    
    
    
    
    $mod->registerEvent("playerJoined", "registered_main");
    $mod->setDefaultCV("registered", "enabled", 1);
    $mod->setDefaultCV("registered", "kickreason", "->boro baba<-"); //add KICK Reason here or make an config file
    
    
    
    
    $file = $configdir . "/whitelist.lst";  // path to your file, place it in your configfolder into folder plugins
     
    $results = explode(",", file_get_contents($file));
    $whitelist = array();
    
    
    
    
    foreach($results as $result) {
     $whitelist[] = trim($result);
    }
    
    
    
    
    function registered_main($guid) {
     global $mod, $players,$whitelist;
     if($mod->getCV("registered", "enabled") == 0) {
      return;
     }
     if (!in_array($guid, $whitelist)) {
      $players[$guid]->kick($mod->getCV("registered", "kickreason"));
     }
    }
    
    
    
    
    ?>
    Alles anzeigen


    and its a picture from my sql page:

    ==========================

    so i hop u help me ^^

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 19. Mai 2011 um 21:07
    Zitat von Master of Little

    ok maybe I can program it for u on weekend


    thank u man ..... :D

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 19. Mai 2011 um 19:52

    :( :( :( :(

    SO my programing is in basic and really i don't know how can i do this!! :(

    if u can help pleas do this ... i need this plugin so pleas do this if possible (i need a best and complete plugin about this so its not possible for me to do this because i am really NOOB about this :) ) ,its be very nice .

    thanks

    sorry for my bad English

  • you dont allow to playe game pleas register on websit then try again !!

    • raminr63
    • 18. Mai 2011 um 18:34

    Hi

    Can you help me?!!! its great if you can!! lol :P

    so i want a plugin (for mw2) that connect to my website database and only allow the players that register on my website able to connect to the game (or allow that players can play game after connect ) so if he or she is not register on website shown a warn to him after kick from the game(or before he connected to the game show warn such as this error that shown on high ping and don't allow players to connect to the game [ server for low ping and your ping is too high ,,, LOL :D ] ) its will be nice if be possible ???

    AND FOR MORE REASON: if possible this plugin check the LSPXUID or GUID of players because its can not be changeable and it is fixed for any pc (Of course for non hackers :( ) so i write-in the LSPXUID or GUID in my website database....

    is it possible??


    sorry for my bad English.

  • help - how the !ban command works?

    • raminr63
    • 14. Mai 2011 um 18:24

    OK
    well don. its perfect but i have a problem with unban?!! :(

    so when i want to unban the baned user its not worked (( all of unban commends does not work: !unban !pbunban !pbclearbans !pbbanlist)... :?:

    and i have to clear quids in bans.log files in every times to unban players!!! :lol:

    HOW CAN I FIX THIS?!!

  • Puddi Buster in ManuAdmin

    • raminr63
    • 14. Mai 2011 um 14:56
    Zitat von body_guard

    Was hast du für eine Fehlermeldung? Verstehe nicht ganz....

    Hast du das auch so installiert?

    Dieses Plugin PUDDI.dll in den Ordner Plugin eingefügt?

    Steam kicking 'Rabbit' <11000014ed0d945> for reason: 4

    ok

    I download it so are your enable punk-buster in config ( server.cfg of game AND config.cfg of MOM)...?????

  • Kicks & Bans auf Website anzeigen / Kicks & Bans on website 2.1

    • raminr63
    • 14. Mai 2011 um 13:43
    Zitat von Master of Little

    hi this problem with the guid is no bug it keeps the people who et kicked anonym
    when you want to show it u must edit the file logkickban.php in the plugin folder.
    change:

    PHP
    $guid_short = substr($player, 0, 6);


    to:

    PHP
    $guid_short = $player;


    it should be 3 times in there.

    Zitat von Master of Little

    hi this problem with the guid is no bug it keeps the people who et kicked anonym
    when you want to show it u must edit the file logkickban.php in the plugin folder.
    change:

    PHP
    $guid_short = substr($player, 0, 6);


    to:

    PHP
    $guid_short = $player;


    it should be 3 times in there.


    hi
    its great and thanks for answering... but i want to show last 6 characters !!how can i do this?!! ;)

    thanks.

  • Kicks & Bans auf Website anzeigen / Kicks & Bans on website 2.1

    • raminr63
    • 12. Mai 2011 um 21:19
    Zitat von raminr63

    hi

    i use this and its very nice but i have a problem with GUID because its shown only first character 011000 so how can i fix it??????
    like this:

    plz help ,someone, admin plz helppppp ,,,,,any idea to fix this problem ?? :groesste:

  • Kicks & Bans auf Website anzeigen / Kicks & Bans on website 2.1

    • raminr63
    • 11. Mai 2011 um 22:28

    if possible type English !! thanks :)

  • Kicks & Bans auf Website anzeigen / Kicks & Bans on website 2.1

    • raminr63
    • 11. Mai 2011 um 20:48

    hi

    i use this and its very nice but i have a problem with GUID because its shown only first character 011000 so how can i fix it??????
    like this:


    and other unnecessary question: how can i colored the title so i use the body tag ( <BODY text="yellow"> ) but all of text is changed coolers..?

  • To Websit Admin Pleas Read This :d

    • raminr63
    • 20. April 2011 um 09:19

    Hi

    For first i want to SAY my very special thanks abaUt manuadmin mod..


    So i think the amnuadmin is very good monitoring and game manager but its have some bugs and if this problems resolved
    i thinks it s be very good than an other...

    so TCP-admin don't have some thing in players tab such as

    ping
    ip

    It is good be if it has mode loader in-game such as game type....
    ( i mean OK we have some mods in mods folder so admin can be load mods by commend such as !mod isnipe...or something)

    its be very nice if TCP-admin have mobile version for more monitoring game server in any where...

    its be very useful if can be showed the result to player after punished (means when he kicked or banned or when he want to connect to the game) so its only showed to in-game players ,but only .. kicked ... showed to punished players!!
    the result that show when in-game is not useful because the main player is punished can not see the result after punish!!!


    bugs

    when mode loaded in-game commend dos not work so must be restart server for resolve problem.
    and som gametype such as dd dos not work correctly when game type changed because when typing !gametype dd its changed to dm. :!:

    sorry for may bad spell.

  • randommapcycle and weaponrestrictions not worked

    • raminr63
    • 5. April 2011 um 15:30

    hi i use manuadmin mod 14 for mw2 but the randommapcycle and weaponrestrictions dose not work for me?!!

    in randommapcycle the next map was showed on screen but its not changed the map???!!!

  • 1
  • 2
  1. Mitarbeiter
  2. Datenschutzerklärung
  3. Nutzungsbedingungen
  4. Impressum
  5. Kontakt
Community-Software: WoltLab Suite™
  • Alles
  • Artikel
  • Seiten
  • Dateien
  • Forum
  • Lexikon
  • Erweiterte Suche
  • Deutsch
  • English