Jump to content

TrickyVein

Premium Member
  • Posts

    1140
  • Joined

  • Last visited

Everything posted by TrickyVein

  1. I have this script working now through using an attached art object to add custom node names onto the player. Getting the weapon to fire only works in 3rd person, though. The objectreference and weapon both get created in 1st and in 3rd person, but the thing only fires when in 3rd. So, 'akSource' has to be used (or at least works) to get a gun to fire in first person, as well as in 3rd. Why using the objectreference only works in 3rd person is still bizarre.
  2. Holy thread resurrection Batman, but I've been running into this problem where PlaceAtNode works in 3rd person, but not in first, attempting to attach an ObjectReference to the player's bones. (Nevermind that when it does work in 3rd person, seemingly absolutely nothing I've tried overrides the orientation/position of the NiNode/Bone that my objectreference is getting attached to.) Here is my simple script: Scriptname HandsawProjectileScript extends activemagiceffect actor ThisGuy ammo property ThisAmmo auto weapon property ThisGun auto String ThisAnim = "hitFrame" EVENT OnEffectStart(Actor akTarget, Actor akCaster) ;debug.notification("Is this thing on") ThisGuy = Self.GetCasterActor() RegisterForAnimationEvent(akCaster, ThisAnim) ENDEVENT EVENT OnAnimationEvent(ObjectReference akSource, string asEventName) if asEventName == ThisAnim string ThisEvent = asEventName debug.notification("You did " + ThisEvent + "") ObjectReference FakeGun = ThisGuy.PlaceAtNode("ProjectileNode", ThisGun) Weapon ThatGun = FakeGun.GetBaseObject() as Weapon ;FakeGun.MoveToNode(FakeGun, "ProjectileNode", "P-Origin") ThatGun.Fire(FakeGun, ThisAmmo) RegisterForAnimationEvent(ThisGuy, ThisAnim) FakeGun.Delete() ThatGun = NONE endif ENDEVENT Now in this example, I'm trying to match the weapon to the ProjectileNode which I thought would have been inherited as part of the player's nodes because of the currently equipped weapon, but this does not work. Everywhere else I've read says it should, but maybe only for armor pieces and not weapons?
  3. I have at least narrowed down the CTD issue to the following: Forget about exploding vehicles. If the projectile takes damage from literally ANY explosion (and I assume from anything else as well) the game will CTD. Tried: Collision/No Collision Explosion on impact, no explosion Explosion on alt timer/none Destruction stages enabled/none Explosion property filled in even without 'explosion' flag like on some vanilla projectiles (casings) Default weapon source/none Leaving impact data for everything as default instead of bounceGuess I need to go find a point at which the game WON'T CTD when a lobbed/missile type projectile takes damage from another source and go from there because this is ridiculous!
  4. Looking for discussion/insight on manipulating projectiles, impact data and explosions and what the engine best supports. I am getting a pretty consistent CTD just when a vehicle is about to enter its last destruction stage and explode having taken damage from being hit by a bunch of (at least 11 total like a shotgun fire) missile type projectiles with havok, (so they's bounce off metal type surfaces). Whether the missile has the explode flag or not doesn't seem to affect whether the game crashes when firing at an explosive car. Using the 'lobber' type projectile so damage isn't registered on hit does not seem to lead to CTD when firing at a vehicle, but the vehicle seems to take damage from being hit by havok though which is what makes it go boom in that case. So there are multiple things going on when the missile 'hits' to do damage including having impact data, its own havok which does damage potentially and then whatever weapon damage it deals as divided amongst the weapons projectile count. Does the engine just suck at handling multiple projectiles (wouldn't think so)? Is havok leading to CTD (the game can handle a heck of a lot more collision interaction than just firing a dozen or .nifs at one moveable static/activator)? There is also this 'has 3d based ammo count' flag that isn't documented and unknown what it does: I am working on this weapon that works flawlessly firing at actors, the ground, with a gazillion of these projectiles strewn about with no performance loss, but somehow, when I go to retire some old vehicle, the game just says 'lol nope' and CTD. Why?
  5. Ladies and gents, the Skyrim modding community.
  6. Huh. For the brief time comparatively that I've spent in the institute I never did not no how notice this. Thanks for sharing!
  7. Market? I guess not everybody approaches modding that way. The b) market's loss will truly be felt.
  8. In my case, it would be too much to list in a description. I'm thinking about actually releasing a pdf version of changes, but then almost nobody would be guaranteed to read it.
  9. Yeah, pretty much. Too much work. Like waaaaaaaaaaaay too much. Can't even. Not going to happen. I think it's amusing, what can be put into a bullet point like it's a simple thing, and only if it can be checked off. Except for all of those specific details about the thing, and getting it checked off. If only.
  10. The Commonwealth really lacks a consistent unifying theme to make it interesting. Fallout 3 went full post-nuclear. New Vegas had the desert. It really becomes clear in Fallout 4, too like when you compare Far Harbor to the vanilla Commonwealth - Acadia is dripping with atmosphere. The Commonwealth has clear, blue skies and... leaves. It could be just any other crisp, New England, Fall day. I think winter overhaul mods make the commonwealth look the best, maybe because the weather and sunlight is meant to look like fall/winter.
  11. NV is the same (vanilla) only it was a brown lens :p Fallout, generally has a problem with trying to rectify what the player sees, visually in terms of artistic direction wanting to convey the destructive legacy and horribleness of nuclear war with the amount of time that has actually passed in the universe which by all accounts, realistically, would have swept most of the evidence of war away. Bethesda seems to want to make Fallout games that look and play like they take place mere decades after the great war, regardless of timeline.
  12. Fallout 4's visuals or aesthetic is way, way, way down on the list of things it could be criticized for when it comes to discussing canon. It's also something I think the artists handled very well especially with staying true to some things like the designs of robots (sentry) or armor like the t51-b suit. The color schemes can be clashing at times but I think that was a deliberate decision to address previous voiced concern about fallout 3 being too monochromatic or dull, too 'green.' You can never win with fans.
  13. \ Nope, nothing comes up. You'll probably have to be more specific. There's a legendary perk for reducing damage against animals. You'd probably just need to create a mod entry for modifying outgoing player damage with the condition for being in the animal faction.
  14. Yeah it's the value of the mod's associated misc mod. It's not in the COBJ record, but the MISC record. The game defaults to using other rules when all of the values of mods in a list are the same or something like that.
  15. Look at this site. https://www.creationkit.com/index.php?title=GetValue_-_GlobalVariable
  16. Just download the old .exe from the steam depot.
  17. Lots of pixel-matching software is free and photogrammetry is already used in the industry, but it's probably better suited for static set pieces rather than characters which require a bit more attention to how things get triangulated.
×
×
  • Create New...