Home   Help Search Login Register  

Author Topic: Renaming a mission?  (Read 1361 times)

0 Members and 1 Guest are viewing this topic.

Offline eegore

  • Members
  • *
Renaming a mission?
« on: 15 Oct 2008, 11:32:47 »

  I have a mission .sqm that is not named correctly but everytime I copy it and export it to single player it still gets the incorrect name. 

  I copied the entire screen and made a completely new mission but the overview won't show on any of those after I copy that over in the User/Missions folders. 

  I renamed the description, the init.sqs etc. but everytime I get the original incorrect name after exporting to single player.  Why does this happen do you think?   

Thanks

Offline Planck

  • Honoured
  • Former Staff
  • ****
  • I'm never wrong ....I'm just not always right !
Re: Renaming a mission?
« Reply #1 on: 15 Oct 2008, 14:37:28 »
You name your mission properly through the 'Intel' dialog in the editor, thats the bit that gives the time and date and an icon picture of a cloud.


Planck
I know a little about a lot, and a lot about a little.

Offline NightJay0044

  • Former Staff
  • ****
  • Let's make OFPEC great again
    • My Steam Workshop
Re: Renaming a mission?
« Reply #2 on: 22 Oct 2008, 19:12:54 »
Definitely, it's in your intel section in the mission editor on the "Top Right" of the screen.

Yep by the clouds..  :yes:

hopefully that works for you if you haven't already figured it out from Planck  :D
« Last Edit: 22 Oct 2008, 19:18:35 by NightJay0044 »
Who's hyped for Arma4, long live Arma!

Offline eegore

  • Members
  • *
Re: Renaming a mission?
« Reply #3 on: 23 Oct 2008, 10:36:55 »
 
  Thanks guys.  I have only converted an editor mission into a SP version once about 5 years ago so I forgot all about how I named the damn thing. 

  I relearn something new everyday.

Offline NightJay0044

  • Former Staff
  • ****
  • Let's make OFPEC great again
    • My Steam Workshop
Re: Renaming a mission?
« Reply #4 on: 23 Oct 2008, 11:19:47 »
Cheers to Eegor...so are you back editing or what? If you are,  you can map your mind in our world again... :)  :cool2:

But if you've been around and are editing again, great too....

Best regards,
NightJay



Who's hyped for Arma4, long live Arma!

Offline eegore

  • Members
  • *
Re: Renaming a mission?
« Reply #5 on: 23 Oct 2008, 11:24:43 »

  I took about a 3 year hiatus from OFP and have never been any good at editing.  Still I really enjoy the freedom of the editor and am really grateful to have found OFPEC upon my return to the game. 

  I never knew most of this stuff was possible.

Walter_E_Kurtz

  • Guest
Re: Renaming a mission?
« Reply #6 on: 23 Oct 2008, 13:05:43 »
If you only need to make a small change to the name, such as the version number:

Open the mission.sqm with a text editor, the name you've given the mission can be found in the Intel section under the definition briefingName:

Code: [Select]
version=11;
class Mission
{
addOns[]=
{
"bis_resistance",
"WEK_CobraAttacksInf"
};
addOnsAuto[]=
{
"bis_resistance",
"WEK_CobraAttacksInf"
};
randomSeed=16089603;
class Intel
{
briefingName="Cobra attacks Infantry";
};
class Groups
{

You can also have a briefingDescription line, but this is only visible in the multiplayer lobby.