Installation
From GunGame5 Documentation
(Difference between revisions)
(→Prerequisites) |
|||
Line 1: | Line 1: | ||
==Prerequisites== | ==Prerequisites== | ||
- | * [http://forums.eventscripts.com/viewtopic.php?f= | + | * [http://forums.eventscripts.com/viewtopic.php?f=128&t=40765 EventScripts (The latest revision)] |
* [http://forums.eventscripts.com/viewtopic.php?f=81&t=29657 Source Python Extensions (The latest revision)] | * [http://forums.eventscripts.com/viewtopic.php?f=81&t=29657 Source Python Extensions (The latest revision)] | ||
Line 13: | Line 13: | ||
## This folder will contain all the cfg files for turbo, deathmatch, knife pro, ect: <pre>/cfg/gungame51/included_addon_configs</pre> | ## This folder will contain all the cfg files for turbo, deathmatch, knife pro, ect: <pre>/cfg/gungame51/included_addon_configs</pre> | ||
# Restart your server after editing the new cfg files, or reload gungame51 by typing this rcon command into your client console:<pre>rcon es_reload gungame51</pre> | # Restart your server after editing the new cfg files, or reload gungame51 by typing this rcon command into your client console:<pre>rcon es_reload gungame51</pre> | ||
+ | |||
+ | ==Known Issues== | ||
+ | # The current version of EventScripts has a small error that will cause GunGame51 to not load properly: | ||
+ | ## Navigate to your servers '''../addons/eventscripts/_libs/python/cfglib.py''' file | ||
+ | ## Find the following line inside that file (line 106): <pre> es.mexec(self.cfgpath.replace(self.gamedir, '', 1))</pre> | ||
+ | ## Change that line to: <pre> es.mexec('..' + self.cfgpath.replace(self.gamedir, '', 1))</pre> | ||
+ | ## You must restart your server after making this change |
Revision as of 16:54, 16 November 2010
Prerequisites
Instructions
- Extract the zip file for GunGame5.1
- Upload the extracted contents to your server's game directory
For Counter-Strike: Source this would be orangebox/cstrike - Add
es_load gungame51
on a new line in your ../cfg/autoexec.cfg file. You may create this file if it does not exist. - Restart your server, or load GunGame 5.1 by typing this rcon command in your client console:
rcon es_load gungame51
- When GunGame 5.1 is loaded for the first time, it will generate configuration files in ../cfg/gungame51/
- Edit the newly appeared configuration files in ../cfg/gungame51/ to your likings
- This file can be used to load any GunGame specific server settings:
/cfg/gungame51/gg_server.cfg
- This folder will contain all the cfg files for turbo, deathmatch, knife pro, ect:
/cfg/gungame51/included_addon_configs
- This file can be used to load any GunGame specific server settings:
- Restart your server after editing the new cfg files, or reload gungame51 by typing this rcon command into your client console:
rcon es_reload gungame51
Known Issues
- The current version of EventScripts has a small error that will cause GunGame51 to not load properly:
- Navigate to your servers ../addons/eventscripts/_libs/python/cfglib.py file
- Find the following line inside that file (line 106):
es.mexec(self.cfgpath.replace(self.gamedir, '', 1))
- Change that line to:
es.mexec('..' + self.cfgpath.replace(self.gamedir, '', 1))
- You must restart your server after making this change