Thanks, Cipscis. I didn't think there was. Just wanted to make sure.
Am trying to convert my Encumbering loot armour and weapons Oblivion mod to Skyrim.
In that mod, the player is given an invisible inventory object/token (can we still do this?) that is used as a weight penalty to the player.
Any armour or weapon that is not equipped have their weight added to that token's weight.
I'm currently trying to add a script to an Aliased player but it doesn't seem to work:
1. I created a quest with the PlayerRef as an Alias: PlayerRefAlias
2. I attach a script to that Alias.
Scriptname kuELAAWPlayerS extends ReferenceAliasEvent OnItemAdded (Form baseRef, Int count, ObjectReference itemRef, ObjectReference fromRef) Debug.Notification ("!kuELAAWPlayerS.OnItemAdded " + baseRef + ", " + count + ", " + itemRef + ", " + fromRef)EndEventEvent OnItemRemoved (Form baseRef, Int count, ObjectReference itemRef, ObjectReference toRef) Debug.Notification ("!kuELAAWPlayerS.OnItemRemoved " + baseRef + ", " + count + ", " + itemRef + ", " + toRef)EndEvent3. The script compiles.
4. But the Notifications do not seem to fire.
5. As I understand it, any changes to the player's inventory should go through these 2 Events.
Do you see anything? Maybe onItemAdded / OnItemRemoved does not trigger on the Player.