how would one go about makeing a damage skill....

Help section from before the user variable changes that broke all macros

Moderator: MacroQuest Developers

Meh
a lesser mummy
a lesser mummy
Posts: 32
Joined: Wed Sep 04, 2002 8:55 pm

how would one go about makeing a damage skill....

Post by Meh » Fri Sep 06, 2002 3:44 am

get used evreytime it comes back up? (Tiger Claw is the skill)

ive tryed a few attempts... eq always seems to crash (my first macro) 8)

User avatar
L124RD
Site Admin
Site Admin
Posts: 1343
Joined: Fri Jun 14, 2002 12:15 am
Location: Cyberspace
Contact:

Post by L124RD » Fri Sep 06, 2002 8:40 am

Salutations,
I would think you could do:

Code: Select all

sub main
  :loop
     /doability "Tiger Claw"
   /goto :loop
then just /endmacro when you want to quit using it...

FlashG
Contributing Member
Contributing Member
Posts: 104
Joined: Thu Jul 11, 2002 6:38 pm

only use if attacking

Post by FlashG » Fri Sep 06, 2002 2:50 pm

If you wanted to make it a 'always on' macro add a statement that checks if you are currently attacking and have a NPC targeted.

Meh
a lesser mummy
a lesser mummy
Posts: 32
Joined: Wed Sep 04, 2002 8:55 pm

Post by Meh » Fri Sep 06, 2002 3:05 pm

thanks lizard (not even about to go into 1337 lol)

User avatar
Imperfect
Macro Author
Macro Author
Posts: 319
Joined: Fri Jun 14, 2002 1:52 am

Post by Imperfect » Fri Sep 06, 2002 4:05 pm

Actually that is not exactly correct. This should look something like this

Code: Select all

Sub Main
:Loop
/if $char(ability,"Flying Kick")>0 /doability "Flying Kick"
/goto :Loop
This will do flying kick everytime it becomes available...

User avatar
ap50
a snow griffon
a snow griffon
Posts: 425
Joined: Sun Aug 18, 2002 2:29 pm

Attack = 1 ?

Post by ap50 » Fri Sep 06, 2002 10:57 pm

Wouldn't you want a "if attack=1" in there somewhere? Kinda suicidal to just be abitrarilily Flying Kicking while you're wandering around interacting, or just even while you're waiting for the tank to start beating on the mezzed mob you just targetted :)
[color=yellow][size=92][b]Just because you're paranoid, it doesn't mean everyone isn't out to get you![/b][/size][/color]

User avatar
Imperfect
Macro Author
Macro Author
Posts: 319
Joined: Fri Jun 14, 2002 1:52 am

Post by Imperfect » Sat Sep 07, 2002 2:42 am

I can't do all the thinking for people ;)

Meh
a lesser mummy
a lesser mummy
Posts: 32
Joined: Wed Sep 04, 2002 8:55 pm

Post by Meh » Sun Sep 08, 2002 6:42 am

well if he hadint come along i wouldint of even known i could 8) bah

inspector
orc pawn
orc pawn
Posts: 11
Joined: Fri Sep 20, 2002 9:19 pm
Location: Grand Rapids, Michigan
Contact:

Thanks

Post by inspector » Tue Sep 24, 2002 10:52 pm

that is a great Idea, My guild tank asked me to write him a taunt and kick macro so he did not have to keep hitting them over and over. thanks a ton