is there a command I need to use inside the script to make it update? It pulls the info when I log in but does not update the miniconsole any other time
Assuming your routine to display gold is displayGold(), add the following line to the bottom of the script block containing displayGold(), after the end of the function:<br>registerAnonymousEventHandler("gmcp.Char.Status.gold","displayGold")
Every time your gold amount is updated, it'll fire the script.
Tharos, the Announcer of Delos shouts, "It's near the end of the egghunt and I still haven't figured out how to pronounce Clean-dat-hoo."
Comments
You'll want a script that's hooked to a GMCP event for your character stats.
Inside the second script, you'll want to clear the miniConsole, then echo your current gold (which is stored in GMCP) to your miniConsole.
<br>registerAnonymousEventHandler("gmcp.Char.Status.gold","displayGold")
Every time your gold amount is updated, it'll fire the script.