Jump to content

Question about vanilla scripts.


ThornsWisdom

Recommended Posts

Hidden in this case is a script flag. It basically hides the script from the list of scripts that appear when you are attaching one or more scripts to an object in the Creation Kit.

More information: http://www.creationkit.com/Flag_Reference

 

In your example:

Action.psc extends the script Form

Action.psc is then marked Hidden so that it does not appear in the list of attachable scripts

 

As far as action.psc doing nothing else... Bethesda probably anticipated using it but ended up doing things differently. Like many unused things they left it in a state where it would cause no harm to the game.

Link to comment
Share on other sites

Hidden means the script was not intended to directly have an instance. Script instances are created by attaching them to Forms (Hidden prevents this). These scripts are intended to be extended or contain global functions.

 

The empty scripts are not unused. These are the base object scripts for Forms you see in the CK object browser. You could add your own functions to these base scripts and every object of that type will have the new function built in. It is bad practice to edit the base scripts with SKSE being the exception.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...