Greeduo.wix.com

PekatronIII

Grandmaster
Someone know where i can find scripts from this site?:( i remember i took best autopet heal macro from this site. Heelp!:eek:pls
 

drasked

Grandmaster
Someone know where i can find scripts from this site?:( i remember i took best autopet heal macro from this site. Heelp!:eek:pls

if not listexists 'petlist'
createlist 'petlist'
//add an entry for each pet you hunt with:
@pushlist 'petlist' 0x1ad1c // meta drag
@pushlist 'petlist' 0x15d0de // nightmare
@pushlist 'petlist' 0x269a0 // WW
endif
//Removes pets if mounted, stabled or you get too far away
if findalias 'Pet1' and not @findobject 'Pet1'
unsetalias 'Pet1'
endif
if findalias 'Pet2' and not @findobject 'Pet2'
unsetalias 'Pet2'
endif
//makes sure the pets never equal each other
if findalias 'Pet1' and findalias 'Pet2'
if serial 'Pet1' == serial 'Pet2'
unsetalias 'Pet2'
endif
endif
//Searches for your pets when you don't have 2 active
if not @findobject 'Pet1' or not @findobject 'Pet2'
for 0 to 'petlist'
if @findobject petlist[] 'any' 'ground' 0 30
if not @findobject 'Pet1'
setalias 'Pet1' petlist[]
elseif not @findobject 'Pet2' and serial 'Pet1' != 'petlist[]'
setalias 'Pet2' petlist[]
endif
endif
endfor
endif
// sets backup bandie timer just in case
if not timerexists 'bandie'
settimer 'bandie' 10000
endif
// provoke protection if target cursor exists
if not targetexists
//Starts healing your pets
if @injournal 'finish applying' 'system' or timer 'bandie' >= 10000
if @findobject 'Pet1' and @findobject 'Pet2'
if hits 'Pet1' < 90 or hits 'Pet2' < 90
if diffhits 'Pet1' > diffhits 'Pet2' and @inrange 'Pet1' 1
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'Pet1'
settimer 'bandie' 0
elseif @inrange 'Pet2' 1 and hits 'Pet2' < 90
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'Pet2'
settimer 'bandie' 0
endif
clearjournal
pause 1000
endif
elseif @findobject 'Pet1' or @findobject 'Pet2'
if hits 'found' < 90 and @inrange 'found' 1
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'found'
settimer 'bandie' 0
clearjournal
pause 1000
endif
endif
endif
endif
if @injournal 'too far away' 'system'
@clearjournal
elseif @injournal 'stay close enough' 'system'
@clearjournal
endif
 

PekatronIII

Grandmaster
if not listexists 'petlist'
createlist 'petlist'
//add an entry for each pet you hunt with:
@pushlist 'petlist' 0x1ad1c // meta drag
@pushlist 'petlist' 0x15d0de // nightmare
@pushlist 'petlist' 0x269a0 // WW
endif
//Removes pets if mounted, stabled or you get too far away
if findalias 'Pet1' and not @findobject 'Pet1'
unsetalias 'Pet1'
endif
if findalias 'Pet2' and not @findobject 'Pet2'
unsetalias 'Pet2'
endif
//makes sure the pets never equal each other
if findalias 'Pet1' and findalias 'Pet2'
if serial 'Pet1' == serial 'Pet2'
unsetalias 'Pet2'
endif
endif
//Searches for your pets when you don't have 2 active
if not @findobject 'Pet1' or not @findobject 'Pet2'
for 0 to 'petlist'
if @findobject petlist[] 'any' 'ground' 0 30
if not @findobject 'Pet1'
setalias 'Pet1' petlist[]
elseif not @findobject 'Pet2' and serial 'Pet1' != 'petlist[]'
setalias 'Pet2' petlist[]
endif
endif
endfor
endif
// sets backup bandie timer just in case
if not timerexists 'bandie'
settimer 'bandie' 10000
endif
// provoke protection if target cursor exists
if not targetexists
//Starts healing your pets
if @injournal 'finish applying' 'system' or timer 'bandie' >= 10000
if @findobject 'Pet1' and @findobject 'Pet2'
if hits 'Pet1' < 90 or hits 'Pet2' < 90
if diffhits 'Pet1' > diffhits 'Pet2' and @inrange 'Pet1' 1
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'Pet1'
settimer 'bandie' 0
elseif @inrange 'Pet2' 1 and hits 'Pet2' < 90
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'Pet2'
settimer 'bandie' 0
endif
clearjournal
pause 1000
endif
elseif @findobject 'Pet1' or @findobject 'Pet2'
if hits 'found' < 90 and @inrange 'found' 1
usetype 0xe21 'any' 'backpack'
waitfortarget 3500
target! 'found'
settimer 'bandie' 0
clearjournal
pause 1000
endif
endif
endif
endif
if @injournal 'too far away' 'system'
@clearjournal
elseif @injournal 'stay close enough' 'system'
@clearjournal
endif
Thnx
 
Top