-
Posts
2,133 -
Joined
-
Last visited
-
Days Won
66
Content Type
Profiles
Forums
Events
Downloads
Everything posted by LFA
-
i think search is only working for the new posts and not the ones we imported from phpbb. maybe there is an index function or something like that in the admin side. i'll check
-
for the query to work you have to enable gamespy in server.ini with the following values: GameType = GameSpy Port = 4848 GameSpyGamePort = 4848 GameSpyQueryPort = 25300 There is another problem. Renegadeserver.exe launches a different process named server.dat. With the current version, when you stop the service it only stops Renegadeserver.exe so the server is left running. I'll try to get this fixed in the next update.
-
Create a support ticket with the login for the control panel, master and remote servers so I can have a look at your configuration.
-
does your CS installation zip or folder have this file: cstrike\cfg\server.cfg
-
some configuration files that have been posted have the information needed to support some mods. All you would need to do is add the actual files. If a configuration file doesn't have the mods you want, you can easily add them. Just import one that does and look at how it's done. For example look at the configuration file for Enemy Territory. I think it has 2 or 3 mods configured, including one that creates a new command line.
-
This file is for TCAdmin build 1.0.2039.40553 and greater. **Please note this is for licensed Ventrilo only. DO NO use the free version of Ventrilo with this add-on** Updated to remove an invalid character. Ventrilo.txt
-
If yours has a different GAMEID it will create a new one. If it has the same GAMEID it will be updated. If you want to update the configuration replace <GAMEID>TC4031046603668</GAMEID> With <GAMEID>YOUR GAME ID</GAMEID> Do a replace all in notepad because it repeated more than once
-
if you want to request a script Post your request in the 'Requests' topic if you want to share your scripts Include a short description of what it does in the post's subject. Include detailed instructions in the message body if needed. The script file must be placed between code tags, for example: [code]Your script here[/code] so it looks like this when posted: Your script here To save and execute the script file Just copy the text and create a text file with extension .tcascript. Copy the text to this file and save. To execute just double click on the file. If you have never executed a .tcascript just run TCAdminScripting.exe located in the Monitor folder so the extension gets registered.
-
Just some examples so you can get started. This script gets a list of services installed on the current server and displays them in the console. It can easily be modified to restart each service. Visual Basic and C# included. To have the console close automatically just change <waitForUserAction value="true"/> to <waitForUserAction value="false"/> Visual Basic .NET <tcascript> <language name="VB" /> <waitForUserAction value="true"/> <scriptCode><![CDATA[ Imports System Public Class Test Public Shared Sub Main() Console.WriteLine("Getting a list of services on this server...") 'Get this server's id dim thisServerId as String = TCAdminSDK.Info.GetThisServerId() 'Get a list of all services on this server Dim services() As TCAdminSDK.Objects.Service = TCAdminSDK.Objects.Service.GetServicesByServerId(t hisServerId) for each s as TCAdminSDK.Objects.Service in services 'Write the service id Console.WriteLine(s.ServiceID) next Console.WriteLine("Done. Press any key to continue.") End Sub End Class ]]></scriptCode> </tcascript> C# <tcascript> <language name="C#" /> <waitForUserAction value="true"/> <scriptCode><![CDATA[ using System; public class Test{ public static void Main(){ Console.WriteLine("Getting a list of services on this server..."); //Get this server's id string thisServerId = TCAdminSDK.Info.GetThisServerId(); //Get a list of all services on this server TCAdminSDK.Objects.Service[] services; services = TCAdminSDK.Objects.Service.GetServicesByServerId(t hisServerId, null); foreach(TCAdminSDK.Objects.Service s in services){ //Write the service id Console.WriteLine(s.ServiceID); } Console.WriteLine("Done. Press any key to continue."); } } ]]></scriptCode> </tcascript>
-
if it doesn't use a command line just put . as the command line to bypass the validation
-
Configure the service to interact with the desktop so you can see the game's console and see what's wrong. If counter strike works natural selection should work too.
-
maybe this will help http://www.farcry.ca/Dedicated%20server%20guide.htm
-
<?xml version="1.0" standalone="yes"?> <GAME> <GAMEID>TC7636752681755</GAMEID> <NAME>Ravenshield</NAME> <SHORTNAME>RVS</SHORTNAME> <DEFAULTPORT>7777</DEFAULTPORT> <DEFAULTQUERYPORT>8777</DEFAULTQUERYPORT> <DEFAULTRCONPORT>7777</DEFAULTRCONPORT> <FILESFOLDER>RavenShield</FILESFOLDER> <RELATIVEEXECUTABLE>/System/UCC.exe</RELATIVEEXECUTABLE> <RELATIVEWORKINGDIRECTORY>/system/</RELATIVEWORKINGDIRECTORY> <RELATIVEUSERFILES>/</RELATIVEUSERFILES> <INSTALLEDPATCH /> <FILEMAN_ACCESS>True</FILEMAN_ACCESS> <FTP_ACCESS>True</FTP_ACCESS> <IS_VOICE_SERVER>False</IS_VOICE_SERVER> <DEFAULTCMDLINE>server multihome=%serverip% port=%serverport% ini=RavenShield.ini log=Server.log</DEFAULTCMDLINE> <DEFAULTCUSTOMCMDLINE>server multihome=%serverip% port=%serverport% log=Server.log %usercmdline%</DEFAULTCUSTOMCMDLINE> <PRIVATECMDLINE>server multihome=%serverip% port=%serverport% ini=RavenShield.ini log=Server.log</PRIVATECMDLINE> <PRIVATECUSTOMCMDLINE>server multihome=%serverip% port=%serverport% log=Server.log %usercmdline%</PRIVATECUSTOMCMDLINE> <PBFOLDER /> <PBURL /> <STEAMGAMETYPE /> <PORTINCREMENT>1</PORTINCREMENT> <GAMEPORTEXPRESSION /> <QUERYPORTEXPRESSION /> <RCONPORTEXPRESSION /> <STOPDELAY>3</STOPDELAY> <CUSTOMPORT1>0</CUSTOMPORT1> <CUSTOMPORT2>0</CUSTOMPORT2> <CUSTOMPORT3>0</CUSTOMPORT3> <CUSTOMPORT4>0</CUSTOMPORT4> <CUSTOMPORT5>0</CUSTOMPORT5> <CUSTOMPORT1EXPRESSION /> <CUSTOMPORT2EXPRESSION /> <CUSTOMPORT3EXPRESSION /> <CUSTOMPORT4EXPRESSION /> <CUSTOMPORT5EXPRESSION /> <OS>1</OS> <ONLYDEFAULTPORT>False</ONLYDEFAULTPORT> <INTERACTDESKTOP>False</INTERACTDESKTOP> <INSTALLSCRIPT /> <UNINSTALLSCRIPT /> <FORCE_FTP_PATH /> <START_CPU_0>False</START_CPU_0> <COMPATIBILITY>1000</COMPATIBILITY> <COMMANDLINEPARAMETERS> <COMMANDLINEPARAMETER> <GAMEID>TC7636752681755</GAMEID> <CANSETVALUE>False</CANSETVALUE> <COMMAND>ini=ServerCOOP.ini</COMMAND> <DENYCHARS /> <DESCRIPTION>Exec ServerCOOP.ini</DESCRIPTION> <ENCLOSEQUOTES>False</ENCLOSEQUOTES> <EQUALSIGN /> <ORDER>1</ORDER> <SPACEAFTERINPUT>True</SPACEAFTERINPUT> <SPACEAFTERSIGN>False</SPACEAFTERSIGN> <SPACEBEFORECOMMAND>True</SPACEBEFORECOMMAND> <SPACEBEFORESIGN>True</SPACEBEFORESIGN> <USERACCESS>True</USERACCESS> </COMMANDLINEPARAMETER> <COMMANDLINEPARAMETER> <GAMEID>TC7636752681755</GAMEID> <CANSETVALUE>False</CANSETVALUE> <COMMAND>ini-ServerAdver.ini</COMMAND> <DENYCHARS /> <DESCRIPTION>Exec ServerAdver.ini</DESCRIPTION> <ENCLOSEQUOTES>False</ENCLOSEQUOTES> <EQUALSIGN /> <ORDER>2</ORDER> <SPACEAFTERINPUT>True</SPACEAFTERINPUT> <SPACEAFTERSIGN>False</SPACEAFTERSIGN> <SPACEBEFORECOMMAND>True</SPACEBEFORECOMMAND> <SPACEBEFORESIGN>True</SPACEBEFORESIGN> <USERACCESS>True</USERACCESS> </COMMANDLINEPARAMETER> <COMMANDLINEPARAMETER> <GAMEID>TC7636752681755</GAMEID> <CANSETVALUE>True</CANSETVALUE> <COMMAND>ini=Custom.ini</COMMAND> <DENYCHARS /> <DESCRIPTION>User Defined ini</DESCRIPTION> <ENCLOSEQUOTES>False</ENCLOSEQUOTES> <EQUALSIGN /> <ORDER>3</ORDER> <SPACEAFTERINPUT>True</SPACEAFTERINPUT> <SPACEAFTERSIGN>False</SPACEAFTERSIGN> <SPACEBEFORECOMMAND>True</SPACEBEFORECOMMAND> <SPACEBEFORESIGN>True</SPACEBEFORESIGN> <USERACCESS>True</USERACCESS> </COMMANDLINEPARAMETER> </COMMANDLINEPARAMETERS> <DEFAULTCONFIGFILES> <CONFIGFILE> <GAMEID>TC7636752681755</GAMEID> <CONTENTS>[Engine.R6ServerInfo] MaxPlayers=%slots% NbTerro=0 RoundTime=240 BetweenRoundTime=45 BombTime=45 CamFirstPerson=True CamThirdPerson=True CamFreeThirdP=True CamGhost=True CamFadeToBlack=False CamTeamOnly=True UsePassword=False AllowArmPatch=False LoudFoot=False ShowNames=True InternetServer=True FriendlyFire=True Autobalance=True TeamKillerPenalty=True AllowRadar=True ServerName=%hostname% GamePassword=%privatepassword% AdminPassword=%rconpassword% MOTD= RoundsPerMatch=10 ForceFPersonWeapon=True UseAdminPassword=False DiffLevel=2 DedicatedServer=True AIBkp=False RotateMap=False SpamThreshold=5.000000 ChatLockDuration=15.000000 VoteBroadcastMaxFrequency=15.000000 [Engine.R6MapList] GameType[0]=R6Game.R6TeamBomb GameType[1]=R6Game.R6HostageRescueAdvGame GameType[2]=R6Game.R6TeamBomb GameType[3]=R6Game.R6TeamDeathMatchGame GameType[4]=R6Game.R6EscortPilotGame GameType[5]=R6Game.R6DeathMatch GameType[6]=R6Game.R6TeamBomb GameType[7]=R6Game.R6EscortPilotGame GameType[8]=R6Game.R6HostageRescueAdvGame GameType[9]=R6Game.R6TeamBomb GameType[10]=R6Game.R6TeamDeathMatchGame GameType[11]=R6Game.R6TeamDeathMatchGame GameType[12]=R6Game.R6DeathMatch GameType[13]=R6Game.R6TeamBomb GameType[14]=R6Game.R6TeamBomb GameType[15]=R6Game.R6TeamDeathMatchGame GameType[16]=R6Game.R6DeathMatch GameType[17]=R6Game.R6EscortPilotGame GameType[18]= GameType[19]= GameType[20]= GameType[21]= GameType[22]= GameType[23]= GameType[24]= GameType[25]= GameType[26]= GameType[27]= GameType[28]= GameType[29]= GameType[30]= GameType[31]= Maps[0]=Airport Maps[1]=Alpines Maps[2]=Bank Maps[3]=Garage Maps[4]=Import_Export Maps[5]=Island_Dawn Maps[6]=MeatPacking Maps[7]=Mountain_High Maps[8]=Oil_Refinery Maps[9]=Parade Maps[10]=Peaks Maps[11]=Penthouse Maps[12]=Presidio Maps[13]=Prison Maps[14]=Shipyard Maps[15]=Streets Maps[16]=Training Maps[17]=Warehouse Maps[18]= Maps[19]= Maps[20]= Maps[21]= Maps[22]= Maps[23]= Maps[24]= Maps[25]= Maps[26]= Maps[27]= Maps[28]= Maps[29]= Maps[30]= Maps[31]= </CONTENTS> <DESCRIPTION>Server.ini</DESCRIPTION> <DISPLAYNAME>server.ini</DISPLAYNAME> <RELATIVEPATH>/System/server.ini</RELATIVEPATH> <ALLOWEDITWHENFMDISABLED>False</ALLOWEDITWHENFMDISABLED> <EDITOR_CONTENTS /> </CONFIGFILE> </DEFAULTCONFIGFILES> <RCONCOMMANDS> <RCONCOMMAND> <GAMEID>TC7636752681755</GAMEID> <RCON_COMMAND>Kick</RCON_COMMAND> <DESCRIPTION>Kicks Player by player name</DESCRIPTION> <FULL_COMMAND>kick "player name"</FULL_COMMAND> <IS_KICK_COMMAND>1</IS_KICK_COMMAND> <IS_BAN_COMMAND>0</IS_BAN_COMMAND> </RCONCOMMAND> <RCONCOMMAND> <GAMEID>TC7636752681755</GAMEID> <RCON_COMMAND>ban</RCON_COMMAND> <DESCRIPTION>Bans Player by player name</DESCRIPTION> <FULL_COMMAND>ban "player name"</FULL_COMMAND> <IS_KICK_COMMAND>0</IS_KICK_COMMAND> <IS_BAN_COMMAND>1</IS_BAN_COMMAND> </RCONCOMMAND> <RCONCOMMAND> <GAMEID>TC7636752681755</GAMEID> <RCON_COMMAND>restartmatch</RCON_COMMAND> <DESCRIPTION> Ends the current game and restarts the map</DESCRIPTION> <FULL_COMMAND>restartmatch</FULL_COMMAND> <IS_KICK_COMMAND>0</IS_KICK_COMMAND> <IS_BAN_COMMAND>0</IS_BAN_COMMAND> </RCONCOMMAND> <RCONCOMMAND> <GAMEID>TC7636752681755</GAMEID> <RCON_COMMAND>restartround</RCON_COMMAND> <DESCRIPTION>End only the round (all statistics remain)</DESCRIPTION> <FULL_COMMAND>restartround</FULL_COMMAND> <IS_KICK_COMMAND>0</IS_KICK_COMMAND> <IS_BAN_COMMAND>0</IS_BAN_COMMAND> </RCONCOMMAND> </RCONCOMMANDS> </GAME>
-
Includes: - Wolfenstein Enemy Territory - TC:Elite 0.48 Mod - Enemy Territory Fortress Mod (Thanks to MBL) - ETPro - Upgrade to 2.60 Patch and downgrade to original - Configuration files for ET and Mods (Ready for automation) - rcon commands (enabled kick and ban from server administration page when punkbuster is enabled) - Enables the command line changer with +set fs_game, +exec and a few others - Added editors for server.cfg, campaigncycle.cfg, objectivecycle.cfg and stopwatchcycle.cfg See attached file. WOLFET.txt
-
I don't know Halo, but from the looks of it, the slots are handled inside the configuration file <div class="pre"><pre>sv_maxplayers %slots%</pre></div> I don't see where it configures the IP.
-
Taken from the online demo. It's just a basic configuration but you can add to it. Not sure if it still works since we configured this game like 3 months ago. <div class="pre"><pre><?xml version="1.0" standalone="yes"?> <GAME> <GAMEID>7</GAMEID> <NAME>Condition Zero</NAME> <SHORTNAME>CZ</SHORTNAME> <DEFAULTPORT>27015</DEFAULTPORT> <DEFAULTQUERYPORT>27015</DEFAULTQUERYPORT> <DEFAULTRCONPORT>27015</DEFAULTRCONPORT> <FILESFOLDER>CZERO</FILESFOLDER> <RELATIVEEXECUTABLE>hlds.exe</RELATIVEEXECUTABLE> <RELATIVEWORKINGDIRECTORY>/</RELATIVEWORKINGDIRECTORY> <RELATIVEUSERFILES>/czero/</RELATIVEUSERFILES> <INSTALLEDPATCH /> <DEFAULTCMDLINE>-game czero -console +ip %serverip% -port %serverport% +maxplayers %slots% +exec server.cfg +map de_aztec_cz</DEFAULTCMDLINE> <DEFAULTCUSTOMCMDLINE /> <PRIVATECMDLINE /> <PRIVATECUSTOMCMDLINE /> <COMPATIBILITY>16</COMPATIBILITY> <DEFAULTCONFIGFILES> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains AMXX Configuration Data</DESCRIPTION> <DISPLAYNAME>AMXX Configuration File</DISPLAYNAME> <RELATIVEPATH>/addons/amxmodx/configs/amxx.cfg</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains info for AMXX message of the day</DESCRIPTION> <DISPLAYNAME>AMXX MOTD File</DISPLAYNAME> <RELATIVEPATH>/addons/amxmodx/configs/conmotd.txt</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains info for AMXX map chooser plugin</DESCRIPTION> <DISPLAYNAME>AMXX Maps.ini File</DISPLAYNAME> <RELATIVEPATH>/addons/amxmodx/configs/maps.ini</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains AMXX Plugin Info</DESCRIPTION> <DISPLAYNAME>AMXX Plugins.ini File</DISPLAYNAME> <RELATIVEPATH>/addons/amxmodx/configs/plugins.ini</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains authorized AMXX users</DESCRIPTION> <DISPLAYNAME>AMXX Users.ini File</DISPLAYNAME> <RELATIVEPATH>/addons/amxmodx/configs/users.ini</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains .dll settings for CZ</DESCRIPTION> <DISPLAYNAME>Liblist.gam File</DISPLAYNAME> <RELATIVEPATH>/liblist.gam</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains the current mapcycle</DESCRIPTION> <DISPLAYNAME>Mapcycle File</DISPLAYNAME> <RELATIVEPATH>/mapcycle.txt</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS /> <DESCRIPTION>Contains the message of the day</DESCRIPTION> <DISPLAYNAME>Message of the Day File</DISPLAYNAME> <RELATIVEPATH>/motd.txt</RELATIVEPATH> </CONFIGFILE> <CONFIGFILE> <GAMEID>7</GAMEID> <CONTENTS>// Set the Host Name hostname "%hostname%" // Set the rcon password rcon_password "%rconpassword%" // Set Private Password sv_password "%privatepassword%" // Exec files on startup exec banned.cfg exec listip.cfg // Server Logging log on mp_logdetail 0 mp_logmessages 0 //URL Download Setting sv_downloadurl "" //Example: "http://www.mysite.com/cstrikefiles" // Server Variables mp_timelimit 30 mp_autokick 1 mp_autoteambalance 1 mp_c4timer 30 mp_flashlight 1 mp_footsteps 1 mp_forcechasecam 0 mp_freezetime 4 mp_friendlyfire 0 mp_hostagepenalty 2 mp_limitteams 2 mp_roundtime 5 mp_tkpunish 0 sv_restartround 0 sv_maxspeed 320 sv_proxies 1 allow_spectators 0 mp_startmoney 2400 mp_chattime 0 sv_allowupload 1 sv_voiceenable 1 sv_alltalk 0 pausable 0 decalfrequency 60 mp_falldamage 1 // cheat and fun modes sv_aim 0 sv_cheats 0 // Set Rates sv_maxrate 25000 sv_minrate 4500 sv_maxupdaterate 101 // Enable/Disable LAN mode sv_lan 0 // Contact & Geo sv_contact sv_region 0 </CONTENTS> <DESCRIPTION>Contains server configuration data</DESCRIPTION> <DISPLAYNAME>Server Config File</DISPLAYNAME> <RELATIVEPATH>/server.cfg</RELATIVEPATH> </CONFIGFILE> </DEFAULTCONFIGFILES> <RCONCOMMANDS /> </GAME></pre></div>
-
Taken from the online demo. <div class="pre"><pre><?xml version="1.0" standalone="yes"?> <GAME> <GAMEID>2</GAMEID> <NAME>Call of Duty</NAME> <SHORTNAME>COD</SHORTNAME> <DEFAULTPORT>28960</DEFAULTPORT> <DEFAULTQUERYPORT>28960</DEFAULTQUERYPORT> <DEFAULTRCONPORT>28960</DEFAULTRCONPORT> <FILESFOLDER>COD</FILESFOLDER> <RELATIVEEXECUTABLE>codmp.exe</RELATIVEEXECUTABLE> <RELATIVEWORKINGDIRECTORY>/</RELATIVEWORKINGDIRECTORY> <RELATIVEUSERFILES>/</RELATIVEUSERFILES> <INSTALLEDPATCH /> <DEFAULTCMDLINE>+set dedicated 2 +set net_ip %serverip% +set net_port %serverport% +set sv_maxclients %slots% +exec dedicated.cfg +map mp_brecourt</DEFAULTCMDLINE> <DEFAULTCUSTOMCMDLINE /> <PRIVATECMDLINE /> <PRIVATECUSTOMCMDLINE /> <COMPATIBILITY>17</COMPATIBILITY> <DEFAULTCONFIGFILES> <CONFIGFILE> <GAMEID>2</GAMEID> <CONTENTS>//Call of Duty Default Server Configuration File seta sv_hostname "%hostname%" // name of your server as listed in the in game browser seta g_privatepassword "Your_Private_slot_password" // set your private password here, works with sv_privateclients seta rconPassword "%rconpassword%" // set your rcon password seta g_log "server.log" // what you wish to name your log file seta protocol "1" seta sv_pure "1" // pure servers, will not allow anyone to play on your server with custom pk3 files loaded into their main dir. seta g_logsync "0" seta sv_gamespy "1" // 1 = your server will be listed on gamespy 0 = your server will not be listed on gamespy seta sv_floodprotect "1" seta g_forceteamspectate "1" seta sv_invulnerabletime "3" // time in seconds that you can not be killed when spawned seta g_teamkillwarn "3" // number of team kills before a warning is issued seta g_teamkillkick "5" // number of team kills before client is kicked seta g_teamswitchdelay "10" seta sv_maxping "250" // max ping a client can have to connect to your server, only checked when client is joining seta sv_maxrate "20000" // bandwidth your server is allowing for each client. Please see other guide on how to calculate this set g_inactivity "120" //Set time before an inactive client is kicked seta scr_motd "" // this will be displayed on the server menu when clients join seta sv_privateclients "" // leave blank unless you wish to have private clients on your server. seta g_password "%privatepassword%" // game password if you want a private server seta g_allowvote "0" //General Game Default Deion seta scr_allow_bar "1" //0 - disable weapon 1 - enable weapon seta scr_allow_bren "1" seta scr_allow_enfield "1" seta scr_allow_fg42 "1" seta scr_allow_kar98k "1" seta scr_allow_kar98ksniper "1" seta scr_allow_m1carbine "1" seta scr_allow_m1garand "1" seta scr_allow_mp40 "1" seta scr_allow_mp44 "1" seta scr_allow_nagant "1" seta scr_allow_nagantsniper "1" seta scr_allow_panzerfaust "1" seta scr_allow_ppsh "1" seta scr_allow_springfield "1" seta scr_allow_sten "1" seta scr_allow_thompson "1" seta scr_allow_vote "0" //Allow call voting seta scr_drawfriend "1" //Draws a team icon over teammates seta scr_forcerespawn "0" //Force respawning - DM & TDM seta scr_friendlyfire "2" //0 - off 1 - on 2 - reflect damage //Behind Enemy Lines Default Deion seta scr_bel_alivepointtime "10" //Number of seconds to get a point for staying alive as allied seta scr_bel_scorelimit "50" //Map score limit seta scr_bel_timelimit "20" //Map time limit, in minutes - 0 to 1440 //Deathmatch Default Deion seta scr_dm_scorelimit "250" //Map score limit seta scr_dm_timelimit "20" //Map time limit - 0 to 1440, in minutes //Retrieval Default Deion seta scr_re_graceperiod "15" //Time at round start where spawning and weapon choosing is still allowed, 0 - 60 in seconds seta scr_re_roundlength "10" //Map round length in minutes seta scr_re_roundlimit "5" //Max Number of round wins per map seta scr_re_scorelimit "0" //Map score limit seta scr_re_showcarrier "0" //Show the objective carrier on compass seta scr_re_timelimit "15" //Map time limit, in minutes - 0 to 1440 //Search and Destroy Default Deion seta scr_sd_graceperiod "15" //Time at round start where spawning and weapon choosing is still allowed, 0 - 60 seconds seta scr_sd_roundlength "10" //round length seta scr_sd_roundlimit "5" //Max Number of round wins per map seta scr_sd_scorelimit "0" //Map team score limit per map seta scr_sd_timelimit "15" //Map time limit, in minutes - 0 to 1440 //Team Deathmatch Default Deion seta scr_tdm_scorelimit "300" //Map score limit seta scr_tdm_timelimit "25" // time limit for your game in minutes // The rotation. set sv_mapRotation "gametype tdm map mp_brecourt gametype tdm map mp_carentan gametype tdm map mp_dawnville gametype tdm map mp_depot gametype tdm map mp_harbor gametype tdm map mp_hurtgen gametype tdm map mp_pavlov gametype tdm map mp_railyard gametype tdm map mp_rocket" -------------------------------------------------------------------------------- </CONTENTS> <DESCRIPTION>Contains server configuration settings</DESCRIPTION> <DISPLAYNAME>Server Configuration File</DISPLAYNAME> <RELATIVEPATH>/main/dedicated.cfg</RELATIVEPATH> </CONFIGFILE> </DEFAULTCONFIGFILES> <RCONCOMMANDS> <RCONCOMMAND> <GAMEID>2</GAMEID> <RCON_COMMAND>kick</RCON_COMMAND> <DESCRIPTION>Kicks a player</DESCRIPTION> <FULL_COMMAND>kick <playername></FULL_COMMAND> <IS_KICK_COMMAND>1</IS_KICK_COMMAND> <IS_BAN_COMMAND>0</IS_BAN_COMMAND> </RCONCOMMAND> <RCONCOMMAND> <GAMEID>2</GAMEID> <RCON_COMMAND>ban</RCON_COMMAND> <DESCRIPTION>Bans a player</DESCRIPTION> <FULL_COMMAND>ban <playername></FULL_COMMAND> <IS_KICK_COMMAND>0</IS_KICK_COMMAND> <IS_BAN_COMMAND>1</IS_BAN_COMMAND> </RCONCOMMAND> </RCONCOMMANDS> </GAME></pre></div>
-
thanks. You might want to add the kick and ban rcon commands so the user is able to kick and ban users using the server administration page. Yesterday's update added rcon support for half life 2 and counter strike source
-
I was just about to post that Also you can re-import the file and check the "update is exists" checkbox.
-
This forum is not for sharing game *.cfg files. In TCAdmin you are able to import and export the full configuration for a game. This file includes game details, command line parameters, rcon commands, configuration files, patches and mods. (automation, patch and mod zip files must be created separately) if you want to request a configuration file Your subject must include "Request: " and the game's name, for example: Request: UT2004 If your request is answered the post's subject will be changed by a mod to just include the game's name. if you want to share your configuration file The configuration file must not include any type of ads or mention your company in any way. Your subject must be the game's name, for example: UT2004 The configuration file must be attached, or placed between code tags, for example: [code]Your configuration[/code] so it looks like this when posted: <div class="pre"><pre>Your configuration</pre></div> or attached to the post how to use create a configuration file Log in to your TCAdmin control panel, go to system settings>supported games. Click on 'Generate' for the desired game and save the text file. how to use a posted configuration file Create a blank text file, copy the posted text (the one marked as 'code') and paste it on the text file. Log in to your TCAdmin control panel, go to system settings>supported games. Click on import. Select the text file and click on the lower import button. **Please note** These config files are meant to be used as templates. Just because you import one, it does not mean it will automatically work for your configuration. They should be used as a guideline on how to setup a specific game, not relied upon to get your games up and running!** In a nutshell, you need to know how to host the game and which files and command line variables are used.