Results 1 to 9 of 9

Thread: Last Man Standing and Team Balance Mod :: MOHAA

  1. #1

    Default Last Man Standing and Team Balance Mod :: MOHAA

    Last Standing MOHAA MOD / Team Balance Notifier Mod

    By OwN-3m-All

    Version: 9

    Updates:

    • Fixed long names for last man standing
    • Added new labels describing what the mod is showing
    • Team Balance Mod works with Last Man Standing Mod (you can run both at the same time)


    About:

    The Last Standing MOHAA MOD prints the name of the last player on each team. It can also count the number of players that are alive on each team and display this to all players.

    The Team Balance mod shows the number of players on each team (whether alive or dead) and notifies everyone in the server when teams should be balanced. When the difference between the two teams is 2 or more, a "Balance Teams" flashing notification will appear and continue to flash until the teams are balanced.

    Install:

    Place the mod into your server's MOHAA Main directory.

    Usage:

    In your server.cfg, add the following line to turn the mod ON:

    Last Man Standing:

    set lastManStanding 1 // Turns on the last standing mod
    set showPlayerCount 1 // Shows how many players are on each team to the left of the team icon

    Team Balance Mod:

    set teamBalance 1 // Shows team balance notifictions

    Turn the mods OFF:

    set lastManStanding 0 // Turns off the last standing mod
    set teamBalance 0

    Screenshot:

    Browse MOHAA Servers Post GameSpy Era

    VISIT MOHREBORN.COM FOR LATEST INFORMATION



    Medal of Honor: Game Server Browser Fixer - Patches your MOHAA, MOHSH, and MOHBT game binaries to allow you to retrieve a list of game servers within the multi-player menu in-game even after GameSpy ceases operation!

    Medal of Honor: Query Launcher - Find, browse, organize, join, get your ping, and get more information regarding all Medal of Honor (AA, SH, & BT) servers from your PC at any time!
    Medal of Honor: Web Server Master List - Find and browse all Medal of Honor servers online using your browser!
    Add your Medal of Honor Server to the Master List
    YouTube Video for Medal of Honor: Query Launcher and MOHAASERVERS.TK!



    MOHAA Mods and Utilities
    OwN-3m-All's Mods
    Make Me Stock - A program that allows you to easily move-in and move-out non-stock mods and other files at the click of a button. Automates adding / removing mods without having to copy / move files manually.



    Quality Game Servers

    Rent dedicated Dallas Texas, Kansas City, Las Vegas Nevada, Chicago, Pennsylvania, and Sofia Bulgaria MOHAA and other game servers from We Be HostiN starting at $10 a month.


  2. #2

    Default

    Hello , Nice Job mate!! i can run teambalance only without last man standing right mate ? by adding in server.cfg :

    set teamBalance 1
    set lastManStanding 0


    Thanks

  3. #3

    Default

    Ohh seems here little problem that its running in FFA gametype too so how to disable it mate in FFA gametype ?!

  4. #4

    Default

    does this last man standing realy works?..... i remember there was a last man standing mod but it didnt work every time.

  5. #5

    Default

    Yes, it works.

    @GetRS:

    This is how you check for FFA:

    Code:
    if (int(getcvar(g_gametype)) != 1){
       // It's not FFA!  Run the mod
    }
    Browse MOHAA Servers Post GameSpy Era

    VISIT MOHREBORN.COM FOR LATEST INFORMATION



    Medal of Honor: Game Server Browser Fixer - Patches your MOHAA, MOHSH, and MOHBT game binaries to allow you to retrieve a list of game servers within the multi-player menu in-game even after GameSpy ceases operation!

    Medal of Honor: Query Launcher - Find, browse, organize, join, get your ping, and get more information regarding all Medal of Honor (AA, SH, & BT) servers from your PC at any time!
    Medal of Honor: Web Server Master List - Find and browse all Medal of Honor servers online using your browser!
    Add your Medal of Honor Server to the Master List
    YouTube Video for Medal of Honor: Query Launcher and MOHAASERVERS.TK!



    MOHAA Mods and Utilities
    OwN-3m-All's Mods
    Make Me Stock - A program that allows you to easily move-in and move-out non-stock mods and other files at the click of a button. Automates adding / removing mods without having to copy / move files manually.



    Quality Game Servers

    Rent dedicated Dallas Texas, Kansas City, Las Vegas Nevada, Chicago, Pennsylvania, and Sofia Bulgaria MOHAA and other game servers from We Be HostiN starting at $10 a month.


  6. #6

    Default

    Quote Originally Posted by own3mall View Post
    Yes, it works.

    @GetRS:

    This is how you check for FFA:

    Code:
    if (int(getcvar(g_gametype)) != 1){
       // It's not FFA!  Run the mod
    }
    Hello mate Thanks for reply , i tried to add it at the top of the script but seems not work so where is the correct place to edit it please ? Thanks

  7. #7

    Default

    Quote Originally Posted by Getrs View Post
    Hello mate Thanks for reply , i tried to add it at the top of the script but seems not work so where is the correct place to edit it please ? Thanks
    Change from this:

    Code:
      if(int(getcvar(teamBalance)) == 1){ 
          
        level.axisCount = 0
        level.alliesCount = 0
        level.totNumPlayers = 0
        level.tDiff = 0
        thread teamBalance
        thread tBalanceMess
      }
    To this:

    Code:
      if(int(getcvar(teamBalance)) == 1 && int(getcvar(g_gametype)) != 1){ 
          
        level.axisCount = 0
        level.alliesCount = 0
        level.totNumPlayers = 0
        level.tDiff = 0
        thread teamBalance
        thread tBalanceMess
      }
    Browse MOHAA Servers Post GameSpy Era

    VISIT MOHREBORN.COM FOR LATEST INFORMATION



    Medal of Honor: Game Server Browser Fixer - Patches your MOHAA, MOHSH, and MOHBT game binaries to allow you to retrieve a list of game servers within the multi-player menu in-game even after GameSpy ceases operation!

    Medal of Honor: Query Launcher - Find, browse, organize, join, get your ping, and get more information regarding all Medal of Honor (AA, SH, & BT) servers from your PC at any time!
    Medal of Honor: Web Server Master List - Find and browse all Medal of Honor servers online using your browser!
    Add your Medal of Honor Server to the Master List
    YouTube Video for Medal of Honor: Query Launcher and MOHAASERVERS.TK!



    MOHAA Mods and Utilities
    OwN-3m-All's Mods
    Make Me Stock - A program that allows you to easily move-in and move-out non-stock mods and other files at the click of a button. Automates adding / removing mods without having to copy / move files manually.



    Quality Game Servers

    Rent dedicated Dallas Texas, Kansas City, Las Vegas Nevada, Chicago, Pennsylvania, and Sofia Bulgaria MOHAA and other game servers from We Be HostiN starting at $10 a month.


  8. #8

    Default

    Quote Originally Posted by own3mall View Post
    Change from this:

    Code:
      if(int(getcvar(teamBalance)) == 1){ 
          
        level.axisCount = 0
        level.alliesCount = 0
        level.totNumPlayers = 0
        level.tDiff = 0
        thread teamBalance
        thread tBalanceMess
      }
    To this:

    Code:
      if(int(getcvar(teamBalance)) == 1 && int(getcvar(g_gametype)) != 1){ 
          
        level.axisCount = 0
        level.alliesCount = 0
        level.totNumPlayers = 0
        level.tDiff = 0
        thread teamBalance
        thread tBalanceMess
      }
    Thanks alot mate working fine

  9. #9

    Default

    Hi own3mall!

    good job it works with no errors

    I just wonder if I can make it balance teams by forcing players to join teams

    where am I have to modify?

    Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •