Advanced Console Commands (UT)
From UnrealAdminWiki
Ever been stuck figuring out how to do something while another clan is calling you a noob admin ? Here's some help ;D .
Contents |
[edit]
Removing items
These commands are very useful for removing items without having to restart a match. The only downside is that the admin automatically suicides on a Linux server so you have to rejoin the game. If anyone knows of a fix for this then please share.
| Function | Console Command |
|---|---|
| Remove all bots | killall bots
|
| Remove Redeemer | killall warheadLauncher
|
| Remove the damage amplifier | killall udamage
|
| Remove the sheild belt | killall ut_shieldbelt
|
| Remove invisibility | killall ut_invisibility
|
| Remove Armour | killall armor2
|
| Remove Thigh Pads | killall thighpads
|
| Remove Jump Boots | killall ut_jumpboots
|
[edit]
Setting up the server
| Function | Console Command |
|---|---|
| Change the server's name to "[War] Spuds vs Cucumbers" | set Engine.GameReplicationInfo ServerName [War] Spuds vs Cucumbers
|
| Change the server password to trustno1 | admin set Engine.GameInfo GamePassword trustno1
|
| Sets max player slots to 10 | admin set Engine.GameInfo MaxPlayers 10
|
[edit]
Setting up Gametypes
| Function | Console Command |
|---|---|
| Set Tournament mode on | admin set Botpack.TeamGamePlus bTournament True
|
| Turn off translocator | admin set Botpack.TeamGamePlus bUseTranslocator False
|
| Set the max score to zero (score is in fact infinite) | admin set Botpack.TeamGamePlus GoalTeamScore 0
|
| Sets the time limit to 20 minutes | admin set Botpack.TeamGamePlus TimeLimit 20
|
| Sets weaponstay off | admin set Botpack.TeamGamePlus bMultiWeaponStay False
|
| Friendlyfire = 100% . Don't shoot your teammates ;D . | admin set Botpack.TeamGamePlus FriendlyFireScale 1.0
|
[edit]
Using a text file to configure a server in the blink of an eye
Instead of typing all of this by hand in the console, you can put it all in a text file as follows :
tdmconfig.txt
//========================================= // [smiley] server TDM configuration script //========================================= // // Please modify command parameters to suit the match to be played. // // Usage : // Drop in System and execute this file using bind : exec tdmconfig.txt // // More info about commands here - http://www.rex.ht.st/ //========================================= adminlogin nopasswordforyou admin set Engine.GameReplicationInfo ServerName gaming.34SP.com - [smiley] Clan Server admin set Engine.GameInfo GamePassword smileyowns admin set Engine.GameInfo MaxPlayers 10 admin set Botpack.TeamGamePlus bTournament False admin set Botpack.TeamGamePlus bUseTranslocator False admin set Botpack.TeamGamePlus GoalTeamScore 0 admin set Botpack.TeamGamePlus TimeLimit 20 admin set Botpack.TeamGamePlus bMultiWeaponStay False admin set Botpack.TeamGamePlus FriendlyFireScale 1.0 // admin killall botpack.ut_invisibility admin servertravel DM-Turbine?Game=Botpack.TeamGamePlus?mutator=Botpack.NoRedeemer adminlogout
Place the file in your system folder. You can then call the script up using this command :
exec tdmconfig.txt
P.S: It is advised to put your password in a text file such as this because some anticheat mods actually pick up the contents of binds.
