Jump to content

sky-diver

Member
  • Content Count

    7
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About sky-diver

  • Rank
    Rookie
  1. What do you mean with "...your missions..."? I simply want to use the integrated COOP missions who are "shipping" with ArmA 3 Beta. I'm using a vanila installation of ArmA3. Inside the "...\Steam\SteamApps\common\Arma 3\MPMissions" folder there's only one file -> "readme.txt".
  2. Is there a tool for ArmA 3 to look into or extract the PBO file(s)? I only found tools for ArmA 1 & 2. I can't believe nobody else wanted all COOP mission in rotation...
  3. Hi SavageCDN thanks for the example but unfortunately I don't understand the following: - For what stands "co26" in your example? - What must I insert for "bestmissionever" if I want the mission "Defend Kamino" in there? class A3mission1 { template="co26_bestmissionever.Stratis"; difficulty="veteran";//can be recruit, regular, veteran, mercenary }; I want these 4 maps in rotation (these are listed when in type "#missions" inside the game): COOP 07 Headhunters COOP 09 Combined Arms COOP 10 Defend Kamino COOP 10 Escape from Stratis What meaning have those numbers? Would it be the following code for my request? Are spaces as in "Escape from Stratis" okay or must I use "_" as space? class Missions { class A3mission1 { template="co26_Headhunters.Stratis"; difficulty="veteran";//can be recruit, regular, veteran, mercenary }; class A3mission2 { template="co26_Combined Arms.Stratis"; difficulty="veteran";//can be recruit, regular, veteran, mercenary }; class A3mission3 { template="co26_Defend Kamino.Stratis"; difficulty="veteran";//can be recruit, regular, veteran, mercenary }; class A3mission4 { template="co26_Escape from Stratis.Stratis"; difficulty="veteran";//can be recruit, regular, veteran, mercenary }; }; I hope you have patience with me ;). That's okay for me :).
  4. Tried it... didn't help :(. Can someone with a working TADST create the necessary "class Missions" code (all COOP missions in rotation) for me?
  5. Hi travisneids, thanks for the hint :). But I already tried the tool but I can't see any map for selection. The server is up and running but under "Missions" there's noting listed as you can see on the screenshot.
  6. Hello, I hope someone can help me... ;). I've setup my dedicated ArmA3 Beta server using the "Thread: Tutorial: How to run ArmA3 on a dedicated server" (thanks for this great tutorial btw). Everything works fine, the server is starting and I can connect. Also I'm able to select a mission after I logged in as administrator (#login XXX) and used the "#missions" command. What I don't understand is how can I set the server to start directly into a COOP mission? I know this is done via the "class Missions" code (see below) but what must be set there? I want all COOP missions in rotation on my server. Can someone post me the necessary code for this? This would be grateful :)! // MISSIONS CYCLE (see below) class Missions { class Mission1 { template="co_xx_mymission.stratis"; difficulty="Regular"; }; }; Greetings... Sky-Diver
×