Experience
Grandmaster
Suggest/request a macro custom tailored for your needs!
Already done http://uosteam.28394.n7.nabble.com/Recalling-LJ-td554.html YWHow about a recall Lumber jacking macro?
The current taming assistant auto detects, follows, and tames creatures. and more
headmsg 'Target creature to tame'
promptalias 'Tame'
pause 250
@clearjournal
while @inrange 'Tame' '15'
if inrange 'Tame' '3' and not @injournal 'You start to tame the creature' 'system'
useskill 'animal taming'
waitfortarget 5000
target! 'last'
pause 1000
while @inrange 'Tame' '2'
if @x 'Tame' > x 'self' and @y 'Tame' > y 'self'
run 'Northeast'
elseif @x 'Tame' < x 'self' and @y 'Tame' > y 'self'
run 'Northwest'
elseif @x 'Tame' > x 'self' and @y 'Tame' < y 'self'
run 'Southeast'
elseif @x 'Tame' < x 'self' and @y 'Tame' < y 'self'
run 'Southwest'
elseif @x 'Tame' > x 'self' and @y 'Tame' == y 'self'
run 'east'
elseif @x 'Tame' < x 'self' and @y 'Tame' == y 'self'
run 'west'
elseif @x 'Tame' == x 'self' and @y 'Tame' > y 'self'
run 'north'
elseif @x 'Tame' == x 'self' and @y 'Tame' < y 'self'
run 'south'
endif
endwhile
endif
if @injournal 'It seems to accept you as master' 'system'
headmsg "It's Tame"
stop
endif
endwhile
@MrBojangles
Code:headmsg 'Target creature to tame' promptalias 'Tame' pause 250 @clearjournal while @inrange 'Tame' '15' if inrange 'Tame' '3' and not @injournal 'You start to tame the creature' 'system' useskill 'animal taming' waitfortarget 5000 target! 'last' pause 1000 while @inrange 'Tame' '2' if @x 'Tame' > x 'self' and @y 'Tame' > y 'self' run 'Northeast' elseif @x 'Tame' < x 'self' and @y 'Tame' > y 'self' run 'Northwest' elseif @x 'Tame' > x 'self' and @y 'Tame' < y 'self' run 'Southeast' elseif @x 'Tame' < x 'self' and @y 'Tame' < y 'self' run 'Southwest' elseif @x 'Tame' > x 'self' and @y 'Tame' == y 'self' run 'east' elseif @x 'Tame' < x 'self' and @y 'Tame' == y 'self' run 'west' elseif @x 'Tame' == x 'self' and @y 'Tame' > y 'self' run 'north' elseif @x 'Tame' == x 'self' and @y 'Tame' < y 'self' run 'south' endif endwhile endif if @injournal 'It seems to accept you as master' 'system' headmsg "It's Tame" stop endif endwhile
Were you in range? cuz it wont try to tame until you're in range...Here didn't worked the tame macro, doesn't start to tame(with or without loop on)..