I'm trying to copy the talking part of the stealthsuit mk2 onto another armour, and right now I'm having troubles with scripting the quest. Specifically, I can't get GECK to swallow the object script:
scriptname 1BigMTRiotGearObjectSCRIPT
;copy of nvdlc03auralstealthsuitobjectscript for bigmt ranger gear mod
BEGIN OnEquip Player
Set 1BigMTRiotGearQUEST.bEquipBark to 1
END; onequip player
BEGIN OnUnequip
Set 1BigMTRiotGearQUEST.bUnequipBark to 1
END
It throws errors about 1bigmtriotgearquest.bequipbark and bunequipbark not existing, even though they clearly do (the name is directly copied from the quest, and the script in the quest is copied too, safe for the player.getequipped checks). Help? What am I doing wrong?