Page 1 of 1

Discordance macro uosteam

Posted: Mon Nov 24, 2014 11:41 am
by gheddy78
Hi all, i'm trying a macro that target nearest enemy and disco it untill i succed... Here's the macro, but i cannot make it work, maybe someone will help me:

Getenemy 'murderer' 'Enemy' 'criminal' 'gray' 'closest'
if @findobject 'enemy'
autotargetobject! 'enemy'
useskill 'Discordance'
@target 'enemy'
clearjournal
if @injournal 'You attempt to disrupt'
playmacro 'Disco'
endif
endif
@clearusequeue
@cancelautotarget

The macro is called Disco so it should replay itself, but it does not work
Ty and see you :D

Re: Discordance macro uosteam

Posted: Mon Nov 24, 2014 4:14 pm
by fixxer1963
I cleaned it up a bit and tested it. There are a couple more changes I would make personally, but this works. Be sure to "Loop" it.

clearjournal
Getenemy 'murderer' 'Enemy' 'criminal' 'gray' 'closest'
if @findobject 'enemy'
useskill 'Discordance'
target! 'enemy'
pause 2000
while @injournal 'You attempt to disrupt'
useskill 'Discordance'
target! 'enemy'
pause 2000
endwhile
endif

Re: Discordance macro uosteam

Posted: Mon Nov 24, 2014 6:16 pm
by gheddy78
Ty very much :D