Jump to content

Jam [Bot]

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Jam [Bot]

  1. For information on how to set up a server, see this thread: viewtopic.php?f=117&t=71916

    Find your [uDKGame.ini] located in your [Config] folder. (e.g. C:\Program Files (x86)\Renegade X\UDKGame\Config\UDKGame.ini)

    Find the [uTGame.UTGame] section:

    [uTGame.UTGame]
    BotRatio=+1.0
    GoalScore=25
    bTournament=false
    bPlayersMustBeReady=false
    NetWait=15
    ClientProcessingTimeout=30
    RestartWait=30
    MinNetPlayers=1
    bWaitForNetPlayers=true
    LateEntryLives=1
    TimeLimit=20
    GameDifficulty=+5.0
    EndTimeDelay=4.0
    GameSpecificMapCycles=(GameClassName="Rx_Game",Maps=("CNC-Field","CNC-Walls_Flying","CNC-GoldRush","CNC-Whiteout","CNC-Islands","CNC-LakeSide","CNC-Mesa_ii"))
    bLogGameplayEvents=false
    

    We're going to edit the GameSpecificMapCycles key, and more specifically the Maps subkey which contains all the maps in the current rotation.

    To remove a map from the rotation, simply remove the entry from the map collection. To (re-)add a map to the rotation, add the map to the maps collection.

  2. In this topic you will find instructions on how to set up your own Renegade X server.

    Things you need:

    - The latest Renegade X release, which you can find here: http://renegade-x.com/download

    Step 1: Download and install the latest Renegade X release.

    Download the latest build from the following link:

    http://renegade-x.com/download

    Verify that the filehash of your downloaded file equals with the following hash:

    • c20b6c4ed687554ec6fb3178d4529a8c42d8f0ef

    The installation is pretty straight forward, double-click the downloaded executable file and follow the instructions on your screen.

    step1.png

    Hit [Next]. On the next screen you will be asked which components should be installed, check the [server profile] box and hit [Next].

    step2.png

    Hit [Next]. You will be asked where to install the Renegade X server. Specify your installation folder and hit [Next] and [Next] again. [Wait until the Renegade X server has been installed...]

    step3.png

    On the next screen, uncheck [Play Renegade X] and [Create Desktop Shortcut] - you won't be needing these for your server.

    Click [Finish] and browse to your Renegade X server installation folder.

    Step 2: Starting your server.

    In the root of your installation folder, create a new file called server.bat and edit it with a text editor. Populate your server.bat with the text found below and change the variables with your values:


    • The path to your server installation. (e.g. C:\RenXGame\)
      Explains itself, used for adminlogin console command. (e.g. AdminPassword=password123)
      Tells the engine to use a specific port number. (e.g. -port=1337)
      • Do NOT use 7778, as it conflicts with another UDK port.

    @echo off
    cd /d "\Binaries\Win32"
    start UDK.exe server CNC-Field?AdminPassword=?maxplayers= -port=
    

    Here's an example server.bat with filled in values:

    @echo off
    cd "C:\RenXGame\Binaries\Win32"
    start UDK.exe server CNC-Field?AdminPassword=password123?maxplayers=40 -port=7777
    

    You can find more command line arguments right here: https://udn.epicgames.com/Three/Command ... ments.html

    Save your server.bat file and run it. You're server is now up and running!

    • More tutorials:
      How to set up a map rotation:
    viewtopic.php?f=117&t=71917

×
×
  • Create New...