Could Someone create a Script for me ?

CRAIZEprince

First time out of the vault
I am horribly at scripting and i was wondering if someone could make me a script that contains that will open all doors (this script will be assigned to an item) , even quest based doors .
It's for an idea of a mod that i have.

Thank you very much !! :D
 
afaik, no... you can't.

Mainly because doors that are locked with a key don't always -have- a key, ie: they could be jammed for instance, or intentionally blocked off because there's nothing behind them.

Developers often do this as a means to control explorative flow.
 
If u really want u only need normal opening script which include modifier like "steel doors aa01q" wher "aa01q" is a modfier so if the doors that have this in its name or id will be opened by script. But this require lots of work actually not to mention editing the quests and stuff so its only if really really wanna do it :D
 
This should be fairly easy to do with a perk using an "Activate" Entry Point.

You'll want to check the "Run Immediately" checkbox and use a script like this:
Code:
if GetOpenState && GetLocked
	Unlock
endif
Cipscis
 
Back
Top