Bone cutter with auto heal

eppy

Grandmaster
Great for farming bones at oaks or with zombies. Just loop this and kill and loot the bones and it will chop them and bandage you.


if not listexists 'bones'
createlist 'bones'
pushlist 'bones' 0x1b0c
pushlist 'bones' 0x1b17
pushlist 'bones' 0x1b0b
pushlist 'bones' 0x1b09
pushlist 'bones' 0x1b0f
pushlist 'bones' 0x1b0d
pushlist 'bones' 0x1b10
pushlist 'bones' 0x1b18
pushlist 'bones' 0x1b0a
pushlist 'bones' 0x1b0e
endif

if not timerexists 'heal'
createtimer 'heal'
endif

if diffhits > 15 and timer 'heal' > 9000
bandageself
settimer 'heal' 0
endif

for 0 to 'bones'
if @findtype bones[]
//autotargetobject 'found'
usetype 0xf9f
waitfortarget 1000
target 'found'
endif
endfor

pause 2000
 

Strigo

Expert
eppy, a macro that checks your health and bandages if needed...isn't that illegal?

it's pretty similar to one that swigs a gheal pot if injured, or gcure if poisoned, or trap pouch if paralyzed. or after casting a gheal spell, it will hold it and only target self when injured...
 

eppy

Grandmaster
This isn't a pvp macro. You aren't cutting bones while fighting other players so doesn't matter.
 

Strigo

Expert
Code:
if not timerexists 'heal'
createtimer 'heal'
endif

if diffhits > 15 and timer 'heal' > 9000
bandageself
settimer 'heal' 0
endif

If I were to take the above excerpt from your script and run it on loop while both pvm'ing and pvp'ing, would that be legal?

if the answer is yes, that's a very slippery slope.

if the answer is no, then we're in the same place as the multi-client discussion. Meaning, a rule that states an action/behavior/script is ok for pvm but not pvp quickly sees those lines blurred due to the overlap between the two activities...
 
Last edited by a moderator:

Jooz

Master
so this macro does everything except click the actual type of bone.. siss. cursor comes up and it says its queded 'found' but doesn't click the bones :( I tried changing the pause between sis and the bones and it didn't work either

if not listexists 'bones'
createlist 'bones'
pushlist 'bones' 0x1b0c
pushlist 'bones' 0x1b17
pushlist 'bones' 0x1b0b
pushlist 'bones' 0x1b09
pushlist 'bones' 0x1b0f
pushlist 'bones' 0x1b0d
pushlist 'bones' 0x1b10
pushlist 'bones' 0x1b18
pushlist 'bones' 0x1b0a
pushlist 'bones' 0x1b0e
endif

if not timerexists 'heal'
createtimer 'heal'
endif

if diffhits > 15 and timer 'heal' > 9000
bandageself
settimer 'heal' 0
endif

for 0 to 'bones'
if @findtype bones[]
//autotargetobject 'found'
usetype 0xf9f
waitfortarget 1000
target 'found'
endif
endfor

pause 2000
 
so all you gotta do is put cure/heal macro's in with pvm macros to make it okay to use while fighting someone? walking a fine line here aren't we?
 
Top