Mostly Harmless

Legacy:Running A UTV Proxy Server

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search

UTV 2003 is a modification for Unreal Tournament 2003 that allows live matches to be re-broadcasted via multiple spectator servers. If someone has a UT2003 server that he expects a lot of spectators to he can setup a UTV proxy on another machine and connect it to the game server. Then the spectators can join the UTV proxy instead of the game server. If he expects a really big crowd he can also connect additional proxies to the first one that spectators can then connect to. By chaining off proxies servers, CPU load and bandwidth requirements can be moved from the game server to an unlimited number of proxies.

This page describes in short how to use the UTV commandlet to run a UTV proxy server.

Please refer to the UTV readme for information about installing and configuring UTV.

Syntax

To run the UTV proxy with the default parameters use:

UCC UTV

To run the UTV proxy with other parameters than configured in UTV.ini use:

UCC UTV [serveraddress=<addr>] [serverport=<port>] [listenport=<port>]
   [primarypassword=<pass>] [normalpassword=<pass>] [joinpassword=<pass>]
   [delay=<seconds>] [maxclients=<num>] [seeall=<1/0>]

Parameters

All parameters are optional and override the values in UTV.ini.

serveraddress 
The IP address the proxy should connect to.
serverport 
The port on the server the proxy should connect to.
listenport 
The port the proxy should listen for clients on.
primarypassword 
The password needed to become primary client.
normalpassword 
The password clients need to join the proxy.
joinpassword 
The password the proxy will use when connecting to the game.
delay 
Number of seconds to delay the feed from the server.
maxclients 
The maximum number of clients allowed on this proxy.
seeall 
Determines if the proxy will use the SeeAll mode.

Related Topics