Difference between revisions of "Questions"

Jump to navigation Jump to search
802 bytes added ,  03:29, 21 June 2006
imported>Waerloga
m
imported>TheImperialDragon
Line 1,005: Line 1,005:


How do you make an Object, for example an armour item,  STATIC, so that the PC cannot interact with it? (EDT)
How do you make an Object, for example an armour item,  STATIC, so that the PC cannot interact with it? (EDT)
I'm not sure about static, but you can make it so that the player cannot pick the item up either two ways:
1. Creating a new static object: Download either [[TES4BSA]] or [[BSA COMMANDER]] to unpack the BSA files. Next, to simply create a new static object and apply whatever mesh you want it to take the form of.  The player won't be able to pick the object up, but will be able to move it around via the "Z" key.
2. Via a script: Create a new script that you place on the object so that when the player attempts to pick it up, nothing happens.
<pre>
scn StaticScript
Begin OnActivate
  Return
End
</pre>
If you wanted it so that the object cannot be moved at all, you could always use collision boxes around the object. [[User:TheImperialDragon|The Imperial Dragon]] 03:29, 21 June 2006 (EDT)

Navigation menu