I need help with a script, what I am trying to do is set the property of a script using another script.
What I need is some simple (and I mean simple and easy to understand) examples of scripts that do just this. What the script would have to do is change the property of another script when a specific item is equipped so base your examples on that basis pls, thanks
Also use Script01 as the name for the script that would have the property which would be changed by the other script (Script02).
scriptname Script01 extends Quest
If Hand01 == false
additem01
elseif Hand01 == true
additem02
end
Bool Property Hand01 Auto
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
scriptname Script02 extends ObjectReference
event onequip()
(here is where the property (Hand01) attached to Script01 is set by Script02)
endevent

