Jump to content

Need Help From a Script Wizard


NamelessFreak

Recommended Posts

Posted

Help me, LL! You're my only hope!

 

Okay, so randomly browsing mods, I came across someone who suggested using this script:

 

 

Scriptname zDragonFootIkDisable extends ObjectReference

Event OnLoad()

SetAnimationVariableBool("bNoFootIK", true)
;debug.notification("bNoFootIK state: " + GetAnimationVariableBool("bNoFootIK"))
RegisterForSingleUpdate(10)
endevent

Event OnUpdate()
RegisterForSingleUpdate(10)

SetAnimationVariableBool("bNoFootIK", true)

endEvent

 

 

to make dragons bigger and not have their feet glitch out. Problem is I have no idea what to do with this or how to impliment it (or if it even works to begin with). I have absolutely zero experience with scripts, so I was hoping someone could help me with it. Any help would be appreciated. Thank you. :)

Posted

This script changes a property (footIK) on something placed in the 3D world (that is an ObjectReference), probably the object is a Dragon.

 

Now, you can just create the script inside the actor (a Dragon), but I really don't like scripts that will execute forever and never stop.

This way is a good way to corrupt a save in case you will ever remove the mod.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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