Page 1 of 1

Score Limit in Space Assault

Posted: Wed Dec 31, 2008 1:20 pm
by Xavious
Just a quick question, how would I change the score limit for a space assault mission? I'm fairly certain this has been answered before, but I couldn't find it by searching, nor in the FAQ.

Re: Score Limit in Space Assault

Posted: Wed Dec 31, 2008 1:51 pm
by Maveritchell
Don't remember offhand (I took notes about this on a different computer), but I think you just add a multiplayerscorelimit to the objective set up, a la

Code: Select all

function SetupObjectives()
    assault = ObjectiveSpaceAssault:New{
        teamATT = IMP, teamDEF = ALL, 
        multiplayerScoreLimit = 100, multiplayerRules = true
    }
I don't think the score scales directly (might be twice as much as the number there), but you can probably experiment and find out.

Re: Score Limit in Space Assault

Posted: Wed Dec 31, 2008 2:15 pm
by Xavious
I set it to 20 to test it

Code: Select all

function SetupObjectives()
	assault = ObjectiveSpaceAssault:New{
		teamATT = REP, teamDEF = CIS, 
       	        multiplayerScoreLimit = 20, multiplayerRules = true
	}
but it didn't change the ingame score limit.

EDIT: After playing through my map, I realized that the score limit is fine as it is. I'd still like an answer to my problem, but it's not as urgent now.