Charm Break Alarm?

Status
Not open for further replies.

antld0te

Member
Joined
Jun 17, 2006
Messages
117
Reaction score
0
Points
16
Is there any sort of plugin that will alarm the caster when charm breaks, perhaps with a beep or some other signal? I use charm to solo a lot as my enchanter, and sometimes I end up going over to another window than EQ and it gets covered up. Then, when I click back on the EQ window, I find myself naked at my bindpoint. :p
 
Do you always get a worn off message when it breaks? Could easily base it off of the text. I don't know that MQ2 can tell if a spell wears off of someone else.
 
It always reads:

"Your <charm spell name> spell has worn off of <charmed mob>."
 
Code:
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| chanter.mac
|
| Tracks Charm for you
| by: kryologik
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
|Charm Success Message
#event newPet "#*# has been charmed"
|Charm Break Message (change this to suite your spell)
#event charmBreak "Your Command of #*#"
#turbo 


Sub Main

/declare petName string outer

:loop
/doevents
/goto :loop

/return

Sub Event_charmBreak
             /echo Your charm spell wore off of ${petName}
	/popup Your charm spell broke off of ${petName}
/return

Sub Event_newPet
	/varset petName ${Me.Pet.CleanName}
             /echo You Charm ${petName} successfully..
             /popup You Charm ${petName} successfully..
/return





Try and see if that works for you. Use whatever message you need to for the charm message.. I use Command of Druzzil so I dunno whatever you'd use for your charm.. that's all you need to change though.
 
Last edited by a moderator:
Thanks! Unfortunately, I have no idea how to turn this into a .mac file. Any advice?:p
 
np

Open up notepad on your pc and save it as a mac file..


Idiot-proof instructions:

1.)Start->Run->notepad

2.)Paste the macro in there

3.) File, Save as

4.) Change "Save as type" to "All files *.*"

5.) Put file name: chanter.mac



Then just put that macro in your <Macroquest>\Macros directory
 
It probably would be easier just to set up an audio trigger.
 
antld0te said:
How would this be done?
Go to the keys tab in options window, and set up some key combo for audio triggers window.
Type in "Your charm spell has worn off of" into pattern (where charm is the name of your charm spell. Then chose a sound, and click create. Tadaa!
 
Status
Not open for further replies.