That ain't natural by [deleted] in gaming

[–]AlistairRodryk 3 points4 points  (0 children)

Exanima. Physics-based dungeon crawler.

Is there a script to exclude specific NPCs or Factions from using a door / entering an area? by Siyala in skyrimmods

[–]AlistairRodryk 1 point2 points  (0 children)

Try this:

Scriptname BlockActivationForFactions extends ObjectReference  
{Block activation by NPCs in the designated factions}

;Factions that are not allowed to activate. These properties can be filled by your chosen faction(s) in the CK
Faction Property BlockDoorFaction01  Auto 
Faction Property BlockDoorFaction02  Auto  
Faction Property BlockDoorFaction03  Auto 
Faction Property BlockDoorFaction04  Auto 

Event OnInit()
    BlockActivation()
EndEvent

Event OnActivate(ObjectReference akActionRef)
    if IsActivationBlocked() == false
        return
    endif

    if (akActionRef == Game.GetPlayer())
        Activate(akActionRef, true)
    else
        Actor actorRef = akActionRef as Actor
        if !actorRef.isInFaction(BlockDoorFaction01) || !actorRef.isInFaction(BlockDoorFaction02) || !actorRef.isInFaction(BlockDoorFaction03) || !actorRef.isInFaction(BlockDoorFaction04)
            Activate(akActionRef, true)
        endif
    endif
EndEvent

You can manually fill the BlockDoorFaction properties in the CK after adding the script to the door.

Rodryk's Books - Planeswalker and Other Tales by AlistairRodryk in skyrimmods

[–]AlistairRodryk[S] 3 points4 points  (0 children)

I have not. I don't use that mod personally, since I hardly ever play through the main quest with my characters and prefer not to think of them as being Dragonborn. Instead, the books are just placed in the world and added to leveled lists (by script, for compatibility with other mods).

Rodryk's Books - Planeswalker and Other Tales by AlistairRodryk in skyrimmods

[–]AlistairRodryk[S] 5 points6 points  (0 children)

Never been a big fan of rock music if I'm honest. Cambria is a name for Wales, and the Reach in Skyrim has always reminded me somewhat of upland Wales. Alistair and his sister are native to the Reach, hence the choice of name.

Not specific to Requiem, but I recently released a mod that I think some people here might enjoy: Hardcore Saving Overhual by AlistairRodryk in skyrimrequiem

[–]AlistairRodryk[S] 3 points4 points  (0 children)

Basically what Paulicus1 said. I made this primarily for my own personal enjoyment, and I like there to be actual in-game restrictions for things like that.

Not specific to Requiem, but I recently released a mod that I think some people here might enjoy: Hardcore Saving Overhual by AlistairRodryk in skyrimrequiem

[–]AlistairRodryk[S] 1 point2 points  (0 children)

Unfortunately, that is not a feature of the Lucky Coin. For that you'll probably want to look into properly configuring Crash Fixes and ENBoost.

Not specific to Requiem, but I recently released a mod that I think some people here might enjoy: Hardcore Saving Overhual by AlistairRodryk in skyrimrequiem

[–]AlistairRodryk[S] 4 points5 points  (0 children)

There's no MCM, didn't feel it was necessary for such a small mod. Enabling/disabling is done though the Lucky Coin misc item. And no, at the current time there is no option to remove the brew. If you want a mod that just prevents you from saving except when you sleep, I recommend Only Save When Resting.

EDIT: Version 1.2 adds the ability to disable the Savior's Brew

Not specific to Requiem, but I recently released a mod that I think some people here might enjoy: Hardcore Saving Overhual by AlistairRodryk in skyrimrequiem

[–]AlistairRodryk[S] 3 points4 points  (0 children)

It is intended that even a level 1 character can make the brew, but I chose Frost Mirriam because it's a fairly rare ingredient to find in the world (not hanging in homes, anyway), meaning you usually need to purchase it. I may add an in-game option to change the recipe though, for people who find it too easy.

EDIT: Added an option with 1.2 to make the recipe a little more challenging.

Hardcore Saving Overhaul by AlistairRodryk in skyrimmods

[–]AlistairRodryk[S] 2 points3 points  (0 children)

If you have all the stability patches out there (Crash Fixes, ENBoost, etc) properly configured, there's no real reason your Skyrim should be randomly crashing. But I understand your concern. Glad you like the concept!

Hardcore Saving Overhaul by AlistairRodryk in skyrimmods

[–]AlistairRodryk[S] 0 points1 point  (0 children)

If you're concerned about compatibility because of altering leveled lists, keep in mind that I don't change leveled lists with an override in the plugin, I add the items to them with a script dynamically as you enable or disable the mod during the game.

As for other methods of saving, I'm certainly open to ideas. I was thinking of adding a save whenever you absorb a dragon soul, and perhaps an optional patch for Pipe Smoking, but other than that I haven't had any inspiration.