Jump to content

jgbaxter

Members
  • Posts

    35
  • Joined

  • Last visited

Nexus Mods Profile

About jgbaxter

Profile Fields

  • Country
    None

jgbaxter's Achievements

Explorer

Explorer (4/14)

0

Reputation

  1. None of this is fair use. Companies act this way because they need to defend their copyrights. They don't bother hand holding because it's a waste of effort, much simpler for them just to file a complaint. Not that I'm a fan of how they deal with copyright infringement, it is their right, and in most cases their obligation.
  2. Too bad, he was doing some really great work, really interesting. For what it's worth, I think the idea of a spiderman mod to be quite silly, having said that, it would also be really kewl. In any case, this is a prime example why I wouldn't use someones mod as a required mod for one of mine. Side note, I keep a separate section for mods I use as backups just in case there is a problem of some kind. Or if I thought a mod was really interesting and was at a stable stage. I wasn't currently using any of his mods though. Of course I think he has the right to remove any content he wants. Even if it causes people problems, those problems are only caused because he allowed others a better gameplay experience in the first place. I don't think it's the best way to go about things but that's another conversation maybe.
  3. Sounds fun, how would that play out. Soldier takes a shot, 3 aliens take a shot. Soldier takes a shot, 3 aliens take a shot. Soldier takes a shot, 3 aliens take a shot. Soldier takes a shot, 3 aliens take a shot. Soldier takes a shot, 3 aliens take a shot. Soldier takes a shot, 3 aliens take a shot. Somewhere middle of first turn game over. :devil:
  4. I like this, I was planning on making a version of LW TB for Partisan War, maybe this is another option. In any case, kudos for the mod, it's a nice idea. :)
  5. You likely won't be able to as it isn't likely going to have the related file TheMod.XCOM_sln However if you just want to look at it, then you just download it and read the files with notepad ++ for example.
  6. Hi Josh :) We're currently trying to make the Viper Autopsy a requirement for the Viper King Autopsy. OnPostTemplatesCreated is going to be very useful, we haven't looked into it enough obviously so we'll try something along those lines. thanks! =-= Aurora thanks for giving it some thought. :)
  7. Doah, it's parsed right in modbuddy just messed up above. :laugh: I remember reading something Josh posted on reddit, and that he wasn't sure if there was a way to even get the DLC to load in any particular order. I was kind of hoping that the DLC loads before mods and therefore the default XCom files would have the new data from the DLC which could then be altered without having to worry about the DLC files. Anyway I need some booze because this is silly complex for a simple thing, lord knows an AHA moment will happen when someone comments on how to fix this, or maybe I'll drink more beer, not sure, maybe both. :huh:
  8. So I and LeaderEnemyBoss have been trying to make a small change to hopefully get me to grok how to do other things but I can't get this thing to build... any help would be great, I'm sure it is of course something simple but can't figure out what I'm missing. Here's the error; C:\Program Files (x86)\Steam\steamapps\common\XCOM 2 SDK\binaries\..\Development\Src\PartisanWar\Classes\A_UIAvengerHUD_Listener_UpdateGame.uc : Error, Bad class definition 'X2StrategyElement_DLC_Day60Techs(X2StrategyElement'/''/2165/2165 Warning, Can't find files matching C:\Program Files (x86)\Steam\steamapps\common\XCOM 2 SDK\binaries\Win64\..\..\Development\Src\DLC_2\Classes\*.uc And the code for what I'm trying to do (make Viper autopsy pre-req for ViperKing). I've looked at others code but that only points me in a direction where assassins kill me... ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Alien Hunters -- Adding mandatory autopsy from base alien instead of bypassing and allowing autopsy of ViperKing instead of Viper beforehand. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// [UnrealEd.EditorEngine] +EditPackages=DLC_2 [Engine.ScriptPackages] +NonNativePackages=DLC_2event OnInit(UIScreen Screen) { local X2StrategyElementTemplateManager TechTemplateMgr; local X2StrategyElement Autopsy; local X2TechTemplate TechTemplate; local XComGameState_Tech stateTech; local XComGameStateHistory History; local XComGameState stateGame; Autopsy = new class'X2StrategyElement'; TechTemplate = Autopsy.CreateAutopsyViperKingTemplate(); TechTemplateMgr = class'X2StrategyElementTemplateManager'.static.GetStrategyElementTemplateManager(); TechTemplateMgr.AddStrategyElementTemplate(TechTemplate); if (TechTemplate.Requirements.RequiredTechs.Find('AutopsyViper') == -1) { TechTemplate.Requirements.RequiredTechs.AddItem('AutopsyViper') }} defaultproperties { ScreenClass=UIAvengerHUD; }
  9. Side note; Einstein had some good ideas too, but I don't recall his patent applications being written in ALL CAPS. :happy:
  10. Also keep in mind that LWS is likely introducing most if not all of the XCom abilities to XCom 2, though that's not for sure.
  11. TimeScalar doesn't work, it's not enabled in the code I guess. All research projects have DIFF 3 setting in StrategyTuning.ini, you can adjust the DIFF3 and get DIFF 0-2 to change to the same setting and DIFF 3 to change to a different setting, Adding a DIFF 0-2 and changing them in anyway results in no effect. DIFF 3 tech setting is hidden. DIFF 3 tech setting follows a format that is not logical, for example, doubling the DIFF 3 settings doubles DIFF 0-2 however... DIFF 3 research on ABC tech and XYZ tech will have different results so it doesn't have the same effect. It may be that the hidden DIFF 3 setting adds a percentage based on PTC but that can't be confirmed. This is in fact how I wanted to go, small, medium, and large projects I was going to change the PTC to 210% / 200% / 190%. So, perhaps the DIFF 3 hidden adjustment looks at the PTC and does something similar and scales in categories based on the PTC range that it may fall in to. No idea but it's clearly not a natural progression. No other logical settings to change DIFF seem to work at all. I think if someone were to code a UI listener that looks at DIFF and then changes the PTC based on that that would work. It would need a way to also be configurable so if someone adds a new tech to StrategyTuning.ini it would see the PTC line and adjust. There's probably an easier way to do this but I'm not at the coding standard to do it. At this point I tink that the way I'm going to go until a solution is found is to adjust StartingScientists, this isn't the best solution obviously but it would be a tolerable if hated workaround. I'd need probably to change the number of starting scientists by having the UI listener look at DIFF and be able to plug in different variables for the scientists based on the DIFF, basically changing this maybe; (although the code below has it give both Sci and Eng the same amount that would need to be separate settings I suppose.)
×
×
  • Create New...