frosting.mac -Batwing Crunchies baking skill 1 thru til 46

Macro depository for macros written before the user variable changes that broke all of them.

Moderator: MacroQuest Developers

gingertips
a hill giant
a hill giant
Posts: 230
Joined: Wed Jun 26, 2002 3:47 am
Location: Tseu-Qorcam

frosting.mac -Batwing Crunchies baking skill 1 thru til 46

Post by gingertips » Thu Jun 27, 2002 8:31 am

Script for skilling up 1st part of baking trade - batwing crunchies from 1 to 46. This script requires you are in front of an oven. I will test it out with Spit using changes suggested by Dom & post results here.

Code: Select all

| - Frosting.mac - 

#include routines.mac 

Sub Main 
 
  /itemtarget Oven
   /face item
   /click left item


   :MakeCrunchies
   /sendkey down ctrl 
   
      /finditem "Frosting" 
      /if $find()==FALSE /goto :Done 
      /click left enviro 0

      /finditem "Bat Wing" 
      /if $find()==FALSE /goto :Done 
      /click left enviro 1

      /sendkey up ctrl
      /click left enviro combine

      /if "$cursor()"=="TRUE" /goto :AutoDropCrunchies
      /for v1 1 to 5 
         /delay 2 
         /if "$cursor()"=="TRUE" /goto :AutoDropCrunchies
      /next v1 

   /goto :MakeCrunchies 

   :AutoDropCrunchies 
      /click left auto 
   /goto :MakeCrunchies 

   :Done 
    /sendkey up ctrl 
    /click left enviro done
/return

Nipper
decaying skeleton
decaying skeleton
Posts: 5
Joined: Mon Sep 02, 2002 11:23 pm

Problems with Batwing Crunchies

Post by Nipper » Thu Sep 12, 2002 10:05 am

Using this mac, as soon as I am successful in creating a batwing crunchie, the macro locks up. It puts the crunchie in the oven, the frosting in my hand and then says you cannot combine. Seems it is not dropping the crunchie. I have Fast Destroy on, no confirmation on dropping and am using the old UI.

Any ideas???

Xaanin
a lesser mummy
a lesser mummy
Posts: 66
Joined: Fri Jun 28, 2002 6:41 am

Post by Xaanin » Thu Sep 12, 2002 10:09 am

Add a delay after the macro presses combine, it will most likely fix things for you Nipper.

Nipper
decaying skeleton
decaying skeleton
Posts: 5
Joined: Mon Sep 02, 2002 11:23 pm

Post by Nipper » Thu Sep 12, 2002 10:42 am

Well..I added the delay and it didn't fix the problem. However...I thought I'd fool around with the script and I changed /click left auto to /click left destroy in the Autodropcrunchies section and this seems to have fixed it.

mackster
a ghoul
a ghoul
Posts: 95
Joined: Mon Sep 09, 2002 3:02 pm

Post by mackster » Thu Sep 12, 2002 12:20 pm

Worked just fine for me. Great little macro, very fast and easily modifyable. Two thumbs up!

Nipper
decaying skeleton
decaying skeleton
Posts: 5
Joined: Mon Sep 02, 2002 11:23 pm

Post by Nipper » Thu Sep 12, 2002 12:26 pm

Well...my INV screen was overlapping the Oven Combine screen...I've since moved the INV screen and it seems to work fine now. Perhaps that was the original problem?

Timeout
decaying skeleton
decaying skeleton
Posts: 5
Joined: Tue Oct 22, 2002 9:35 pm

Post by Timeout » Tue Oct 22, 2002 10:06 pm

I have updated this handy baking mac to work with IRC release 20021016 using the eqgame.ini from http://macroquest2.com/phpBB2/viewtopic.php?t=1066. You may have to change the /mouseto that moves to the auto-equip area depending on where you like your inventory. You have to open the oven, buy components, and sell product yourself. Also I run the oldUI in 1024x768, so if you run higher or lower, the x,y coords may need to change. With this mac, I made 420 Batwing Crunchies in about 10 minutes.

Code: Select all

| - Crunchies.mac - 

#include routines.mac 

Sub Main 

   :MakeCrunchies 
   /sendkey down ctrl 
    
      /finditem "Frosting" 
      /if $find()==FALSE /goto :Done 
      /mouseto 440 120 
      /click left 

      /finditem "Bat Wing" 
      /if $find()==FALSE /goto :Done 
      /mouseto 480 120 
      /click left  

      /sendkey up ctrl 
      /moueto 450 350
      /click left 

      /if "$cursor()"=="TRUE" /goto :AutoDropCrunchies 
      /for v1 1 to 5 
         /delay 2 
         /if "$cursor()"=="TRUE" /goto :AutoDropCrunchies 
      /next v1 

   /goto :MakeCrunchies 

   :AutoDropCrunchies 
      /mouseto 700 300
      /click left 
   /goto :MakeCrunchies 

   :Done 
    /sendkey up ctrl 
    /mouseto 460 380 
    /click left 

/return

gingertips
a hill giant
a hill giant
Posts: 230
Joined: Wed Jun 26, 2002 3:47 am
Location: Tseu-Qorcam

Post by gingertips » Wed Oct 23, 2002 7:42 am

With this mac, I made 420 Batwing Crunchies in about 10 minutes.
Methinks Time for a Turbo update! I will have a look when i get home