Jump to content

warhawk373

Member
  • Content Count

    33
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About warhawk373

  • Rank
    Private First Class

Recent Profile Visitors

1050 profile views
  1. Any way to make mcc mission generator only spawn in non-dlc vehicles. Like spawning in cars from certain factions maybe? Was playing a mission with a friend using ACE and all that good stuff. Went through hell to get a friendly hvt out of enemy territory, made our extraction plan based on the vehicles we saw parked outside the AO. Turns out they were all DLC vehicles. So had to reroute through a town and just got overrun. 2 hours of intense combat down the drain. I'm planning on getting the apex dlc during the summer sales but would be nice to fix this in the mean time. It's like it only chose to spawn dlc vehicles instead of vanilla because there were three vehicles all of which were DLC content. This makes me think there should be a way to make it spawn vanilla/RHS vehicles.
  2. warhawk373

    ACE Russian Sights/Help Needed

    As I said in my original post, I have the compatibility mods already.
  3. So I'm just now figuring out how to sight scopes in with advanced ballistics and all. After I mastered it with some of the standard snipers I wanted to try the SVD dragunov. However, all the scopes only use the vanilla zeroing. I tried scopes from both RHSAFRF and the CUP Weapons. I have the ace compatibility mod for both rhs and cup mods. I guess I could use a dragunov with a tactical rail but I was also wanting to do like a rag tag ak-47 sniper mission with an authentic, non-tactical scope. Any way to get these russian scopes to work with ace?
  4. Ahhh, thanks. It seems like there should be an option for this instead of having to code it, but I guess that's just me being picky....and a little bit lazy
  5. This seems like it should be so much more simple but this isn't working. I have a trigger set to Type - none Activation - Any Player Activation Type - Detected by Opfor The trigger will not activate though. When I change "Activation - Any Player" to "Activation - Blufor" then it works. Since it says "Activated when any player of the given side satisfies the 'Activation Condition'". Then I assume I have to put something in the "Condition" box. I tried Blufor, WEST, and SideBLUFOR_F but none of those worked. Can anybody explain how to make this work?
  6. warhawk373

    Shotguns Wont Break Skeet

    Oh I didn't know that. Yeah I guess it's because the projectiles count as shrapnel or something
  7. warhawk373

    Shotguns Wont Break Skeet

    Well I'm back to try to answer my own question. After running some tests it seems as though explosions and shrapnel won't break the clay targets. I'd be willing to bet that whoever configured the shotguns in the mod somehow made them shoot shrapnel instead of bullets. If anyone has any other ideas let me know, I would love to be able to shoot skeet with a shotgun in this game. Maybe Bohemia will release a vanilla shotgun that works.
  8. I'm currently using the CUP weapons pack and the RHS weapons. Each have a shotgun, the CUP has the AA12 and the RHS has some pump shotgun. I'm trying to make a neat training area that has a clay skeet shooting area but only bullets can break them. I checked to see if it was only addon ammo but that's not the case. The slugs break them but not the pellets. Any ideas why this is happening?
  9. Am I stupid or is there really no information regarding how long this wiki maintenance will last? Sorry if it's super obvious somewhere but I looked on the news forum and there was only information regarding the forums being updated earlier this month, nothing about the wiki. Today is the first day I've got on in a while but the wiki has been under maintenance all day for me.
  10. Yeah I followed their guide on saving an ALiVE server but I couldn't get that to work
  11. It's an ALIVE mission, so not very small. When I use vanilla save function it FUBARs everything. I did get the dedicated server to work though. But my main problem still stands...no way to save it. I can't use persistence because I can't keep the server on constantly. I was also looking at a mod called inidbi2 for saving progress, but I couldn't figure out how it is used.
  12. Dead topic but I would like to bring it back...any way to pause the mission for things like a co-op MSO where the AI will take over if the server keeps running?
  13. All I want is a LAN server that will be able to save without messing everything up. Currently, just starting a coop mission, then saving it, then resuming it, creates a lot of bugs, including bugs that won't let you pick up items. So I read that I have to have a place where the server can save its information? Something called EXTDB. I can't find any information on using this to create a LAN server with custom mods that can be saved and resumed at a later time. The only information on this tool is to start a wasteland server. I got steamCMD and did everything that other posts have said and I was able to get a server to show up, but it was online, I couldn't set a password in the .cfg, it created TWO servers, and it wouldn't let me join.
  14. Fixed it. Just in-case anyone else is having this issue in the future, I will explain. The problem is that task force radio will not initialize for the host of the server AFTER the host saves a multiplayer mission, exits Arma 3, then gets back on and resumes the mission. THIS DOES NOT FIX A POORLY INSTALLED TFR SO IF YOU AREN'T EXPERIENCING THIS EXACT PROBLEM THEN THIS ISN'T USEFUL INFORMATION. I could not find a fix for this anywhere else so I'm going to explain what I did to fix it. Everything that is below here is for people that are really unfamiliar with how files and scripting in Arma 3 works. To help those who already know script I will explain it fast here. Basically you need to spawn the task force radio initialization function (TFAR_fnc_TaskForceArrowheadRadioInit) locally. The way I did it is by using addAction. I'm sure there are other ways but this was simple and quick. Now for the long explanation. Go into editor for the mission you want to be able to save and resume. Then place an object down and name it whatever you like, I just named mine "obj" without the quotations for simplicity and if your new to scripting you should name your's "obj" also. This object can be anything but keep in mind, you will need to be near this object every time you resume your mission. So if you will be at a base then the object can be stationary, but in my case I'm playing an MSO so I needed a mobile object. So I placed down an empty vehicle and named it "obj". Now save the mission and find it in your files. It should be in \Documents\Arma 3\missions Now for the scripting. After opening the folder that contains your mission, create two .txt files. Name one "init.sqf" and one "TFR.sqf". If your file extensions are not visible you may end up having files named "init.sqf.txt" and "TFR.sqf.txt" and this is not what you want so make sure it asks you whether your sure you want to change the name, if it doesn't then google how to show file extensions and after you do that, go back and correct the names. Now that you have the .sqf files ready, open the init.sqf, if it asks you which application to open it with just use notebook. Now copy and paste this into the init.sqf obj addAction ["TFR", "TFR.sqf"]; then MAKE SURE TO SAVE IT by going to file - save. You can then close the init.sqf. Now open TFR.sqf and paste this into it x = [] spawn TFAR_fnc_TaskForceArrowheadRadioInit; Again make sure to save then you can exit TFR.sqf. Now your done. When you go into the game and look at the object you should have an action called TFR in your scroll menu. If your TFR is not initializing then look at the object and press the TFR action. In my case, only the host's TFR wouldn't work so he is the only one who has to press it after resuming the mission. However, anyone who's TFR won't initialize can press it to initialize it (unless your TFR was just installed incorrectly in the first place). If you haven't tried just reloading your teamspeak plugins then you could do that but that didn't work for me. I probably made this longer than it has to be but this only happened because we don't have a dedicated server to play on and I'm assuming people who are playing on LAN or with just a couple other people aren't going to know very much about scripting. Anyway, hope I helped someone out there, but remember, if you just didn't install TFR right in the first place (which happens ALL THE TIME to new players) then this isn't a fix for you.
  15. So my friend and I are trying to create a small ALIVE mission for us just to play occasionally but we want to be able to save it so that we can progress through the map and eventually rid the enemy presence from the whole map. When we first start the mission our TFR works fine, but after we save it, exit, then go back and resume it, the host's TFR won't initialize. The TFR of the person joining it works fine, just for some reason the host's TFR wont work. We tired it with him as the host and me as the host. We are both very experienced with mods and can usually just troubleshoot our problems by ourselves but this one has us stumped. I can assure you we have the mods installed correctly and I really can't see how any of our other mods would conflict with TFR causing it to do this since it works just fine in missions that we don't have to save then resume. Any ideas on how to fix this other than putting the mission on a dedicated server?
×