maybe someone can help me with a little hint
i want to add some more shortcut words for buffing.
Now my bot is buffing on tell or if someone tell in group "SV" but i want to add some other shortcuts like "bstbrell"
What must i add to this macro that he handle more shortcuts ?
Thanks
i want to add some more shortcut words for buffing.
Rich (BB code):
/if (${ChatText.Equal[SV]}) {
/if (${Target.Type.Equal[NPC]} && ${Me.Combat}) {
/if (${useMU} && ${Stick.Status.Equal[ON]}) /squelch /stick off
/attack off
/varset midfightcast TRUE
/varset oldtargetID ${Target.ID}
}
/target pc ${Sender}
/if (${Verbose}) /tell ${Sender} SV inc!
:svwait
/if (${Target.Type.Equal[PC]} && ${Target.Distance}<=100) /call cast ${SpellHPBuff} gem6 9s
/if (${Macro.Return.Equal["CAST_SUCCESS"]} || ${Macro.Return.Equal["CAST_NOTHOLD"]}) /goto :svdone
/goto :svwait
:svdone
/if (${midfightcast}) {
/varset midfightcast FALSE
/target id ${oldtargetID}
/if (${Target.ID}==${oldtargetID} && ${Target.Type.NotEqual[CORPSE]}) {
/if (${useMU}) /squelch /stick on
/attack on
}
}
}
What must i add to this macro that he handle more shortcuts ?
Thanks