Page 1 of 1

Need Localizing Help

Posted: Mon Jun 08, 2009 7:58 am
by jango
I know how to give objectives, but how do you give to just a certain team and not both?

Re: Need Localizing Help

Posted: Mon Jun 08, 2009 9:29 am
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..

Re: Need Localizing Help

Posted: Mon Jun 08, 2009 11:02 am
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

Re: Need Localizing Help

Posted: Mon Jun 08, 2009 12:01 pm
by jango
ok thanks :)