Carpentry slayer macro

Elevated

Neophyte
With the help of Youngstar via discord he figured it out!!
for anyone that needs a solid carpentry slayer macro - just make the edit on item you want crafted ie; gnarled/qtr/club

and this uses saws, but any carp tool can be used, just change the useitem cmd.

edit - yes this is the exact same script for blacksmithy written by eppy i believe, just tweaked. So no, i dont script, just edited it with some help.

Code:
if not findalias 'slayerbag'
promptalias 'slayerbag'
endif
if not findalias 'throwoutbag'
promptalias 'throwoutbag'
endif
if not hidden 'self'
useskill 'hiding'
endif
if listexists 'slayertype'
clearlist 'slayertype'
else
createlist 'slayertype'
endif
// Change                 ↓ to item you want crafted/sorted
pushlist 'slayertype' 0xe89
// Change     ↓ to the tool being used
@usetype 0x1034 0x0 'backpack'
waitforgump 0x38920abd 15000
replygump 0x38920abd 21
pause 2000
if @injournal 'crafted a slayer' 'system'

while @findtype slayertype[0] 0x0 'backpack'
moveitem 'found' 'slayerbag'
ignoreobject 'found'
endwhile
clearjournal
sysmsg 'Slayer crafted!' 33
pause 2000
else

while @findtype slayertype[0] 0x0 'backpack'
moveitem 'found' 'throwoutbag'
ignoreobject 'found'
endwhile
pause 900
clearjournal
sysmsg 'crap crafted' 33
pause 900
endif
if counttype slayertype[0] 'any' 'backpack' > 0
endif
 
Last edited:
Top