-
Posts
634 -
Joined
-
Last visited
Everything posted by PJMail
-
How to Remove Precombined and vis from my mod
PJMail replied to F4llfield's topic in Fallout 4's Creation Kit and Modders
If you want to revert your mod to the way it was before precombines/previs were added then use my script FO4RemovePrecombines.pas -that is what it is for. I explain it's use in the 'cleaning your mod' section of this article https://www.nexusmods.com/fallout4/articles/4761 I don't recommend brute force erase of all precombines/previs. Many cells in a mod are there for reasons other than new precombines... -
How to set Cripple Body Parts as default?
PJMail replied to Qrsr's topic in Fallout 4's Creation Kit and Modders
Not sure whether you figured this out, but I noticed that when those AVIDs hit 100 the NPC gets the "crippled" event for that body part - so perhaps just setting the AVID of the body part to 100.0 will do what you want?- 1 reply
-
- animation
- body part data
-
(and 1 more)
Tagged with:
-
If you read my article on how precombines/previs works it would all be clear. I even have a section on what happens when you move precombined objects. Qrsr wants you to not use precombines/previs, I produce procedures and processes to rebuild them so they work for you... You are free to use either process. https://www.nexusmods.com/fallout4/articles/4316 Unfortunately Bethesda made it overly complex and buggy (because they did not plan for modders). It is what it is... Modding is not easy anyway.
-
So Much wasted space. Old style I get to see the first 5 actual mods (16x10 screen), new style I just get to the collections header. I suppose those on a 4K screen see more but not everyone wants everything so tiny. Also hate the tiny thumbnail images now on mods - most authors have tailored that first image to show their mods to their best. It won't go down well. Unless we can tailor that home screen to our own individual layout preference (content,size,order) - then everyone will love the change, as that is all we actually want.
- 191 replies
-
- 10
-
-
-
Static Collections and PreCombines
PJMail replied to Qrsr's topic in Fallout 4's Creation Kit and Modders
One thing that has been mentioned by others recently is that an SCOL can only be culled for occlusion as a single object, whereas parts of precombines can be culled. This would mean that Precombining objects are better for occlusion culling than SCOLing them - so give a performance advantage in very congested areas like Boston. I have not verified this, but it is worth testing...- 26 replies
-
- scol
- performance
-
(and 3 more)
Tagged with:
-
Mod Request - General Flicker Fix
PJMail replied to KbTiger127's topic in Fallout 4's Creation Kit and Modders
If the whole screen flickers it could be a video driver issue (game incompatibility). I have certainly had video games that did not work properly with certain versions of video drivers (as crazy as that sounds). It tends to get more common with older games as the driver writers aim optimisations at current games - sometimes to the detriment of older games. Can you give more details on your machine, and what actually flickers?- 9 replies
-
- Mod
- Mod request
-
(and 1 more)
Tagged with:
-
[Workshop] Just create workshop, no settlement.
PJMail replied to Zorkaz's topic in Fallout 4's Creation Kit and Modders
So that is how portable Workshops work? I am surprised about the default 5K radius - unexpectedly useful decision by Bethesda (I expected you had to place a workshop boundary object). -
The crashed Alien in the Cave.
PJMail replied to Venomized7's topic in Fallout 4's Creation Kit and Modders
There is a mod with a companion alien as part of it (and a Mars colony!) - probably more than you want? https://www.nexusmods.com/fallout4/mods/64499 Also there are a couple of alien companion mods on Nexus. Adding is always less conflict prone than modifying existing in-game quests so it's why they are more popular. Search "Zetan". -
It appears standard Plasma bolts (projectile) cannot be seen through the front windows of a Vertibird (all other projectiles can) and also have no effect. Only the muzzle flash is visible. Basically the player has a plasma weapon who's 'projectile' point is outside the VB while the player is inside. It works fine for Laser, 5mm bullets and missiles. I am very surprised even the impact effect does not happen (so it causes no damage). Anyone have a clue why/what is going on here?
-
Trying to get some basic idea of how the names of hkx files are related to actions. I known the Race Subgraph has the relationships between the Race Behavior Graph hkx, the NPC, the Furniture, and the locations to find the correct animation files - but I don't know how a particular Action/Idle picks an animation file name to use. Example... To force an NPC to sit you use the Action "ActionInteractionEnter [AACT:0002248F]", which generally resolves to the Action Idle "FurnitureEnterFromStand [IDLE:00024577]" (for generic furniture and human NPCs) with Behavior Graph "FurnitureBehavior.hkx" and Animation Event "sitStartFromStand". For most Furniture this seems to resolve to looking for "EnterFromStand.hkx" animation file. My question is - how does the game go from the behavior Graph (and Event name) to the name of the hkx it wants to use? Is it somehow in the Behaviour graph file?
-
You have given yourself a lot of work there, but the community will appreciate the result. Good luck!
- 619 replies
-
- precombines
- occlusion
-
(and 4 more)
Tagged with:
-
XPRI references can be anything that won't move (either position, animated, or by being scraped via workshop) as it has pre-calculated occlusion information in the uvd file. Removing these from XPRI means there is no occlusion culling of them (so they are always rendered). I am surprised doing this increases FPS - but I can imagine there is very little occlusion in the confined space of an internal cell so I would have been less surprised if you said "no change". XCRI must be static objects as they are duplicated into the precombined nif (which is like an SCOL) and then only that nif is displayed (or the part/node that is not occluded). Removing a ref from the XCRI has the same effect as with XPRI - now that reference is always rendered directly, so probably not a serious optimisation as limited occlusion in a confined space of an interior. Still surprised FPS is improved though - you would expect 'some' performance improvement even if only a few objects are culled via occlusion. Perhaps running the test on a large interior may give a different result. Very interesting tests you have done though!
- 619 replies
-
- precombines
- occlusion
-
(and 4 more)
Tagged with:
-
Combined objects are ONLY those in the XCRI - not necessarily just those bracketed. Only refs in the same mod will be bracketed, but XCRI can contain combined refs from other mods. Does your image only show XCRI or is it XPRI? Both are involved in the optimisation, so it is important to be clear. Also in your tests you should always do TPC to verify you have not accidentally disabled previs, which would invalidate your results. Very interested in your results. What makes you think roombounds and portals operate even if previs is working? Dogma is that it's one or the other...
- 619 replies
-
- precombines
- occlusion
-
(and 4 more)
Tagged with:
-
items placeable on shelves?
PJMail replied to rogallia's topic in Fallout 4's Creation Kit and Modders
Probably, but the issue with precombines is the CK cannot precombine a high precision mesh - and for some reason the nif from an SCOL is high precision. -
items placeable on shelves?
PJMail replied to rogallia's topic in Fallout 4's Creation Kit and Modders
Be aware that turning an SCOL back into a static will crash the CK if at some point you attempt to build precombines with it. The nif in an SCOL tends to be set to high precision which is a CK crasher. Very decorated shelves will cause FPS drops so people will usually precombine the area to restore performance - so this is not a theoretical issue... It happens constantly with such mods.... -
Glitchfinder developed the immersive repair process and the scripts used by most other authors (the system that uses the workshop mechanic used to 'repair' broken settlement objects). However you can just use the 'swap' technique via enable-parent (that just involves scaping one object that is the 'parent') - which may be what zorkaz uses. That process is fairly simple and used extensively by Bethesda in quests. Which process are you referring to?
-
Check out VEFS mod on nexus - considerable work has been done by doubleyou to resolve these sort of issues.
-
Perchik71 has been fixing the CK bugs for some time now so, as long as you are using latest CKPE you should be fine with the latest CK version. Precombines have not changed so any issues with precombines will be generation based, not game version. Many people generate them with old CK etc versions but use them on later FO4 versions. The real issue is archive (ba2) versions and CC content when going the reverse way.
-
You can do it all the hard way with stone knives and bear skins, or just run my scripts from my nexus mod. Either way I would suggest reading my deep dive article which will fill you in on the pitfalls but also tell you how to use the ck to do it the manual way. Welcome to the precombine/previs rabbit hole.
-
I hear you, they are not realistic if it's dry. I know doubleyou does a similar thing for trees in their seasons mod, but they use scripts. If this is for your fixes mod then I think there is a generic script you can use so you don't need to add a ba2. Can't find it ATM however. Something that annoys me more is the rain effects inside, but there are also mods that try and fix this which suggests it is much more difficult...
-
The way most quests do it is attach an enable parent on the refr of those objects and enable/disable that parent object in script. I am sure you know this so I guess I am missing something... Do you just have a lot of objects you want to individually control - or do some of your objects not act correctly when enabled? Not sure what your actual issue is...
-
Help updating F4se material swap script
PJMail replied to ignorantslave's topic in Fallout 4's Creation Kit and Modders
Unfortunately I agree. Unless Bethesda creates another NG update I don't think there will be any further work on F4SE. Ian noted NG changed the matswap code so it is probably non-trivial to fix.- 6 replies
-
- material swap
- papyrus
-
(and 1 more)
Tagged with: