|
Post by AdamCino on Jan 11, 2017 23:26:37 GMT
Morning All,
I have created a simple macro to attack nearest grey, select corpse, skin corpse using a buthers war cleaver.
At this point I have horned leather in my inventory. I can use this up to a point where my inventory is full and I can't hold any more weight.
The last part I need, is a macro to check whether I am over weight, and if so, to drop the horned leather onto the ground behind me in a pile.
Then the next time I am overweight, I'd like to to combine the new leather with the previously dropped leather in the same stack on the ground.
I've tried to record a macro and use that to add to the pile but it doesn't work.
Can someone help me with some coding to do this please?
Thanks,
Adam
|
|
|
Post by Experience on Jan 12, 2017 1:45:30 GMT
Once you place leather on the ground I can make the macro add to it, but I've never been able to get a macro to place something on the open ground 
|
|
|
Post by AdamCino on Jan 12, 2017 2:32:08 GMT
Hi Experience,
Thankyou for the response.
I can certainly start a pile of hides on the ground before using the macro.
If I was to start a pile of hides behind me, could a macro code be written to just add to that pile once the character weight is overloaded?
Thanks again
Adam
|
|
|
Post by AdamCino on Jan 12, 2017 2:33:23 GMT
Sorry I meant a pile of cut horned leather, not hides.
|
|
|
Post by Experience on Jan 12, 2017 3:31:02 GMT
Sorry I meant a pile of cut horned leather, not hides. Yeah that can be done. Remind me tomorrow and I'll write it up for you.
|
|
|
Post by AdamCino on Jan 12, 2017 21:46:30 GMT
Hi Experience, Any chance of a macro today? It'll be fun 
|
|
|
Post by Experience on Jan 12, 2017 22:16:29 GMT
//Add leather to ground pile //adjust '2304' to match horned leather color on your server while weight >= '325' if @findtype '0x1081' '2304' 'backpack' 'any' '4' setalias 'Horned' 'found' pause 600 if @findtype '0x1081' '2304' 'ground' 'any' '2' setalias 'Pile' 'found' pause 600 endif moveitem 'Horned' 'Pile' '0 0 0' 'all' pause 700 endwhile
|
|
|
Post by AdamCino on Jan 12, 2017 23:43:06 GMT
Thank you kindly for that
|
|
|
Post by AdamCino on Jan 13, 2017 8:39:08 GMT
Tested and worked swimmingly, thankyou very much I am a happy camper
|
|