PDA

View Full Version : oa server auto load domination map



weedkiller
Nov 28 2010, 11:37
can any one help??
trying to get our domi map to auto load when the server restarts, here is what i have put in the server.cfg at the bottom...

class Missions
{
class COOP_Domination
{
template = “1Para_Domination_2_BAF_54.Takistan”;
difficulty = “regular”;
};

i think it maybe the "class coop_domination" that is stopping it from starting.
Question is what should i be putting class as?
the template is what the map file is called letter for letter

---------- Post added at 12:37 PM ---------- Previous post was at 12:17 PM ----------

update.. if i put it in as
class Missions
{
class COOP_Takistan
{
template = “1Para_Domination_2_BAF_54.Takistan”;
difficulty = “regular”;
};
the server now loads but when you try to join it sits at waiting for host
HELP!!!

[HUD]Dorph
Nov 28 2010, 14:10
Why the ""

This is what mine looks like - and it works:

class Mission
{
template=co30_Domination_2_29A2_West_AI_OA.Takistan;
};
};

weedkiller
Nov 29 2010, 04:44
cool... thx ill try that and let u know if our server is of the dimshit origin lol

weedkiller
Nov 29 2010, 11:22
Tried that and still doesnt auto load our domi file..
The name of the file is letter to letter the same as im putting in the config,
Any ideas what im doing wrong?

ZeeSquared
Dec 1 2010, 02:52
It seems that you're missing a left brace with a semicolon to end the class Missions statement. I'll highlight it in the code. It should look like this ...



class Missions
{
class COOP_Domination
{
template = "1Para_Domination_2_BAF_54.Takistan";
difficulty = "regular";
};
};


The blue part is what you are missing I believe. Let me know if this works.

weedkiller
Dec 1 2010, 07:44
Sure i am putting that in, ill try it when i get home an see.
Thx ill let you know

weedkiller
Dec 3 2010, 16:37
now works.. thx for your help guys