Quote Originally Posted by Bambu View Post
I have search for it like 2days, and i didn't found, how that i add maps to the server. Im getting tired of it. I even don't know what it all means and stuff..
I'd really rather not spoon feed you the information, when i can google your problems.

Create a cfg named objective.cfg put it in your etmain folder ( if we looked there we could already see the map configuration files anyways. obj.cfg/camp.cfg/stopwatch.cfg etc. )

Now we're going to open that cfg and we're going to add some information that we got from
silent mod
..
http://mygamingtalk.com/forums/topic...emy-territory/
Code:
set d1 "set g_gametype 2 ; map sw_oasis_b3 ; set nextmap vstr d2"
set d2 "set g_gametype 2 ; map mlb_daybreak ; set nextmap vstr d3"
set d3 "set g_gametype 2 ; map supplydepot2 ; set nextmap vstr d4"
set d4 "set g_gametype 2 ; map mlb_temple; set nextmap vstr d5"
set d5 "set g_gametype 2 ; map baserace; set nextmap vstr d6"
set d6 "set g_gametype 2 ; map et_mor2_night_final; set nextmap vstr d7"
set d7 "set g_gametype 2 ; map venice_ne4; set nextmap vstr d8"
set d8 "set g_gametype 2 ; map fueldump; set nextmap vstr d9"
set d9 "set g_gametype 2 ; map UJE_00 ; set nextmap vstr d10"
set d10 "set g_gametype 2 ; map goldrush ; set nextmap vstr d1"
vstr d1
and with another simple google we can find that we need to execute this config in our server.cfg

So open up your server.cfg file (if you're using default silent installation it will be called silent.cfg ) at the end of this file you're going to add " exec objective.cfg " ( without quotes ) start your server there are your maps.

Note: You need to actually have these maps inside of your ETmain folder. You will also need to get the BSP names of each map.
9/10 the BSP names are the same as the actual map names.

To find these you would just rename the pk3 extension to .rar open it up.


Then you'll see this.



go into /maps/ directory and you'll see the name of the map with a bsp Extension



That is the name of the map and you will need to use this EXACT name as the name you will put inside of your objective.cfg

E.g We looked at aldernest so in our objective.cfg we are going to put

set d1 "set g_gametype 2 ; map adlernest; set nextmap vstr d2"

Most maps are the same as their name, but some of different.

Regards, VJ*