It seems this script is failing to unequip the right-hand weapon which is a dagger type weapon, it does however work for the left hand.
Here is the script:
------------------------------------------------------------------------------------------------------------------------------------------------------
Scriptname aaaQManageEffectsThresholdsScript extends Quest
if (game.getplayer().GetEquippedItemType(0) == 2) && GlobalStatStrength.getvalue() &--#60; 1
Game.GetPlayer().UnequipItem(Game.GetPlayer().GetEquippedWeapon(false))
Debug.Notification("You require 1 strength to wield daggers")
endif
if (game.getplayer().GetEquippedItemType(1) == 2) && GlobalStatStrength.getvalue() &--#60; 1
Game.GetPlayer().UnequipItem(Game.GetPlayer().GetEquippedWeapon(true))
Debug.Notification("You require 1 strength to wield daggers")
endIf
------------------------------------------------------------------------------------------------------------------------------------------------------
Any ideas?
P.S. apologies for typos.
