Posted: Thu Sep 16, 2004 12:30 pm
GDs right. Thats a really good idea. Anyway, I'll try it without the flashing cursor. It's probably that.
Need to talk about MacroQuest to other MacroQuest users?
https://mq64.org/phpBB3/
Maybe i was asking for it, but none the less it happened.. i forgot to bank before i set the macro, i fell asleep at keyboard, i never ment for it to happen, it just did.. that isnt the point i was making. The point i was making was maybe there was a bug in pathing to have made me get stuck in that loop. Looks like things are fixed now though :)Am i the only one that thinks there is something wrong with this?Why in the hell would you put 30k on your person to skill up pottery under 200.I spent maybe 1k probly more like 500pp.Sounds to me like you were just asking to lose your money.
Ok, for some reason it isn't picking up on the keypress command for you. Try this, in the GoTo functions at the bottom of the pottery macro, anywhere it says:DryGnome wrote:Still doesn't workIt keeps running into the door and keeps running.
Code: Select all
/keypress USECode: Select all
/click leftActually, the macro works by seeing how many of the vials you have before it buys, so if you have them on you, it wont try to buy them.Shenlon wrote:I don't have the tailoring macro to look at the code, but I was curious if we could put vials of viscous mana on our character and have it use those until it runs out then go buy them from the bazaar. Same thing for the kiolas. Is that possible or will it require a couple modifications?
Code: Select all
Sub Main
/itemtarget Oven
/face fast
/delay 2
/click left item
/delay 10
/notify COMBW_RecipeListArea COMBW_RecipeList listselect ${Window[COMBW_RecipeListArea].Child[COMBW_RecipeList].List[=Fish Rolls]}
/delay 5
:Combine
/notify COMBW_CombineArea COMBW_CombineButton leftmouseup
/delay 5
/autoinventory
/goto :Combine
/endCode: Select all
Sub Main
/itemtarget Oven
/face fast
/delay 2
/click left item
/delay 10
/notify COMBW_RecipeListArea COMBW_RecipeList listselect ${Window[COMBW_RecipeListArea].Child[COMBW_RecipeList].List[=Fish Rolls]}
/delay 5
:Combine
/if (!${FindItem[=Bat Wings].ID}) {
/echo Out of Components
/end
}
/notify COMBW_CombineArea COMBW_CombineButton leftmouseup
/delay 5
/autoinventory
/goto :Combine
/endto/if (!${FindItem[=Bat Wings].ID}) {
It's Bat Wing not Bat Wings making the final code:/if (!${FindItem[=Bat Wing].ID}) {
Code: Select all
Sub Main
/itemtarget Oven
/face fast
/delay 2
/click left item
/delay 10
/notify COMBW_RecipeListArea COMBW_RecipeList listselect ${Window[COMBW_RecipeListArea].Child[COMBW_RecipeList].List[=Fish Rolls]}
/delay 5
:Combine
/if (!${FindItem[=Bat Wing].ID}) {
/echo Out of Components
/end
}
/notify COMBW_CombineArea COMBW_CombineButton leftmouseup
/delay 5
/autoinventory
/goto :Combine
/end