Jump to content

PUDDY300

Member
  • Content Count

    8
  • Joined

  • Last visited

  • Medals

Everything posted by PUDDY300

  1. So I've been trying my hand at map making, and ive been following the ultimate terrain tutorial on PMC editing website. I've been able to get my terrain in game without issues, but whenever i put a unit on the terrain and try to walk around, I get the message "mission terminated because its dependent on DLC". I've searched for an answer to this issue, the only result had the guy reinstall the game for it to work. I'm using the PBO project tool from mikero to pack my map and I have a suspicion i may have done something wrong there since all my other mods still work correctly. Has anybody experienced this before? I should also note I own all of the Arma 3 DLC.
  2. Hey sorry for the late response. Thought this thread died. I have not found a fix for this issue. I reinstalled everything and the same issues kept happening. I actually had a laptop that I had a fresh install of windows on that I then installed all the tools onto. I took the same map files and packaged them on the laptop, then put that pbo on my main computer and everything ran fine. For some reason the mikero tools on my main computer can't package a map without making this error.
  3. Hey everybody, first off I'd like to apologize if this is not the correct area to post as this terrain is still extremely WIP. But it seems Alpha versions of mods are welcome here. With that out of the way, I'd like to post the link to my first attempt at a terrain and get some feedback from the community on ways I can improve. The terrain I've chosen to recreate is the area NW of Kasserine in Tunisia known as the Kasserine Pass. My main goal for choosing this area is the fact that there really isn't much located here. I figure it would be a good start at attempting the terrain because its devoid of any complicated terrain features and might be a good place to start on getting down the basics of masking the terrain and creating satmaps. As of right now, the terrain just features some vegetation, two main roads, and a dried up river running through the middle. My goal for this map is an accurate depiction of the area in 1943. My references are limited when it comes to photos, but I've used google maps images of the area to try and get an idea of the vegetation and overall landscape. I do not currently have plans of putting in a town in the middle of the valley (as there is today) since, from what I can tell, that town didn't really exist in 1943. I would appreciate if people could give it a download and point to some areas where I could improve, especially in the realm of my terrain textures. Download: https://steamcommunity.com/sharedfiles/filedetails/?id=2305843883
  4. Is there any update on when the Tac-Ops mission files will be changed from EBO to PBO?
  5. Just a quick update, tried reinstalling Arma, no change unfortunately.
  6. PUDDY300

    DLC Content use

    I have setup everything like this and i still receive the same error as OP. I also dont have any objects on my island so its extra confusing. Also worth mentioning, OP's fix didnt work for me
  7. Here you go EDIT: I'm an idiot, the faction name in my CfgGroups is different than my faction classes. Changing it in the description.ext to the correct one has allowed for my units to spawn. I'll update my addon with the correct name and post here with the results. I haven't seen any threads with people trying to do it by addon so hopefully this will help someone in the future. Updated my addon and it all seems to be working now!
  8. Hi Everyone, So as the title says, I've created a new faction and one thing I'd like to do is get it to work with the Arma 3 modules without extra scripting in every mission I make. So I decided to create a replacement config that could add my faction into the list of factions on the module. I'll post that code below: Upon testing it out in game, I get an error message that points to this portion of BI's code in initSpawnpoints.sqf //filter out spawnpoints without any group type weight, or with wrong faction { if (true) then { _point = _x; _i = _forEachIndex; _faction = _point getVariable ["Faction",""]; //check if combination Side + Faction is valid if !((_cfgRoot >> _sideStr >> _faction) call Bis_fnc_getCfgIsClass) exitWith { ["[%3][%4] Combination | side=%1 + faction=%2 | is not valid!",_sideStr,_faction,_emitter,_point] call bis_fnc_error; _points set [_i, objNull]; }; From what I understand, it's telling me that my faction and side don't match up, or that my faction does not exist. Anybody have any clues as to what could be the issue? (The error in the code I posted is what shows up in game). Edit: Forgot, my Faction's cfgFactionClasses would probably be helpful. class cfgFactionClasses { class WWII_faction_DE_1939 { displayName = "[DE][1939] Wehrmacht"; //Faction name in-game priority = 1; //How far down it is on the menu side = West; }; };
×