Jump to content

Erskin71

Member
  • Content Count

    17
  • Joined

  • Last visited

  • Medals

Posts posted by Erskin71


  1. I have the briefing.sqf working. However in the game everything is double.

    Task----> Task 1

    Task 2

    Task 3

    Task 1

    Task 2

    Task 3

    same for notes and diary. I think I used Redfield-77's code but I've used other code in this thread and have the same problem. Ideas?

    // last created entries go on top, so reverse the order

    // <marker name='obj1'>here</marker>//

    //<img image='shilk.paa'/>//

    // create a simple note in the briefing

    player createDiaryRecord["Diary", ["Oleg V. Takarov", "<img image=olegphoto.paa'/><br/>Oleg Vidaly Takarov<br/>AKA Kowmap<br/><br/>DOB 6-17-73<br/&gt]];

    player createDiaryRecord["Diary", ["ROE", "You are weapons free for the duration of the operation.<br/>Try to use your best judgement Red-Tide and avoid any international incidents."]];

    player createDiaryRecord["Diary", ["Situation", "XXXXX"]];

    player createDiaryRecord["Diary", ["Mission Overview", "XXXXX"]];

    // <br/> is a line break, forcing the text behind it to go on a new line

    // create a task

    tsk3 = player createSimpleTask["Extraction"]; // adds a task w/o desc or marker

    tsk3 setSimpleTaskDescription["Make your way to the USS Everon offshore for extraction.", "Extraction", "USS Everon"];

    tsk3 setSimpleTaskDestination (getMarkerPos "extraction"); // make sure you've added a marker!

    tsk4 = player createSimpleTask["Stockpile"]; // adds a task w/o desc or marker

    tsk4 setSimpleTaskDescription["Locate Takarovs weapon stockpile and destroy it. If it is not destroyed the next person to find it may be worse than Takarov.", "Destroy Stockpile", "Stockpile"];

    tsk2 = player createSimpleTask["Arms Deals"]; // adds a task w/o desc or marker

    tsk2 setSimpleTaskDescription["Collect Takarovs Laptop containing recent arms deals.", "Takarovs Clients", "laptop"];

    tsk1 = player createSimpleTask["Capture Takarov"]; // adds a task w/o desc or marker

    tsk1 setSimpleTaskDescription["Search Utes for the Arms Dealer, Oleg V. Takarov.", "Capture Takarov", "tak"];

×