Jump to content

Search the Community

Showing results for tags 'briefings'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 2 results

  1. How to make a basic Briefing in ArmA 2 In ArmA 2 BIS has decided redo the briefing system. The well known 'briefing.html' is still being used, but only for the debriefing. The actual briefing is added by script commands, which I advise you to put in a 'briefing.sqf', and give you the ability to add 'Notes' and 'Tasks' to the briefing menu. Ok, let's start with the simple stuff. Make a file called 'briefing.sqf' and make sure this gets executed through the 'init.sqf'. Add the following to your init.sqf: execVM "briefing.sqf"; Now we can add the briefing commands to the briefing.sqf file, and keep the other files of your mission clean. Adding Notes: player createDiaryRecord ["Diary", ["Title 1", "Message 1"]]; This adds a note called 'Title 1', and when you click on that a bigger message screen comes up with 'Message 1'. This is great, but we really need some formatting and ability to add links and pictures. Linebreak/newline: <br/> Ampersand: & Link to marker: <marker name='obj1'>Link to Marker</marker> Show an image: <img image='somePic.jpg'/> Show an image and manipulate the image width and height: <img image='somePic.jpg' width='200' height='200'/> Some examples: player createDiaryRecord ["Diary", ["Title 2", "Isn't whitespace awesome? <br/><br/><br/>Yes it totally is!"]]; player createDiaryRecord ["Diary", ["Title 1", "We have an objective <marker name=mkrObj1'>here</marker> and one <marker name='mkrObj2'>there</marker&gt]]; Ok, you should now understand how to make a note, and what the possibilities are in the briefing message window, so let's add some tasks. Adding Tasks You can make tasks whenever you want (at mission start, or at any time you like duing a mission), and you can customize them a lot, but let's start with a simple one: tskExample1 = player createSimpleTask ["Task Title 1"]; This add only adds a task called 'Task Title 1', but the message box is empty. We fix this with the following command: tskExample1 setSimpleTaskDescription ["Task Message 1", "Task Title 1", "Task HUD Title 1"]; This sets a description to the task. The first array element is the message (like the message from the notes), the second element is the title (yes, we already defined that, but we have to redefine it here), and the third element is what gets shown on the HUD. Note: The formatting tags that I've shown you earlier work with tasks as well. So now that we have a task with a title and message, we can also add an objective marker to the task so we know where the objectives actually are: tskExample1 setSimpleTaskDestination (getMarkerPos "mkrObj1"); Make sure you have an empty marker called 'mkrObj1', and you'll see a semi-transparant circular marker which will light up when you set the task as active. Other commands Well,now you know how to make notes and tasks, but we also need to control those tasks during the mission. We force a task upon a player by executing this on his machine: player setCurrentTask tskExample1; This will highlight the objective marker, and show him the through the HUD where the objective is. Now all that there's left, is setting the task status: tskExample1 setTaskState "SUCCEEDED"; tskExample1 setTaskState "FAILED"; tskExample1 setTaskState "CANCELED"; tskExample1 setTaskState "CREATED"; "SUCCEEDED" = Makes the checkbox green "FAILED" = Puts a red cross in the checkbox "CANCELED" = Puts a grey diagonal line through the checkbox "CREATED" = Clears the checkbox (makes it look like you've just created it) You can also show the state of the task with the taskHint command, but since that command is kinda hard to use, we're gonna use a function that I've made to make a lot easier to show the task state. How to make task hints If you wanna make taskHints that look like this: then go and grab my taskHint function at http://www.ofpec.com/forum/index.php?topic=33768.0 And that's pretty much it for a basic briefing. I'll try to add more advanced stuff to it when I have some more time. Templates I've made briefing.sqf and briefing.html templates. Grab them at ofpec: http://www.ofpec.com/forum/index.php?topic=33468.0
  2. I found that a character has 12 slots for equipment (ammo, satchels etc). When you carry the rocket launcher and then carry 2 round you lose all slots. So 1 round = 6 slots. When you take the SMAW launcher you can suddenly carry 6 rounds. So 1 round takes 2 slots. Isn't this a bit wrong? I remember the AT rounds were 3 slots in arma1. Not sure this is a bug or it is meant to be like this... I have no idea how it is in real life, but if i look at the rounds of the SMAW they look huge to carry around with.
×