Many many years ago (real life years) I wrote a plugin for zMud which was OK, but had limitations.
I have finally redeveloped it as a Proxy.
It is an engine that understands afflictions, defences, balances and so on. Unlike most proxies it has a user interface where you can configure all the knowledge you have of combat in Iron Realms systems.
It currently does not do triggers. You communicate with it by sending commands such as "#SetAffliction annorexia true" or "#SetBalance equilibrium false"
Version 2.0 will have triggers
It has a background thread that checks if anything can be done and if it can does it 20 times a second (interval is fully configurable).
The sourceforge project is https://sourceforge.net/projects/acombatmasters
The source code is platform independant, but I have only setup an installer for windows at the moment.
I think you will find the interface basic, but very understandable.
Let me know what you think of it!
Regards,
Martok.
PS: The full list of commands is
#SetAffliction <name> <true|false>
#SetBalance <name> <true|false>
#SetDefence <name> <true|false>
#SetDefenceGroup <name>
#SetResource <name> <quantity>
#Increment <name> <incrementQuantity>
#Decrement <name> <decrementQuantity>
#Pause <true|false>
An example of each is
#SetAffliction annorexia true
#SetBalance equilibrium false
#SetDefence blindness true
#SetDefenceGroup hunting
#SetResource cohosh 500
#Increment cohosh 1
#Decrement cohosh 1
#Pause true
#Pause false
Note: Pause is used when you don't want the system to take action.