[Only registered and activated users can see links. Click Here To Register...] here, a mod and dev from the OpenKore project. Just a macro tip: remove the useless run-once/release combos if you're simply releasing at the end of the macro. Here's why:
1. Automacro is triggered, also locks the called macro.
2. The macro called by the automacro is now locked.
3. The called macro runs.
4. You have the macro release itself, so it's now unlocked and can be run again.
See any redundancy in there? Why not reduce that down to:
1. Automacro triggers
2. Runs macro
Since the macro in the first post should only be run once per session (
not once per connection, unneeded), the
release should be removed.