Fishrolls.mac

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

Moderator: MacroQuest Developers

yocal
a lesser mummy
a lesser mummy
Posts: 43
Joined: Fri Jun 14, 2002 12:28 pm
Location: Denmark
Contact:

Fishrolls.mac

Post by yocal » Mon Jun 24, 2002 7:07 am

Hi,

Looking at older releases i found the fishrolls.mac:

Code: Select all

| - FishRolls.mac -
|
#include routines.mac

Sub Main
   /call FindCombiner Cooking
   if $return==99 /return

   /cleanup
   /click right inv $return
   :MakeFishRolls
      /sendkey down ctrl

      /finditem "Fresh Fish"
      /if $find()==FALSE /goto :Done
      /click left pack $return 0

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

      /sendkey up ctrl
      /click left pack $return combine

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

   /goto :MakeFishRolls

   :AutoDropRolls
      /click left auto
   /goto :MakeFishRolls

   :Done
    /sendkey up ctrl

/return
But...? Should i use a split-oven or... To make it usefull :)

// Yocal

User avatar
Imperfect
Macro Author
Macro Author
Posts: 319
Joined: Fri Jun 14, 2002 1:52 am

use a spit

Post by Imperfect » Fri Jun 28, 2002 8:15 pm

here is the one line that needed to be changed for this to work.

Code: Select all

   /call FindCombiner Baking

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

Post by Timeout » Tue Oct 22, 2002 10:22 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 200 Fishrolls in about 5 minutes.

Code: Select all

| - Fishrolls.mac - 

#include routines.mac 

Sub Main 

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

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

      |Hit combine button 
      /sendkey up ctrl 
      /mouseto 450 350 
      /click left 

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

   /goto :MakeRolls 

   :AutoDropRolls 
      /mouseto 700 300 
      /click left 
   /goto :MakeRolls 

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