Welcome to Tactical Gamer

+ Reply to Thread
Results 1 to 4 of 4
Discussion: Armed Assault / ArmA - SOP's, Technical Support & FAQ - Mission editing question - How do you put respon into a mission? Is it as simple as using a
  1. #1

    Yanu's Avatar

    Join Date
    Mar 2007
    Location
    Bourbonnais, IL
    Posts
    46

    Mission editing question

    How do you put respon into a mission? Is it as simple as using a trigger?
    |TG| Yanu - Bad handwriting since the 8th grade.



  2.  
  3. #2

    loyalguard's Avatar

    Join Date
    Apr 2006
    Posts
    1,316

    Re: Mission editing question

    It depends on the type of respawn. Most of the work is done in the Description.ext file that you have to create separately. Inside it you identify the type of respawn in the missions:

    Example:

    Code:
    respawn = Bird;
    respawnDelay = 10;
    This would make the player respawn as a "seagull" after 10 seconds. FYI, the type of spawn can also be a number instead of a word type (1 = Bird)

    If you want to do base respawn, you must also put a specifically named marker (depending on the side (BluFor, OpFor, Civ, etc)) in the mission editor so the game knows where to respawn players

    Example:
    respawn_west (to give the BluFor a respawn location)

    The link above to the Biki (Bohemia Interactive Wiki) describes the Description.ext and respawn issues in depth. I hope that answers your basic questions!
    |TG| LoyalGuard

  4.  
  5. #3

    Yanu's Avatar

    Join Date
    Mar 2007
    Location
    Bourbonnais, IL
    Posts
    46

    Re: Mission editing question

    I’ve created a text file named description.ext. Inside it I have the code:
    respawn = BASE;
    respawnDelay = 5;

    In the mission I have a marker named “respawn_west”

    The Biki page said “The description.ext is a text file located in the root of the mission folder”

    So, there is the Arma Missions folder with multiple missions in it (.pbo files). I don’t know if I’ve gone off course at this point. Where do I insert the description.ext file? I don’t see how it can just sit there, but I tried it anyway and it didn’t work. What am I missing?

    Thanks for the link to BI. That’s something else I was looking for. You wouldn’t think there would be that much to learn just from looking at the editor. Thanks for the help.
    |TG| Yanu - Bad handwriting since the 8th grade.



  6.  

     
  7. #4

    loyalguard's Avatar

    Join Date
    Apr 2006
    Posts
    1,316

    Re: Mission editing question

    The "mission folder" in question is the folder that is created when you save a mission in the editor as a "user mission". It is seperate from the different mission folders where the .pbo files are located. This mission folder can be found in:

    <myDocuments>\ArmA Other Profiles\<profilename>\missions

    Inside that folder, you will see your "mission folder" that was created when you saved the mission in the editor. If it is a Sahrani mission it will end with .sara. If it is a Rahmadi only mission is will end with .intro. (e.g. MyMission.sara). None of these files will be end with .pbo

    It is inside this folder (myMission.sara or whatever you named it) that you want to place your Description.ext file. This is also the folder where you will save your Briefing.html file and any scripts you might use in your mission.

    If you open that folder, you should already see inside a file called mission.sqm. This file contains all the mission information you create in the editor and stores it in formatted code.

    Basically, these are all the un-packed files that make up a mission and can be edited/previewed in the editor. When you are ready to export your mission for play in SP and MP mode, instead of saving as a "user mission", you save it as a multiplayer or singleplayer mission. ArmA then makes your mission folder (and all its contents) into a .pbo and stores it one of the appropriate locations for such files (different from where the mission folder is saved). (you can also PBO it yourself with a PBO tool but I like to do it in the editor)

    Regarding your Description.ext, you may want to include a a little more information as sometimes a mission will fail to load without it. I am not sure exactly what is required and what can be omitted, but I would at least add the information as discussed in the "OnLoad" and "Header Class" sections of the Biki article just to be safe.

    Good luck!
    |TG| LoyalGuard

  8.  

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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


  
 

Back to top