Moderator: MacroQuest Developers
What doesn't work? Seems like sits.mac is very popular ... what problem does it have?Amadeus wrote:... none of them work for me...
How simple do you want? hard-coded so you just type /macro rawsilkhelm or with command line switches?...that are SIMPLE...

Next time I would think before replying to one of the devs in such a manner.insanitywiz wrote:Not to be rude but...how easy do you want it for gods sakes? There are easy, simple combining macros that you can modify both in the depot and some of as part of the download for the program! Use one, play around with it, if you have problems THEN post it and ask for help. Don't just ask for a free ride from the start.
Code: Select all
| - Pottery.mac -
|
| Please be near a open pottery wheel before you start this macro.
|
#include routines.mac
#turbo
Sub Main
/itemtarget Pottery Wheel
/face item
/click left item
/click left enviro combine
:MakeKiola
/sendkey down ctrl
/finditem "Medium Bowl Sketch"
/if $find()==FALSE /goto :Done
/click left enviro 0
/finditem "Water Flask"
/if $find()==FALSE /goto :Done
/click left enviro 1
/finditem "Block of Clay"
/if $find()==FALSE /goto :Done
/click left enviro 2
/sendkey up ctrl
/click left enviro combine
:WaitCombine
/delay 5
/if "$cursor()"=="FALSE" /goto :WaitCombine
/click left destroy
/goto :MakeKiola
:Done
/sendkey up ctrl
/click left enviro done
/return
Code: Select all
| - Kiola.mac -
|
| Please be near a brew barrel open before you start this macro.
|
#turbo
#event CombineFail "You lacked the skills to fashion the items together."
#event CombineSuceed "You have fashioned the items together to create something new!"
Sub Main
/itemtarget Brew Barrel
/face item
/click left item
/delay 25
/sendkey down ctrl
:MakeKiola
/finditem "Water Flask"
/if $find()==FALSE /goto :Done
/click left enviro 0
/finditem "Bottle"
/if $find()==FALSE /goto :Done
/click left enviro 1
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /goto :Done
/click left enviro 2
/finditem "Packet of Kiola Sap"
/if $find()==FALSE /goto :Done
/click left enviro 3
:DoCombine
/varset v61 0
/doevents flush
/varset t9 30s
/click left enviro combine
:DropKiola
/doevents
/if n $t9==0 /goto :DoCombine
/if n $v61==0 /goto :DropKiola
/doevents flush
/varset t9 0
:WaitCursor
/delay 0
/if $cursor()!=TRUE /goto :WaitCursor
/click left auto
/goto :MakeKiola
:Done
/sendkey up ctrl
/click left enviro done
/return
Sub Event_CombineFail
/varset v61 1
/return
Sub Event_CombineSuceed
/varset v61 1
/return
Code: Select all
:WaitCombine
/delay 5
/if "$cursor()"=="FALSE" /goto :WaitCombine
Code: Select all
| - Pottery.mac -
|
#turbo
#event CombineFail "You lacked the skills to fashion the items together."
Sub Main
:MakeItem
/sendkey down ctrl
/finditem "Medium Bowl Sketch"
/delay 2
/if $find()==FALSE /goto :Done
/click left enviro 0
/finditem "Water Flask"
/delay 2
/if $find()==FALSE /goto :Done
/click left enviro 1
/finditem "Block of Clay"
/delay 2
/if $find()==FALSE /goto :Done
/click left enviro 2
/delay 2
/sendkey up ctrl
/click left enviro combine
/delay 2
/doevents
:WaitCombine
/delay 5
/if "$cursor()"=="FALSE" /goto :WaitCombine
/click left destroy
/goto :MakeItem
:Done
/sendkey up ctrl
/click left enviro done
/return
Sub Event_CombineFail
/sendkey up ctrl
/doevents flush
/goto :MakeItem
/return