GunGame 5.1 Updates

Announcements about GunGame5

GunGame 5.1 Updates

Postby XE_ManUp » Fri Jul 02, 2010 4:07 am

This announcement thread will be locked, but we will post all updates to GunGame5.1 here to make it easier to keep track of when we update GunGame.

The most up to date version can always be found here:

http://addons.eventscripts.com/addons/view/gungame51

:!: Note:
If you are not running the latest version, we will be unable to give you the proper support. I suggest you check this topic often to make sure you are running the latest version.
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Postby XE_ManUp » Fri Jul 02, 2010 4:09 am

GunGame51 Updated!
Version: 5.1.456
Updated on: 2010-07-01 10:17:35
Version Notes:
./_libs/python/cfglib.py:
  • Reverted to the cfglib that is shipped with EventScripts due to backwards-compatibility reasons.

./core/events/__init__.py:
  • Fixed a bug for the "leaders" and "old_leaders" event values to using the "setint" method instead of "setstring" method.
  • Fixed a bug to where EventScripts would error "No valid command situation for es_event!, #, ..." due to the event values for "leaders" and "old_leaders" being set to a blank string ("").

./cstrike/GunGame 5.1 License.txt:
  • Moved to "../addons/eventscripts/gungame51/GunGame 5.1 License.txt" for es_install compatibility.

gungame51.py:
  • Added a temporary crash fix by removing the notify flag from the cvar "nextlevel", which would crash the server when we fired game_end when a player wins. This would trigger server_cvar, causing a crash.
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Postby XE_ManUp » Fri Jul 02, 2010 4:10 am

GunGame51 Updated!
Version: 5.1.457
Updated on: 2010-07-01 15:14:35
Version Notes:
./_libs/python/cfglib.py:
  • Changed to use exec instead of es_mexec when the cfg file is in the /cfg directory. This change is reverse compatible!

./core/cfg/__init__.py:
  • Updated to execute cfg files with es.server.queuecmd() instead of es.server.cmd()
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Postby XE_ManUp » Sat Jul 03, 2010 7:03 pm

SPE has been updated, as well as a hotfix for EventScripts' cfglib. Get the latest files from here:

viewtopic.php?p=5970&f=69#p5970
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Re: GunGame 5.1 Updates

Postby Monday » Wed Jul 07, 2010 2:38 am

GunGame51 Updated!
Version: 5.1.466
Updated on: 2010-07-06 10:17:35
Version Notes:
Version Notes: 5.1.466 -
  • ./scripts/included/gg_welcome_msg/gg_welcome_msg_config.py
    * Fixed typo in the cfg file, it was referencing the wrong .txt file to edit.
  • ./included/gg_thanks
    * Removed
  • ./eventscripts/gungame51/scripts/included/gg_error_logging
    * Removed
  • ./eventscripts/_libs/python/cfglib.py
    * Removed
  • ./gungame51/gungame51.py
    * Fixed some formating with es_load output
    * Added GG Thanks
    * Added remove files function (allows us to easily remove old files)
    * Updated for new core logging system
    * Updated code for removal of the notify flag for:
    - mani_nextmap
    - sm_nextmap
    * This prevents crashes temporarily.

  • ./scripts/included/gg_deathmatch/gg_deathmatch.py:
    * Removed the notify flag from:
    - mp_freezetime
    - mp_roundtime
    * This may or may not fix some crashing issues.
  • ./eventscripts/gungame51/core/logs/__init__.py
    * Added new core section to handle error logging, making it a mandatory part of gungame.
  • ./scripts/included/gg_warmup_round/gg_warmup_round.py:
    * Removed the notify flag from mp_freezetime to see if that helps cut back on crashes (TEMPORARY FIX).
  • ./core/messaging/__init__.py:
    * Added additional arguments to saytext2 as required by the new engine update to prevent errors and spam in the console. Technically, this is a usermsg library issue - but it will fix the problem until a library update is shipped with the official release. I intend on committing to the ES usermsg library at some point as well.
  • ./scripts/included/gg_friendlyfire/gg_friendlyfire.py:
    * Removed the notify flag from mp_friendlyfire temporarily to combat crashes.
  • ./core/addons/__init__.py
    * Changed some es_load output stuff
    * Fixed the syntax warning
  • ./core/events/__init__.py
    * Fixed a syntax warning
  • ./core/menus/leader_menu.py
    * Fixed a syntax warning
GunGame Developer

If you ask something stupid before reading the instructions that are likely included in the files, I will make fun of you for being a lazy idiot.
Monday

Site Admin
Site Admin
User avatar
 
Posts: 97
Joined: Sat Feb 14, 2009 1:51 am

Postby XE_ManUp » Tue Jul 13, 2010 5:50 am

GunGame51 Updated!
Version: 5.1.477
Updated on: 2010-07-13 00:12:27
Version Notes:
Revision: 477
./core/__init__.py:
* Corrected a slight bug that I created that said files were deleted when they weren't.

./core/addons/__init__.py:
* Updated the gungame_info version check to be slightly more efficient.
- It was checking to make sure we only scanned *.py files, which is the only thing that get_file_list() returns, anyway.
- It was making sure that we did not look in the ./core/events/data directory, which contains no *.py files.
* Removed white space.

Revision: 476
./core/__init__.py:
* Moved old file deletion code from gungame51.py to this file, which executes before GunGame is fully initialized.
* Added "import es".
* Changed "ServerVar" to "es.ServerVar".
* Removed "from es import ServerVar".

./core/weapons/__init__.py:
* Changed "getPlayerList" to "getUseridList".

gungame51.py:
* Removed old file deletion code and imports - moved to ./core/__init__.py.

./scripts/included/gg_friendlyfire/gg_friendlyfire.py:
* Changed "getPlayerList" to "getUseridList".

./scripts/included/gg_noblock/gg_noblock.py:
* Changed "getPlayerList" to "getUseridList".

./scripts/included/gg_warmup_round/gg_warmup_round.py:
* Changed "getPlayerList" to "getUseridList" in some cases.

Revision: 475
./scripts/included/gg_deathmatch/gg_deathmatch.py:
* Added "import gamethread".
----
Modified : /trunk/cstrike/addons/eventscripts/gungame51/scripts/included/gg_deathmatch/gg_deathmatch.py

Revision: 474
gungame51.py:
* Removed the es_flags removal of the notify flag for the "nextlevel" CVAR.

Revision: 473
./core/addons/__init__.py
* Optimized the gungame_info function

./gungame51.py
* Removed unnecessary delay

Revision: 472
All:
* Updated versioning to automatically save 5.1.<rev> in the "info.version" AddonInfo() instance.

Revision: 471
./scripts/included/gg_friendlyfire/gg_friendlyfire.py:
* Testing versioning theory.

Revision: 470
gg_knife_pro.py, gg_multi_level.py:
* Reverted to previous versions, as it is no longer necessary to delay events due to an upcoming EventScripts release.

Revision: 469
./core/events/__init__.py:
* Removed delays on event firing.

gungame51.py, gg_deathmatch.py, gg_friendlyfire.py, gg_warmup_round.py:
* Removed es_flags commands that removed the notify flag.

NOTE: An upcoming EventScripts release will render these temporary fixes as unnecessary. Simply trying to stay ahead of the curve.

Revision: 468
Updated language file with French translations and updated the GGThanks for a few more languages.

Revision: 467
Updated language file: gungame51/gungame.ini
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Postby XE_ManUp » Sat Jul 24, 2010 3:24 pm

GunGame51 Updated!
Version: 5.1.478
Updated on: 2010-07-24 10:24:10
Version Notes:
./core/addons/__init__.py:
  • Replaced "os.*" methods with "path.*" methods.
  • Added a caching system for get_valid_addons():
    - We were reading from disk and iterating the directory each time this was called. It was called quite a bit, and this should improve loading performance.
    - The first time get_valid_addons() is called, the directory is read and cached. Any subsequent calls to get_valid_addons() return the cached results.
  • Added caching for AddonManager().get_addon_type().
  • Added caching for AddonManager().addon_exists().

./core/cfg/__init__.py:
  • Fixed config loading to fire in the order "main -> included -> custom" as was originally intended. It seemed that in some cases, custom addons were loaded before included addons.
  • Replaced "os.*" methods with "path.*" methods.
  • Added config types caching for get_config_list():
    - We were reading from disk and iterating the directory each time this was called. It was called quite a bit, and this should improve loading performance. I created a new function, __cache_configs(), to cache the config list on load of GunGame.

./core/messaging/__init__.py:
  • Removed unused import: "import os.path".

./core/weapons/__init__.py:
  • Replaced "os.*" methods with "path.*" methods.
  • Reading the weapon order file now uses a "with statement".

./scripts/included/gg_weapon_order_random/gg_weapon_order_random.py:
  • Removed unused import: "import os.path".
  • Replaced "os.*" methods with "path.*" methods.

:arrow: This update was made with the hopes that it will improve the loading sequence and reduce stress on servers when loaded via the autoexec.cfg.
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Re: GunGame 5.1 Updates

Postby XE_ManUp » Tue Jul 27, 2010 2:08 am

GunGame51 Updated!
Version: 5.1.480
Updated on: 2010-07-26 21:10:54
Version Notes:
./scripts/included/gg_noblock/gg_noblock.py:
  • Fixed a bug to where no block would attempt to be set on players that had not yet joined a team.

./core/cfg/__init__.py:
  • Added a very slight delay to execute the configs created by cfglib.
    • On Linux, the adding of the "notify" flag and the config execution happened at the same time, and the notify flag would not trigger the event when the config was executed, because it had not taken effect yet.
    • Special thanks to PabloP for allowing me the use of his Linux server for troubleshooting this issue.
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Re: GunGame 5.1 Updates

Postby XE_ManUp » Tue Jul 27, 2010 8:16 am

GunGame51 Updated!
Version: 5.1.481
Updated on: 2010-07-27 03:19:52
Version Notes:
./core/weapons/__init__.py:
  • Added "self.echo()" to the restart_round() method.

gungame51.py:
  • Added langstring debug messages for initial load and loading of configs.
  • Changed the delay for completeInitialize() to 0.1.
  • Removed setting of the weapon order from the completeInitialize() function.
    • This was raising exceptions due to the delay in executing configs in the previous revision, but was not caught until now.
    • Event server_cvar picks up on this, and sets the weapon order, so the removal will not effect anything.
  • Commented out some debug lines.
  • Deleted the commented out PriorityAddon() code.
XE_ManUp

Site Admin
Site Admin
 
Posts: 662
Joined: Sat Sep 06, 2008 3:36 am

Postby satoon101 » Wed Oct 20, 2010 5:51 am

GunGame51 Updated!
Version: 5.1.488
Updated on: 2010-10-20 00:38:28
Version Notes:
    ./scripts/included/gg_spawn_protect/gg_spawn_protect.py:
    • fixed occasional error with getPlayer().isdead

    Added settings for Hostage Objectives:
    • ./scripts/included/gg_hostage_rescued_levels
    • ./scripts/included/gg_hostage_killed_punish
    • ./scripts/included/gg_hostage_stopped_levels


    ./core/players/__init__.py:
    • fixed error that caused bots to not start any round with the bomb

    ./gungame51.py:
    • fixed level info hudhint showing 1 / 1 kills
    • now shows x / y kills only if required kills is greater than 1

    ./addons/eventscripts/gungame51/core/events/__init__.py:
    • properly identified recentWinner as a global to stop the startup warning
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Fri Oct 29, 2010 2:54 am

GunGame51 Updated!
Version: 5.1.492
Updated on: 2010-10-28 21:52:18
Version Notes:
    ./core/weapons/__init__.py
    • Fixed an issue with #random and #reversed weapon orders that caused them to
      not keep multiple knife and hegrenade levels
    • Fixed a couple errors in variable names

    ./gungame51.py
    • Fixed bug that caused gg_nade_bonus weapon_order to be randomized every
      es_map_start instead of the gungame weapon_order

    ./core/sound/__init__.py
    • Fixed bug that caused commented lines (lines that start with //) to be chosen
      for random sounds
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Mon Dec 20, 2010 6:30 am

GunGame51 Updated!
Version: 5.1.496
Updated on: 2010-12-20 00:20:02
Version Notes:

    5.1.493:
      ./gungame51.py
      • Updated to send user specific language strings for Current_Level_HudHint on
        spawn/levelup

    5.1.494:
      ./gungame51.py
      • Now adds gungame to sv_tags value

      ./scripts/included/gg_warmup_round/gg_warmup_round.py
      • Fixed issue when unloading other Included Addons
      • This caused an error when those addons had already been unloaded

    5.1.495:
      ./gungame51.py
      • Changed the code around adding/removing gungame from sv_tags

    5.1.496:
    • Updated language files with Russian translations (thanks to Danfocus for the
      translations)
        ./gungame.ini
        ./scripts/included/gg_hostage_killed_punish/gg_hostage_killed_punish.ini
        ./cfg/gungame51/translations/gg_save_level.ini
        ./cfg/gungame51/translations/gg_save_winners.ini

      ./gungame51.py
      • Added token to GunGame_Load message for version number

      ./scripts/included/gg_map_vote/gg_map_vote.py
      • Added missing gamethread import
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Fri Jan 07, 2011 5:11 am

GunGame51 Updated!
Version: 5.1.500
Updated on: 2011-01-06 22:44:27
Version Notes:

    5.1.497:
      ./gungame51.py
      • Updated info.Website now that the forum is on a new domain
      • Added server console messages for the rest of the initialization process
      • Now loads main, included, and custom configs separately (due to custom
        addons being a separate part of the initialization process)
      • Now executes load_weapon_orders (due to printing out the console messages
        when parsing the weapon order files at the proper place in the initialization)
      • Moved make_downloadable (due to printing out the console messages when
        parsing the sound pack files at the proper place in the initialization)
      • Now executes set_weapon_order in completeInitialize so that the weapon
        order will always print out when loading GunGame

      ./gungame.ini
      • Modified a few of the strings for removing Warmup from the initialization
        process
      • Added hostage level up restriction messages

      ./core/weapons/__init__.py
      • Added server console messages when parsing weapon order files
      • Removed load_weapon_orders from being executed on import
        • Now executed directly inside gungame.py to show server console
          messages at the correct time during loading

      Added server console messages when registering default GunGame commands
        ./core/menus/leader_menu.py
        ./core/menus/level_menu.py
        ./core/menus/rank_menu.py
        ./core/menus/score_menu.py
        ./core/menus/weapons_menu.py
        ./core/menus/winners_menu.py

      ./core/sound/__init__.py
      • Added server console messages when first parsing sound pack files

      ./core/messaging/__init__.py
      • Added "#default" to the beginning of es.tell messages
      • This was due to messages being sent in "only" default color

      ./scripts/included/gg_bomb_defused_levels/gg_bomb_defused_levels.py
      • Added sending messages to users that they cannot skip knife/nade level

      ./scripts/included/gg_bomb_exploded_levels/gg_bomb_exploded_levels.py
      • Added sending messages to users that they cannot skip knife/nade level

      ./scripts/included/gg_hostage_rescued_levels/gg_hostage_rescued_levels.py
      • Added sending messages to users that they cannot skip knife/nade level

      ./scripts/included/gg_hostage_stopped_levels/gg_hostage_stopped_levels.py
      • Added sending messages to users that they cannot skip knife/nade level

    • Minor updates to many files to follow a standard

    5.1.498:
      ./gungame51.py
      • Moved es.loadevents() from completeInitialize to initialize
      • An error occurred on first load when events had not been loaded in time


      Fixed an error when sending messages about not skipping knife/nade level
        ./scripts/included/gg_bomb_defused_levels/gg_bomb_defused_levels.py
        ./scripts/included/gg_bomb_exploded_levels/gg_bomb_exploded_levels.py
        ./scripts/included/gg_hostage_rescued_levels/gg_hostage_rescued_levels.py
        ./scripts/included/gg_hostage_stopped_levels/gg_hostage_stopped_levels.py

      ./scripts/included/gg_turbo/gg_turbo.py
      • Added in a possible fix for the "Player has left server" error

    5.1.499:
      ./gungame51.py
      • Added a small delay before forcing the weapon order to print out (which is
        for when re-loading GunGame)
      • The values of gg_weapon_order_file and gg_weapon_order_sort_type were
        still 0 when this was called if GunGame is loaded on server startup

    5.1.500:
      ./gungame51.py
      • gg_unload now fires

      ./scripts/included/gg_warmup_round/gg_warmup_round.py
      • Fixed error that was caused by unloading either gg_deathmatch or
        gg_elimination and loading the other
      • It was caused due to the shared dependencies
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Thu Jan 13, 2011 4:35 am

GunGame51 Updated!
Version: 5.1.503
Updated on: 2011-01-12 22:27:04
Version Notes:

    ./gungame51.py
    • Changed the way we forced the weapon order to print, since it was causing
      errors on some servers

    ./core/weapons/__init__.py
    • Changed item.name to item.namebase when parsing weapon orders
    • This way, it doesn't carry the .txt extension when first being parsed
    • Before, it would be parsed again, if GunGame needed to use that file
    • Including the .txt extension was causing KeyErrors on some servers
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Tue Mar 08, 2011 9:48 pm

GunGame51 Updated!
Version: 5.1.506
Updated on: 2011-03-08 15:35:28
Version Notes:

    5.1.504:
      ./core/weapons/__init__.py
      • changed coding around printing Weapon Order

      ./gungame.ini
      • Organized file
      • Added [WeaponOrder:Echo] and modified [WeaponOrder:Echo:TableColumns] for
        printing out Weapon Order

      ./scripts/included/gg_deathmatch/gg_deathmatch.py
      • Added dbgmsg for Loaded in load

    5.1.505:
      ./core/weapons/__init__.py
      • minor changes related to printing weapon order

      ./gungame.ini
      • Removed strings that are now in Included Addons
      • minor changes related to printing weapon order

    • Added new Included Addons ini files. Moved related strings into their
      separate ini files.
        ./scripts/included/gg_bomb_defused_levels/gg_bomb_defused_levels.ini
        ./scripts/included/gg_bomb_exploded_levels/gg_bomb_exploded_levels.ini
        ./scripts/included/gg_hostage_rescued_levels/gg_hostage_rescued_levels.ini
        ./scripts/included/gg_hostage_stopped_levels/gg_hostage_stopped_levels.ini
        ./scripts/included/gg_prop_physics/gg_prop_physics.ini

    • Added translations to info for addons
        ./scripts/included/gg_bomb_defused_levels/gg_bomb_defused_levels.py
        ./scripts/included/gg_bomb_exploded_levels/gg_bomb_exploded_levels.py
        ./scripts/included/gg_hostage_rescued_levels/gg_hostage_rescued_levels.py
        ./scripts/included/gg_hostage_stopped_levels/gg_hostage_stopped_levels.py
        ./scripts/included/gg_prop_physics/gg_prop_physics.py

    5.1.506:
      ./core/cfg/__init__.py
      • Replaced cfglib's .execute() with es.mexec until next ES release

      ./gungame.ini
      • Added Addon Loaded and Addon Unloaded strings

      ./gungame51.py
      • Changed gg_addon_loaded and gg_addon_unloaded dbgmsg's to use langstring
      • Removed check on gg_multikill_override that caused multikill not to be
        reconfigured when set to 0
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Sun Apr 17, 2011 1:01 am

GunGame51 Updated!
Version: 5.1.509
Updated on: 2011-04-16 19:51:23
Version Notes:

    5.1.508:
      ./core/messaging/__init__.py
      • Added support for #darkgreen (or \x05 ) color in chat messages

      ./core/weapons/__init__.py
      • Fixed an issue with gg_multikill_override
      • Now stores backup values for the default values for each level's multikill
        per weapon order

      ./gungame51.py
      • If there is an error during the loading of GG51, it now unloads properly

    • Edited some _config.py files to match a standard

    5.1.509:
      ./gungame51.py
      • Added missing global statement

      ./core/cfg/__init__.py
      • Reverted es.mexec() back to cfglib's .execute()

      ./core/cfg/files/gg_en_config.py
      • Corrected the path shown in 2 config files
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby satoon101 » Tue Apr 19, 2011 9:28 pm

GunGame51 Updated!
Version: 5.1.510
Updated on: 2011-04-19 16:12:03
Version Notes:

    5.1.510:
      ./core/events/__init__.py
      • Added new event gg_leader_disconnect

      ./core/events/data/es_gungame_events.res
      • Added gg_leader_disconnect to the events

      ./core/leaders/__init__.py
      • Remove sending messages for new leaders
      • Messages are now handled in the gg_leader_messages included addon
      • Added in firing gg_leader_disconnect when one of the current leaders disconnects

      ./core/weapons/__init__.py
      • Fixed multikill issue for hopefully the last time

      ./gungame.ini
      • Removed Leader change messages
      • Removed Level Info messages
      • Removed PlayerWon messages
      • All of these messages are now in their specific included addon

      ./gungame51.py
      • Removed sending HudHint Level Info to players
      • Level Info is now controlled by the included addon gg_level_info
      • Removed sending PlayerWon messages
      • PlayerWon messages are now controlled by the included addon gg_winner_messages

      ./scripts/included/gg_map_obj/gg_map_obj.py
      • Removed giving players a defuser, since this functionality is already in gungame51.py and the setting is in gg_en_config.cfg
      • Also, if giving defusers was only in gg_map_obj, whenever it is Disabled, no one would get defusers

    • Added 3 new included addons
        ./scripts/included/gg_leader_messages
        • Sends chat messages when there is a new leader
        ./scripts/included/gg_level_info
        • Sends hudhint for player's level info
        ./scripts/included/gg_winner_messages
        • Sends chat, toptext, and centermsg to all players when someone wins a round of GunGame

    • Changed many addons to first check the player's team (either es.getplayerteam or es_userteam) then to check getPlayer(userid).isdead
        ./gungame51.py
        ./scripts/included/gg_elimination/gg_elimination.py
        ./scripts/included/gg_noblock/gg_noblock.py
        ./scripts/included/gg_spawn_protect/gg_spawn_protect.py
        ./scripts/included/gg_warmup_round/gg_warmup_round.py

    • Changed all instances of es.createentitylist() to use es.getEntityIndexes()
        ./gungame51.py
        ./scripts/included/gg_hostage_stopped_levels/gg_hostage_stopped_levels.py
        • Also changed getPlayer(userid).handle to es.getplayerhandle(userid)
        ./scripts/included/gg_map_obj/gg_map_obj.py
        ./scripts/included/gg_multi_level/gg_multi_level.py
        • Also changed es.getplayerteam to use Event Variables
        ./scripts/included/gg_random_spawn/gg_random_spawn.py
        ./scripts/included/gg_spawnpoints/gg_spawnpoints.py

    • Other minor changes with no actual effect
        ./scripts/included/gg_multi_nade/gg_multi_nade.py
        ./scripts/included/gg_nade_bonus/gg_nade_bonus.py
        ./scripts/included/gg_turbo/gg_turbo.py
satoon101

Site Admin
Site Admin
 
Posts: 1055
Joined: Thu Oct 09, 2008 4:27 pm

Postby Warren » Sun May 22, 2011 5:24 am

GunGame51 Updated!
Version: 5.1.511
Updated on: 2011-05-22 00:22:26
Version Notes:
../addons/eventscripts/gungame51/scripts/included/gg_map_vote/gg_map_vote.py:
- Implemented maximum number of players for maps to come up in votes. Now you can either have no min or max, a min, or a min and a max range.

../cfg/gungame51/gg_vote_list.txt:
- Changed to show examples of max usage.
Warren

Site Admin
Site Admin
 
Posts: 772
Joined: Fri Sep 05, 2008 2:59 am
Location: Boston, MA
Xfire Name: WMA9000

Postby Warren » Sun May 22, 2011 5:27 pm

GunGame51 Updated!
Version: 5.1.512
Updated on: 2011-05-22 12:26:28
Version Notes:
../addons/eventscripts/gungame51/scripts/included/gg_map_vote/gg_map_vote.py:
* Fixed unexpected indent issue
Warren

Site Admin
Site Admin
 
Posts: 772
Joined: Fri Sep 05, 2008 2:59 am
Location: Boston, MA
Xfire Name: WMA9000

Postby Warren » Sun May 22, 2011 9:15 pm

GunGame51 Updated!
Version: 5.1.513
Updated on: 2011-05-22 16:14:52
Version Notes:
../addons/eventscripts/gungame51/scripts/included/gg_map_vote/gg_map_vote.py:
* Finally fixed syntax errors. (sorry, thought I had it working when testing)
Warren

Site Admin
Site Admin
 
Posts: 772
Joined: Fri Sep 05, 2008 2:59 am
Location: Boston, MA
Xfire Name: WMA9000

Next


Return to Announcements

Who is online

Users browsing this forum: No registered users and 14 guests

cron