Jump to content

PAPVAFS11

Members
  • Posts

    161
  • Joined

  • Last visited

Nexus Mods Profile

About PAPVAFS11

Profile Fields

  • Country
    None
  • Currently Playing
    Something relevant
  • Favourite Game
    Something specific

PAPVAFS11's Achievements

Community Regular

Community Regular (8/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. This shows up whenever I have Toggle Sky enabled. It's a horizontal pink plane attached to the camera that's only visible when looking up or down. It goes away when it's disabled. Anyone know what's up with this? I would also appreciate help with getting rid of these weird outlines on everything, if anyone knows. They go away when the camera's moving.
  2. I seem to recall that there was a way to have AND conditions and OR conditions function together in things like spells and dialogue. So that, in one case, you could have an actor need to be Mr. X for a spell to work, and that he would need to have either his Y or Z value at 30. Could anyone help me remember how this was done?
  3. I was able to find it myself, but I appreciate the tip. I've already got it running, and it seems to be working fine. I think SPID is easier for me to wrap my brain around, but I appreciate the advice all the same. This will help me with a music flavor system I've been thinking about, though, so this is something I'll surely need to remember later.
  4. I have multiple mechanics included in my mod that are meant to affect all human actors, the player included. At present, the existing mechanics are implemented directly into the HumanRace form. This is acceptable for my mod as it's not intended to be compatible with anything else, but I know this is bad practice, and I'd like to find a more flexible solution. With respects to my previously-posted thread, I do not intend to have fast-looping timers on all human actors, and will have substantial checks to minimize unnecessary processing.
  5. I have several applications for looping short timers. I'm at a loss for how I would change them to be reactive instead of proactive, as several of them monitor for actor value changes, like STR, END, and AGI. For example, I have a speed penalty handler to clamp SpeedMult penalties. I'm also using this as a workaround for SpeedMult penalties on NPCs, as I couldn't get spell-driven SpeedMult changes to work on them. This interacts with both armor enchantments and conditional spells that add to or subtract from the speed penalty AV. Another script I wrote handles encumbrance, and that relies directly on SPECIAL values in the encumbrance calculation itself. I don't currently know of any events that trigger on AV changes or spell applications, so I wouldn't know how to break from timers. My playtesting showed me that delays greater than a second were also very clunky for the player, so I tried to keep it short. At the very least, I do have conditional checks inside the timers (IsDead(), GetValue() != fLastValue, etc.) to be sure they actually need to do something, or if they should stop where they are. NPC timers are also usually around 3.0-5.0 seconds. If there's any way I can improve these, I'm all ears. I can post the full scripts if need be.
  6. Event OnTimer(Int iTimer) if iTimer == 1 DoRepeatingTimerStuff() if akOurActor == Game.GetPlayer() || akActor.HasKeyword(ImportantActorNeedsFastTimer) StartTimer(0.1,1) else StartTimer(Utility.RandomFloat(0.5,1.0),1) endif endif EndEvent The intent of this is for repeating timers assigned to many objects to not all tick at once, and to give some headroom for them to finish what they're doing before the timer ticks again. I ask this question as I don't know how expensive RandomFloat() is. That also leads into this example: Event OnSomethingHappened(Actor akHappener) if akHappener != Game.GetPlayer() Utility.Wait(Utility.RandomFloat(0.1,0.5)) endif DoEventStuff() EndEvent Again, in the case that OnSomethingHappened() is called by many simultaneous sources, the Wait() is called with a RandomFloat() to nudge them into happening at different times. Do these work as I want them to? I don't have anything I need them for, but I'd like to work them into habit if they're useful.
  7. I did some digging, and I found the cause. It turned out that this was an incompatibility interaction between Survival Options and my personal mod. The root cause was me editing the HC_Manager quest and script, which broke Survival Options' own edits. That ended up turning the survival cell reset multipliers to zero. Whoopsie. I've decided to shelf Survival Options, since it turns out I'm already getting the features I wanted out of it from Unlimited Survival Mode.
  8. I was unfortunately able to reproduce the issue after a standard new game. If it is of any importance, I will note that the timescale adjustment is part of one of my mods. I can't say for certain whether this would have any effect on cell respawns, but I'm not sure I've touched anything else relating to them.
  9. I'm having a problem where cells are respawning way too fast. This is a reset inside half an hour, with a slower timescale than usual. Here's my usual testing routine: Hardcore mode, timescale at 5. coc ConcordUndergroundExt from main menu. Give myself an AK, do SPECIAL/character name setup, kill the raiders around Preston. Move north, clear out the raider camp near the mole rat pack. Move through the woods to Red Rocket, fight mole rats as necessary, dump unnecessary inventory items at Red Rocket. Move north through Sanctuary to the cliff across the river. Scale cliff, clear raider camp under transmission tower. Move south to Abernathy Farm, passing by campsite random encounter location. Finish loop by returning to Concord.By the time I get back to Concord, the raiders have respawned. Doing additional loops also shows that the other camps have respawned, and random encounter locations have reset. I would post a mod list, but none of the mods I have are published anywhere, and most of it is original work. Does anyone know what could be causing this?
  10. Does anyone know where the player's unspent perk points are stored, if anywhere? That'd be the first place to start looking.
  11. I am interested in learning about InstanceData. I'd like to be able to create my own alternate ammo system for my personal project. Is this offer still good?
  12. Unfortunately, that solution is indeed impractical for my purposes. I want the player to be able to swap between headlamps, gun lamps, and power armor lamps on the fly. I was hoping someone might've figured out an F4SE solution, since I figure that's the only way to cut into engine-level problems like this. I guess I'll just have to make due with basic circles.
  13. Last I tested, that doesn't work. The problem I'm referring to is that the game drops gobo textures after the first one is loaded. So, for example, if you switch on your PIP-Boy light, its gobo will load fine. If you put on power armor and switch on the headlamp, the gobo will fail to load, which also tints the entire flashlight slightly pink (since it's technically overlaying a "missing" texture). The reverse is also true. Near as I'm aware, this applies to any gobo texture used, at least on flashlights.
  14. I'd like to be able to add detail to my flashlights instead of just settling for a simple circle.
×
×
  • Create New...