^You get (\d+) gold sovereigns from a canvas backpack\.$ PUT MONEY IN PACK####
var goldStowedTrigger = client.reflex_find_by_name("trigger", "keep gold stowed");
client.reflex_disable(goldStowedTrigger);
Then you create an alias for the "gold unlock". Again a script action with the following content:
var goldStowedTrigger = client.reflex_find_by_name("trigger", "keep gold stowed");
client.reflex_disable(goldStowedTrigger);
EDIT: typos, doh!
Answers
GMCP documentation: https://github.com/keneanung/GMCPAdditions
svof github site: https://github.com/svof/svof and documentation at https://svof.github.io/svof
http://forums.achaea.com/discussion/3800/html-5-anti-theif
It uses a control variable rather than enabling/disabling triggers, but it ends up doing exactly the same thing.