The forum has been set to read-only mode. For community discussion and questions, head over to our Discord: https://discord.taleoftwowastelands.com
Is it okay to use Project Nevada with 3.2
-
1ercru
- Posts: 42
- Joined: Tue Nov 06, 2018 8:54 am
Is it okay to use Project Nevada with 3.2
Just using PN Core and Rebalance , not cyber ware or additional options.
- Risewild
- Posts: 3219
- Joined: Mon Oct 01, 2012 9:14 am
Re: Is it okay to use Project Nevada with 3.2
I think Core should work. Not sure about Rebalance though.
Signature:
- Have a problem? Try checking our FAQ. It might have the solution for it.
- Want to mod your game, but not sure which mods to use? Check the recommended and incompatible mods threads and the Wasteland Survival Guide.

- Join our Discord Server.

- RoyBatty
- Gary
- Posts: 7742
- Joined: Sun Apr 27, 2014 10:26 am
- Location: Vault 108
Re: Is it okay to use Project Nevada with 3.2
Rebal is a big no, that module breaks a bunch of stuff.

- EyeDeck
- Posts: 30
- Joined: Mon Dec 29, 2014 8:44 pm
Re: Is it okay to use Project Nevada with 3.2
Core is okay, though there's a decent amount of FO3 content that PN isn't aware of by default. [Here] is a partial patch if you want it; so far all I've done is add visor and enhanced vision mode support for TTW PAs, fixed most items' missing tags if you use that system, and added all of the tech-y weapons to the digital scope zoom formlist.
I still need to do the grenade thing, fix the Anchorage Chinese Stealth Armor, and sort through all of the assorted non-PA goggles/masks/headgear etc and add those to the appropriate visor/vision lists too, but haven't gotten around to that yet. I'll probably finish all that tonight.
Edit: Done, I might have missed a few things, but that should (hopefully) comprehensively cover everything in the PN Core module:
I still need to do the grenade thing, fix the Anchorage Chinese Stealth Armor, and sort through all of the assorted non-PA goggles/masks/headgear etc and add those to the appropriate visor/vision lists too, but haven't gotten around to that yet. I'll probably finish all that tonight.
Edit: Done, I might have missed a few things, but that should (hopefully) comprehensively cover everything in the PN Core module:
- All TTW headgear has been added to visual overlay/enhanced vision formlists as (I think is) appropriate
- TOX/H2O/CASE/PART tags have been added to TTW items as appropriate
- TTW explosives have been PN's formlists as appropriate (though this may not have been necessary since PN probably auto-detected everything properly anyway)
- Most energy weapons have been added to PN's digital scope zoom formlist
Last edited by EyeDeck on Sun Nov 25, 2018 7:49 pm, edited 1 time in total.
-
1ercru
- Posts: 42
- Joined: Tue Nov 06, 2018 8:54 am
Re: Is it okay to use Project Nevada with 3.2
Thanks for this. It’s not half assed at all. I think a fair number of people use PN just for core.
-
Bottletopman
- Posts: 117
- Joined: Thu Jan 05, 2017 12:28 am
Re: Is it okay to use Project Nevada with 3.2
Does this also give the cryo grenade its own hotkey icon? I had to edit the grenade hotkey scripts for my copy of PN to use the existing cryo grenade icon that came with PN's files. Unfortunately they don't have an icon for the cryo mine. I tried making my own cryo mine icon for PN but I gave up because it never turned out the way I wanted it to look.
tp for my bunghole?
- RoyBatty
- Gary
- Posts: 7742
- Joined: Sun Apr 27, 2014 10:26 am
- Location: Vault 108
Re: Is it okay to use Project Nevada with 3.2
An important thing to fix in PN's knockdown handling is that the script needs to check the actors if they have certain flags and ignore them. No Knockdowns and Not Pushable flags are the important ones on their base forms to check. If either or both of those flags are enabled in their forms then the knockdown script needs to IGNORE those actors or it breaks their AI permanently. This includes turrets, Legate Lanius, and LIBERTY PRIME.
PN (and FWE) are what are responsible for breaking Liberty Prime and making him stop, and/or walk of the bridge and act stupid.
PN (and FWE) are what are responsible for breaking Liberty Prime and making him stop, and/or walk of the bridge and act stupid.

- EyeDeck
- Posts: 30
- Joined: Mon Dec 29, 2014 8:44 pm
Re: Is it okay to use Project Nevada with 3.2
That's easy enough to fix:
I didn't do the grenade icon thing because I didn't realize that PN already had a cryo grenade icon, and I didn't want to deal with it at the time.
Anyway, [Here]'s v1.1:
Code: Select all
; ensure actor is push/knockdown-able
if eval tackleTarget.GetActorBaseFlagsHigh & 3072 != 0
set playerTackleCheck to -100000
endifAnyway, [Here]'s v1.1:
- Fixed the FormList merger script running too often (accidentally used "if GetGameRestarted == 0" instead of the intended "if GetGameRestarted == 1" like a moron); this likely caused a performance drop since a pretty lengthy script was getting executed once every second
- Applied PN's existing grenade textures for almost all TTW explosives
- Made a cryo mine icon from scratch—I think I actually did a pretty good job at this, surprisingly
- Tweaked PN's sprint tackle script with the lines above to hopefully prevent it from breaking things—I have not tested this change at all, so if someone wants to let me know if it even works I'd appreciate it. Also, this isn't strictly compatible with "Project Nevada - Extra Options.esm", since that also overrides the same script, but I'll deal with that later.
- RoyBatty
- Gary
- Posts: 7742
- Joined: Sun Apr 27, 2014 10:26 am
- Location: Vault 108
Re: Is it okay to use Project Nevada with 3.2
Probably should ditch the formlist edit script and make it hard coded lists.
It's not just the tackling either, there's explosion knockdowns that need the same check.
It's not just the tackling either, there's explosion knockdowns that need the same check.

- EyeDeck
- Posts: 30
- Joined: Mon Dec 29, 2014 8:44 pm
Re: Is it okay to use Project Nevada with 3.2
It would have been substantially more effort to organize direct formlist edits for ~40 items when many of them need to be added to to 5-7 different formlists to register all of the various visor effects; a(n uncompiled) script is a plaintext list, so it's much easier to keep track of what's going on. I wasn't originally planning on releasing the patch anyway, but someone asked so I posted it.
The explosion knockdown thing is from PN's rebalance module, which I'm not using, so haven't bothered making a patch for.
The explosion knockdown thing is from PN's rebalance module, which I'm not using, so haven't bothered making a patch for.