anyone have/seen a macro that autobuffs on a tell? such as,
blah tells you, 'virtue please'
You begin casting spell: Virtue.
Moderator: MacroQuest Developers
This script would be easy to make. The problem is for what you are asking is easily abused... And or noted as a bot and or will cast at the wrong time..tea wrote:anyone have/seen a macro that autobuffs on a tell? such as,
blah tells you, 'virtue please'
You begin casting spell: Virtue.
Code: Select all
Sub Event_Chat(string chatType,string chatSender,string chatText)
| ... stuff
/if ( ${chatText.Find[virtue]} && !${buffTimer_virtue_${chatSender}} ) {
/if ( !${Declared[buffTimer_virtue_${chatSender}]} ) /declare buffTimer_virtue_${chatSender} timer outer
/varset buffTimer_virtue_${chatSender} 5m
/target pc ${chatSender}
/call cast "virtue"
}
/return
Sub Event_Timer(string timerName,int timerValue)
/if ( ${timerName.Arg[1,_].Equal[buffTimer]} ) /deletevar ${timerName}
/return