Moderator: MacroQuest Developers
At first I thought this was due to the locations.txt file. Checked that, and my UI files, and everything that MQ likes is right where it should be....my work-around was simply to change:Zeit wrote:having a problem with the script at the combine level it buys everything perfect puts it all in the brew barrel but wont combine it gonna look at it more see if i can figure it out
Code: Select all
/click left enviro combineCode: Select all
/click left 950 280Umm..have you read the macro at all? It tells you what to do (in English)in the beginning.Zeit wrote:Default UI did the trick working like a champ now, cept everytime i leave the keyboard someone sends me a tell /cry also im pretty new to macroing how can i make it destroy whats on the cursor instead of putting it in the inventory?
I'm certainly not a genious when it comes to macroing in fact the closest thing ive come to programming was configuring a cisco router ><. The way i read the usage you define it when you run the macro at the command line. This is what i've tried:Umm..have you read the macro at all? It tells you what to do (in English)in the beginning.

hehe! ill post the code to it then you will see what i did that made it so messy just redundant but i wasnt sure what exactly what i could take away and make it still work so..Using the /autoinv or /destroy commands is much quicker and cleaner than using mouse clicks.
Code: Select all
:ClearCursor
/if n @Destroy==1 {
/click left destroy
} else {
/click left auto
}
/delay 5
/if "$cursor()"!="TRUE" /goto :MakeBrew
/goto :ClearCursor
Code: Select all
:ClearCursor
/if n @Destroy==1 {
/click left destroy
} else {
/click left destroy
}
/delay 5
/if "$cursor()"!="TRUE" /goto :MakeBrew
/goto :ClearCursor
Code: Select all
:ClearCursor
/destroy
/delay 5
/if "$cursor()"!="TRUE" /goto :MakeBrew
/goto :ClearCursor
Code: Select all
/declare CasksNeeded local
/declare CasksMax local
/varset CasksMax 40
/varcalc CasksNeeded @CasksMax-$count("cask")
/target merchant_name
/click right target
/delay 2s
/selectitem "cask" merchant
/buyitem @CasksNeeded
/delay 1s
/press esc
/press esc