"Best" way to translate a phisical game gesture in a module?

Hotkeys or named commands send from the Turn Counter are only sent to the module as a Global Key Command. To send the hotkey or named command on to a piece you need a trampoline Global Key Command.

Suppose your Turn Counter send the named command RollInitalTokens. Then you need a Global Key Command in the module that triggers on that named command and sends it on to the piece - e.g.,

  • Global Key Command
    • Hotkey: RollInitalTokens
    • Global key command: RollTokens

What happens is that the Turn Counter issues the named command RollInitialToken, which is picked up by the module Global Key Command. That Global Key Command then sends the named command RollTokens to the appropriate pieces.

The Turn Counter hotkey or named command is never seen directly by pieces.

Yours,
Christian