Anyone who can post a working kiola macro?
Have to make around 600, and takes a while to make it by hand, allso is there a advanced fleching and JC script for training skills for shawl?
Moderator: MacroQuest Developers
Code: Select all
| - HeadyKiola.mac -
#include routines.mac
#turbo
Sub Main
| Initialisation
/press ctrl
/press shift
/press alt
| Main Loop
/itemtarget Brew Barrel
/face item
/click left item
:MakeItem
/sendkey down ctrl
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /goto :Done
/click left enviro 0
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /goto :Done
/click left enviro 1
/finditem "Water Flask"
/if $find()==FALSE /goto :Done
/click left enviro 2
/finditem "Bottle"
/if $find()==FALSE /goto :Done
/click left enviro 3
/sendkey up ctrl
/click left enviro combine
/if "$cursor()"=="TRUE" /goto :AutoDrop
/for v1 1 to 5
/delay 2
/if "$cursor()"=="TRUE" /goto :AutoDrop
/next v1
/goto :MakeItem
:AutoDrop
/click left auto
/doevents
/goto :MakeItem
:Done
/sendkey up ctrl
/click left enviro done
/return
Code: Select all
| - Jewelry.mac -
|
| Usage /macro jewelry "gold bar" "fire emerald"
| where as first input is the metal and second input is the gem
#include routines.mac
Sub Main
/call FindCombiner Jewelcrafting
/if $return==99 /return
/cleanup
/click right inv $return
/sendkey down ctrl
:MakeJewelry
/click left auto
/finditem "$p0"
/if $find()==FALSE /goto :Done
/click left pack $return 0
/finditem "$p1"
/if $find()==FALSE /goto :Done
/click left pack $return 1
/click left pack $return combine
:WaitCombine
/delay 1
/if $pack($return,empty)==FALSE /goto :WaitCombine
/delay 1
/click left auto
/goto :MakeJewelry
:Done
/sendkey up ctrl
/return