Search found 5 matches

by Misc
Fri Feb 13, 2004 3:22 pm
Forum: Macro Help (MQ1)
Topic: Wildcards
Replies: 1
Views: 452

Wildcards

Is there a way to use wildcards in macros?

Something like...

Code: Select all

#Event gethit "has hit YOU for * damage"
or if I have a bunch of events and only want to doevent some of them...

Code: Select all

]/doevents 1*
where it will run all events whose name starts with the number 1.
by Misc
Fri Feb 13, 2004 3:09 pm
Forum: Macro Help (MQ1)
Topic: Help Please
Replies: 20
Views: 3518

1. It seems to be skipping this section of code in Sub CastSpells... /if n $char(pet)!=0 { | check to see if we need to heal our pet. /if n $spawn($char(pet),hp,pct)<75 { /if DEBUG /echo Trying to cast "PetHealSpell". /target id $char(pet) /call NoFizzleCast "PetHealSpell" /if DE...
by Misc
Thu Feb 12, 2004 4:34 pm
Forum: Macro Help (MQ1)
Topic: Help Please
Replies: 20
Views: 3518

Did you set it up for your spell set? It is currently set up to cast "Shield of Maelin" as your self hp buff "Force Shield" as your self shield buff "Rune of Death" as your pet buff spell "Touch of Death" as your pet heal spell If these are not the spells you ...
by Misc
Thu Feb 12, 2004 3:22 pm
Forum: MQ2::Custom UI
Topic: Discipline Timer
Replies: 0
Views: 796

Discipline Timer

Is there anyway to add timers to disciplines? or if there isnt... Is there anyway to add user variables to UI's? What I mean by user varable is to add this to a UI screen... <Label item="100fist_timer"> <Font>1</Font> <ScreenID>100fist_timer</ScreenID> <EQType>9999</EQType> <TooltipReferen...
by Misc
Mon Feb 09, 2004 2:08 pm
Forum: Macro Help (MQ1)
Topic: Click off a Buff
Replies: 6
Views: 1200

Find the coord points of your buff locations for your particular UI (can be done with trial and error by typeing in /mouseto x,y in the MQ window). Then use that information in... /varset buffloc $char(buff,"spellname") /if n @buffloc==1 /click right x1 y1 /if n @buffloc==2 /click right x2...