Score Limit in Space Assault

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
Xavious
Sith Master
Sith Master
Posts: 2783
Joined: Mon Jun 12, 2006 3:46 pm

Score Limit in Space Assault

Post 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.
User avatar
Maveritchell
Jedi Admin
Jedi Admin
Posts: 7366
Joined: Mon Aug 21, 2006 11:03 pm

Re: Score Limit in Space Assault

Post 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.
Xavious
Sith Master
Sith Master
Posts: 2783
Joined: Mon Jun 12, 2006 3:46 pm

Re: Score Limit in Space Assault

Post 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.
Post Reply