Need Localizing Help

Post everything from general questions, to modding questions, to map WIPs to releases. (SWBF1 only)

Moderator: Moderators

Post Reply
User avatar
jango
Command Sergeant Major
Command Sergeant Major
Posts: 272
Joined: Mon Jan 19, 2009 8:05 pm
Projects :: too many
Games I'm Playing :: Black Ops
Location: A galaxy far far away...

Need Localizing Help

Post by jango »

I know how to give objectives, but how do you give to just a certain team and not both?
501st_commander
Master Bounty Hunter
Master Bounty Hunter
Posts: 1570
Joined: Wed Dec 10, 2008 7:48 pm

Re: Need Localizing Help

Post by 501st_commander »

i know in bf2 ze but select the object, then on the left side near the bottom, there is name, class and team. Under the "team" there is a '0' change that to what you want (1, 2, 3).
If I'm wrong someone correct me please..
MileHighGuy
Jedi
Jedi
Posts: 1194
Joined: Fri Dec 19, 2008 7:58 pm

Re: Need Localizing Help

Post by MileHighGuy »

heres how to get different objectives for both teams

change this part of your lua

Code: Select all

AddMissionObjective(IMP,"red", "level.yourmodid.objectives.1");
AddMissionObjective(IMP,"orange", "level.yourmodid.objectives.2");
AddMissionObjective(IMP,"orange", "level.yourmodid.objectives.3");
AddMissionObjective(ALL,"red", "level.yourmodid.objectives.1");
AddMissionObjective(ALL,"orange", "level.yourmodid.objectives.2");
AddMissionObjective(ALL,"orange","level.yourmodid.objectives.3");
to this
AddMissionObjective(IMP,"red", "level.yourmodid.objectives.1");
AddMissionObjective(IMP,"orange", "level.yourmodid.objectives.2");
AddMissionObjective(IMP,"orange", "level.yourmodid.objectives.3");
AddMissionObjective(ALL,"red", "level.yourmodid.objectives.4");
AddMissionObjective(ALL,"orange", "level.yourmodid.objectives.5");
AddMissionObjective(ALL,"orange","level.yourmodid.objectives.6");
then where the objectives are in the localize tool add keys for 4,5,and 6, then type in the objectives, then youre done
User avatar
jango
Command Sergeant Major
Command Sergeant Major
Posts: 272
Joined: Mon Jan 19, 2009 8:05 pm
Projects :: too many
Games I'm Playing :: Black Ops
Location: A galaxy far far away...

Re: Need Localizing Help

Post by jango »

ok thanks :)
Post Reply