This is a macro to turn in bonechips to any NPC you please, however, you can modify this to turn in any item you like by changing the name "Bone Chips" in the lines:
and lower down
to anything you want, such as Muffins for the kelethin faction quest, bandages for rivervale faction quest, gems or whatever.
Code:
/if (${FindItemCount[=Bone Chips]}<4) /goto :Done
and lower down
Code:
/if (!${FindItemCount[=Bone Chips]}) /goto :Done
to anything you want, such as Muffins for the kelethin faction quest, bandages for rivervale faction quest, gems or whatever.
Rich (BB code):
|turnin.mac - 20 DEC 2004
|Originally by kkmonte. Updated by Redbot for use on Redguides.com
|USAGE: /macro turnin45012.mac
Sub Main
/declare l0 int local
/target npc Gunlok
:Loop
/if (${FindItemCount[=Bone Chips]}<4) /goto :Done
/for l0 0 to 3
/ctrlkey /itemnotify ${FindItem[=Bone Chips].InvSlot} leftmouseup
/delay 20 ${Cursor.ID}
/delay 1
/if (${l0}==0) {
/click left target
/delay 20 ${Window[GiveWnd].Open}
/delay 1
} else {
/notify GiveWnd GVW_MyItemSlot${l0} leftmouseup
/delay 20 !${Cursor.ID}
/delay 1
}
/if (!${FindItemCount[=Bone Chips]}) /goto :Done
/next l0
/notify GiveWnd GVW_Give_Button leftmouseup
/delay 20 !${Window[GiveWnd].Open}
/delay 1
:cursorclear
/autoinv
/delay 1
/if (${Cursor.ID}) /goto :cursorclear
/goto :Loop
:Done
/delay 1
/notify GiveWnd GVW_Give_Button leftmouseup
/endmacro
Last edited:

