[asa]oden
Member-
Content Count
409 -
Joined
-
Last visited
-
Medals
-
This is the line you bomb at (307): ResourceName imageset = hq.GetBuildingIconImageset(); Your mission has a faction that is lacking a so called MainBase (collected 4 lines above this to that "hq" var). Are you really running a vanilla Conflict mission?
-
My best guess would be that you miss "SCR_RespawnSystemComponent" in your gamemode. Maybe BI should add "if (!rsc) return; in there. Are you building something or running an existing mission?
-
Same. I guess we'll just have to wait it out.
-
Maybe create a "zero-content" mod with dependencies to all the mods you want.
-
Increased Factions on Campaign Game Mode
[asa]oden replied to BreathX's topic in Arma Reforger - Configs & Scripting
As you have already noticed the Conflict gamemode is pretty hardcoded on faction (rather than checking "isFriendly") and while a small and fairly easy mod of "class SCR_SpawnPoint" would let players of "friendly" factions in to the current spawnpoints pretty much nothing will work from there on (no tasks to begin with). My advice is to duplicate whatever extra factions you have into either of US, USSR or FIA - not all but just the "Campaign_US_Player.et" or whatever main faction needed at minumum. Then add these to a duplicated "ArmaReforger/Configs/Factions/US_Campaign.conf" under "Entity Catalogs", "CHARACTER", "Multi Lists", "Campaign" as new "SCR_EntityCatalogEntry" - Also add a "SpawnerData" and a "LoadoutData" under each of these new units. The SpawnerData has a "Variant Data" where you can add a variant such as "VEHICLE_MERC" (the only one by Bohemia but you can append other types to this list via "modded enum ESpawnerVariantType" if you are into scripting. This would be the first step to "connect" each unit to similar groups and vehicles down the other entries in the "Entity Catalogs" I don't think it will help in the current Conflict code but that's how I matched selected player profile with spawning a "correct" supporting team in my DustCTI (Conflict flavour) found in "US 1st Cavalry Division" mod (download and copy-paste anything useful if you want to go down this route) when a player selects anything else than the 1.CAV slot. Example: modded enum ESpawnerVariantType { // VEHICLE_MERC, SPETSNAZ, RECON, US_1CAV, US_1ID, US_3ID, US_4ID, US_8ID, US_82AB, US_101AB, US_MARINES, }; (never got around to creating Marines as they didnt really make a big impact in Cold War Europe other than Embassy work maybe) -
Some help with depot/motor pool configs.
[asa]oden replied to Hetric's topic in Arma Reforger - Configs & Scripting
Either in prefab SCR_EditableVehicleComponent under "Entity Budget Cost" type "CAMPAIGN" or in the config where you list the Entity Prefab you have "Entity Data List" probably containing a "EditorData" and/or a "SpawnerData", there you can edit/add a "LoadoutData" (SCR_EntityCatalogLoadoutData) and set the "Spawn Supply Cost". Haven't tried but should work. Edit: just tried the config approach - no go (I assume it relates to player loadouts only). Go with the prefab SCR_EditableVehicleComponent -
PMC Rugen - 25km european terrain
[asa]oden replied to Snake Man's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
You'll see one day. -
PMC Rugen - 25km european terrain
[asa]oden replied to Snake Man's topic in ARMA 2 & OA - ADDONS & MODS: COMPLETE
So, how much will you charge us for this then? -
Worth buying it? Wanna play only Multiplayer
[asa]oden replied to krazikilla's topic in IRON FRONT: LIBERATION 1944 - MULTIPLAYER
Gotta love how Steam manages to punish us who's avoiding steam as much as possible. No way to get away is there? -
Joining group on Multiplayer, Civil war
[asa]oden replied to kjellt's topic in ARMA 2 & OA - MULTIPLAYER
mmm "04: Civil War" is a Warfare mission like Superpowers. Unless you have some other mission named almost the same? -
Worth buying it? Wanna play only Multiplayer
[asa]oden replied to krazikilla's topic in IRON FRONT: LIBERATION 1944 - MULTIPLAYER
I'm afraid Gossamer is correct. Deserves or not maybe this should have stayed an ArmA addon after all, the step up to complete game is bigger than most expect I guess. Reading all the modules there is pure ArmA2 content looking for USMC, CDF, RU, INS and GUR factions shows the release was rushed so asking customers to be patient now for the patch is something that leaves a bad taste in the mouth. But as always, it's easier to put expectations on others than on oneself. -
Joining group on Multiplayer, Civil war
[asa]oden replied to kjellt's topic in ARMA 2 & OA - MULTIPLAYER
Nope not doable in vanilla warfare. In my view, Warfare is a group coop game where players support eachothers with their groups so I don't see the idea of running in the same group - but thats OT :) -
Considering BIS is about to release 1.61 and IFL patch 1.03 will be 1.62 I'd say what was IFL 1.60 is not really the current stable and well working BIS 1.60. I start to think IFL got the current 1.xx back when they wrote the license agreement with BIS (years ago?) and has since developed in parallell but failed to apply whatever BIS has sent them to keep on track with BIS development. As such we sit with this not too stable odd behaviour experience of today, still 1.02 if far better than 1.00.
-
Add a "Exclude" option to server browser, can't find servers because of DayZ
[asa]oden replied to zamani532's topic in ARMA 2 & OA - SUGGESTIONS
Please enlighten us new players. In other news: +1 -
Add Action in MP: Intel Collection, Hostage Rescue, the whole 9 yards...
[asa]oden replied to therev709's topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
remove the [if (!isServer) exitWith{};] or replace with [if (isDedicated) exitWith{};]