Smithing

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

Moderator: MacroQuest Developers

User avatar
Ravena666
a ghoul
a ghoul
Posts: 101
Joined: Fri Aug 23, 2002 2:57 am

Smithing

Post by Ravena666 » Fri Sep 20, 2002 2:38 am

this will get smithing to verry good, ..
It is just a tossed together macro...was bord and thought i would dink around.

let me see a cheep way of making smithing skills incrss and ill show you a macro 8D.

[[Oi! Oi! you can't catch me! I'm the [ code]-adding man!]]

Code: Select all

| - smith.mac -
|
| Please be near a forge open before you start this macro.
|
#include routines.mac
#turbo

Sub Main

   /filter skills increase

   /itemtarget Forge
   /face item
   /click left item

      :Makesmith
      /sendkey down ctrl

      /finditem "smithy hammer"
      /if $find()==FALSE /goto :Done
      /click left enviro 0

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

      /finditem "small kite shield mold"
      /if $find()==FALSE /goto :Done
      /click left enviro 2
      
      /finditem "medium quality sheet metal"
      /if $find()==FALSE /goto :Done
      /click left enviro 3
      
      /finditem "medium quality sheet metal"
      /if $find()==FALSE /goto :Done
      /click left enviro 4

      /sendkey up ctrl
      /click left enviro combine

      | Either small kite shield or smithy hammer comes back, so we always get 1 item

      :WaitCombine
         /delay 0
 /if "$cursor()"=="TRUE" /goto :AutoDropkiteshield
      /for v1 1 to 5 
         /delay 2 
         /if "$cursor()"=="TRUE" /goto :AutoDropsmithyhammer 
      /next v1 


      /if "$cursor()"=="FALSE" /goto :WaitCombine

      /click left auto
   /goto :makesmith

   :AutoDropsmithyhammer
      /click left auto

   :Autodropkiteshield
      /click left auto

   /goto :makesmith

   :Done
    /sendkey up ctrl

    /click left enviro done

/return

/return

IO IO SO OFF TO BREWING I GO >>>lal al al alalalalal ala IO IO IO !!!!!
~~ SPOON ~~
~~ SPORK ~~

User avatar
rizwank
Huggle Police
Huggle Police
Posts: 524
Joined: Tue Jul 23, 2002 12:07 am
Contact:

Post by rizwank » Fri Sep 20, 2002 6:12 pm

no buy, sell, or destory..? Im disappointed!

macrotoon
a ghoul
a ghoul
Posts: 106
Joined: Wed Sep 18, 2002 4:38 pm

Post by macrotoon » Tue Sep 24, 2002 8:02 am

Just wondering about this part and its purpose.

Code: Select all

      :WaitCombine 
         /delay 0 
/if "$cursor()"=="TRUE" /goto :AutoDropkiteshield 
      /for v1 1 to 5 
         /delay 2 
         /if "$cursor()"=="TRUE" /goto :AutoDropsmithyhammer 
      /next v1 


      /if "$cursor()"=="FALSE" /goto :WaitCombine 
Seems if the cursor has anything on it you will use autodrop.

Code: Select all

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

  :AutoDrop
     /click left auto
Im a newbie to macroing. Its just a question, not critisism.