Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Need help with Briefing

  1. #1

    Need help with Briefing

    seriously I have been stuck here for 2 days trying to figure this one out and it just isn't funny
    I've read through every possible post about this issue and havent found a solution.. gone through allot of templates
    I make a script with A2B editor for my mission im currently trying to make on the arma 2 unsung mod (Vietnam)
    save the sqf files in the mission etc, execVM "briefing.sqf"; in the init.sqf folder
    I go and load the mission and.. No briefing just straight too the action.
    I've even disabled all Mods and still cant get a briefing
    helpmeplease!

  2. #2
    In the editor? Briefings do not show up when previewing unless you press shift+mouse1 on the preview button. But that seems to be bugged sometimes.
    Export the mission to sp/mp and then try playing it and see if you get the briefing.

    If your problem is that notes are not added at all, post your briefing.sqf

  3. #3
    What is in your "briefing.sqf"? and is it in your main mission directory along side the mission.sqm?

    Post the content of the briefing.sqf here, with the code tags.

    "Si vis pacem, para bellum"

  4. #4
    Quote Originally Posted by Shadow.D. ^BOB^ View Post
    What is in your "briefing.sqf"? and is it in your main mission directory along side the mission.sqm?

    Post the content of the briefing.sqf here, with the code tags.
    yes In the mission directory in arma 2 missions in the correct folder for the mission: mission sqm.file, init.sqf.file and briefing sqf. file..
    is this the correct line to have in the init.sqf file? "[]execVM"briefing.sqf" ??

    haven't finnished my briefing yet but my plan is to have all my marines cooped up in a firebase under surprise attack by the Vietkong in the Tet offensive. I usually try and I test this:
    // Created in A2B Editor by EMSI
    Defend Base = player createSimpleTask ["Eliminate Vietkong invaders"];
    Eliminate VC Mortar Team setSimpleTaskDestination (getMarkerPos "VC mortar");

    I whack that from A2B to my briefing sqf. file then open arma 2.. scenarios.. mission "Tet offensive" and nada on the tasks lines or any briefing atall

    I know Im doing something wrong but bare with me please I'm a complete noob all I need is the correct commands
    Last edited by reservoirjoe; Jul 8 2012 at 20:33.

  5. #5
    Ok so in your init.sqf file you have the following correct?

    [] execVM "briefing.sqf";

    Then the briefing.sqf you might want to change to something like this:

    Code:
    task1 = player createSimpleTask ["OBJ_1"];
    task1 setSimpleTaskDescription ["Eliminate Vietcong Mortar", "Eliminate Vietcong Mortar", "Eliminate Vietcong Mortar"];
    task1 setSimpleTaskDestination (getMarkerPos "VCmortar");
    task1 setTaskState "Created";
    Just a tip, but i always find it best to make sure any object "names" whether it be markers or units are done without a space, in reference to your "VC mortar" marker name.
    Last edited by Shadow.D. ^BOB^; Jul 8 2012 at 20:55.

  6. #6
    thanks for touching up my brief script but still no joy man :/
    [] execVM "briefing.sqf"; is exactly how I have it

  7. #7
    Hmmm cant see why that wouldnt work...

    Just to double check, when you bring up your map once in mission. There are no "Tasks"?

    The above code is for tasks only, if you wanted a briefing as such you would need something like this in the briefing.sqf

    Code:
    // NOTES: MISSION
    // The code below creates the mission sub-section of notes.
    
    _mis = player createDiaryRecord ["diary", ["Mission","
    <br/>
    INSERT TEXT HERE
    <br/><br/>
    INSERT TEXT HERE
    "]];

  8. #8
    You did read this from cuel correct?
    In the editor? Briefings do not show up when previewing unless you press shift+mouse1 on the preview button. But that seems to be bugged sometimes.
    Export the mission to sp/mp and then try playing it and see if you get the briefing.
    Where are you testing or trying to see your briefing at?

    Hosting Missions for Invasion-1944, Iron Front: Liberation 1944, & Hell in the Pacific

    WarMod Series - Massive Addon & Mod Customizable Compilation Mods for Arma1, Arma2, & Arma2CO
    WarMod | A2WarMod |A2WarModACE | COWarMod | COWarModACE | COWarModI44 |COSLX

  9. #9
    You need to make a Briefing.html file, then you'll be able to preview it.


    The Briefing.html can be blank.

  10. #10
    yea even when I press M n get my map up No tasks to be seen... ok ok how do I create a briefing.html?? what do i put in it?

Page 1 of 2 12 LastLast

Similar Threads

  1. Briefing not working and Im matching a working Briefing.
    By Eaglezero6205 in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 5
    Last Post: May 22 2012, 16:15
  2. Briefing need help
    By Lightninguk in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 0
    Last Post: Mar 1 2010, 10:14
  3. Where is the briefing?
    By ZNorQ in forum ARMA - MISSION EDITING & SCRIPTING
    Replies: 1
    Last Post: Aug 18 2007, 21:28
  4. Need help with the briefing.........again!
    By Aculaud in forum OFP : MISSION EDITING & SCRIPTING
    Replies: 2
    Last Post: Mar 11 2002, 20:09
  5. Is my Briefing right?
    By Silencer in forum OFP : MISSION EDITING & SCRIPTING
    Replies: 9
    Last Post: Jan 18 2002, 16:23

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •