Need Localizing Help
Moderator: Moderators
- jango
- Command Sergeant Major

- Posts: 272
- Joined: Mon Jan 19, 2009 8:05 pm
- Projects :: too many
- Location: A galaxy far far away...
Need Localizing Help
I know how to give objectives, but how do you give to just a certain team and not both?
-
501st_commander
- Master Bounty Hunter

- Posts: 1570
- Joined: Wed Dec 10, 2008 7:48 pm
Re: Need Localizing Help
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..
If I'm wrong someone correct me please..
-
MileHighGuy
- Jedi

- Posts: 1194
- Joined: Fri Dec 19, 2008 7:58 pm
Re: Need Localizing Help
heres how to get different objectives for both teams
change this part of your lua
to this
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");then where the objectives are in the localize tool add keys for 4,5,and 6, then type in the objectives, then youre doneAddMissionObjective(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");
- jango
- Command Sergeant Major

- Posts: 272
- Joined: Mon Jan 19, 2009 8:05 pm
- Projects :: too many
- Location: A galaxy far far away...
Re: Need Localizing Help
ok thanks 
