PowerTradeskills -- NEED Recipe Sets!

Need some help with that macro you're working on or aren't quite sure how to get your macro to do something? Ask here!

Moderator: MacroQuest Developers

CapnBry
orc pawn
orc pawn
Posts: 24
Joined: Wed Jan 07, 2004 11:19 am
Location: The 5,000th Dimension of the Moon
Contact:

Post by CapnBry » Tue Feb 03, 2004 8:23 am

For baking I went to Thurgadin, did Filleted Bear up to 143. Bring a fillet knife and the meat vendor is in reach of the oven

Code: Select all

[BearFillet]
Cont=enviro
Comp0=Bear Meat
Comp1=Filleting Knife
Then loaded up on supplies for patty melts (trivial 191), which requires a trip to Jaggedpine Forest for cheese. Just get a few packs of cheese and head back to Thurgadin and make the sammiches.

Code: Select all

[Patty]
Cont=enviro
Comp0=Bear Meat
Comp1=Cheese
Comp2=Loaf of Bread
Comp3=Non-stick Frying Pan
-- Excalibur / DaocSkilla Lead Developer

Mckorr
Developer
Developer
Posts: 2326
Joined: Fri Oct 18, 2002 1:16 pm
Location: Texas

Post by Mckorr » Tue Feb 03, 2004 8:26 am

You using KHiTs for that?

CapnBry
orc pawn
orc pawn
Posts: 24
Joined: Wed Jan 07, 2004 11:19 am
Location: The 5,000th Dimension of the Moon
Contact:

Post by CapnBry » Tue Feb 03, 2004 8:46 am

Yes I use KHiTs with the tradeskills.inc
-- Excalibur / DaocSkilla Lead Developer

User avatar
Elric
Cheese Whore
Cheese Whore
Posts: 466
Joined: Sun Nov 23, 2003 12:31 am
Location: Tampa, Fl
Contact:

Post by Elric » Tue Feb 03, 2004 12:16 pm

To get my baking up, I used Fish Rolls. Fresh Fish and a Bat Wing.. Then went straight to melts.

My baking went from 10 to 192 in a night using Khits.. Only problem was that I had to use my druid to farm the cheese.
-Elric

Zeit
a lesser mummy
a lesser mummy
Posts: 34
Joined: Sat Jan 24, 2004 5:54 am

Post by Zeit » Thu Feb 05, 2004 2:27 am

sorry for the long response its just been crazy with work last few days here is the code im using for 148-248 just change what its looking for (recipe wise) to get from 0-148 i used large bowl also changed it around to get from 0-191 baking on patty melts id post it but its pretty much the same one as pottery idols

Code: Select all

| - Pottery.mac - 

#turbo 

Sub Main 
    /declare Counter local 

    :Combine 

    /itemtarget Pottery Wheel 
    /face item 
    /click left item 
    /delay 1s 

    | Open up entire inventory 
    /press i 
    /for Counter 0 to 7 
        /delay 2 
        /click right inventory @Counter 
    /next Counter 

    :Make 

        /sendkey down ctrl 

        /finditem "Idol Sketch" 
        /delay 2 
        /if $find()==FALSE /goto :Done 
        /click left enviro 0 
        /delay 5 

        /finditem "Imbued Amber" 
        /delay 2 
        /if $find()==FALSE /goto :Done 
        /click left enviro 1 
        /delay 5 

        /finditem "Large Block of Magic Clay" 
        /delay 2 
        /if $find()==FALSE /goto :Done 
        /click left enviro 2 
        /delay 5 

        /finditem "vial of clear mana" 
        /delay 2 
        /if $find()==FALSE /goto :Done 
        /click left enviro 3 
        /delay 5 
        
        /finditem "Sculpting Tools" 
        /delay 2 
        /if $find()==FALSE /goto :Done 
        /click left enviro 4 
        /delay 5 

        /sendkey up ctrl 
        /click left enviro combine 
        /delay 5 

    | Empty cursor 
    :ClearCursor 
        /if "$cursor(name)"~~"Sculpting Tools" { 
           /autoinventory 
           /delay 5 
        } else { 
         /click left destroy 
         /delay 5 
        } 

        /if "$cursor()"!="TRUE" /goto :Make 
          
        /goto :ClearCursor 

    :Done 
        /sendkey up ctrl 

        /click left enviro done 

        /for Counter 1 to 9 
            /press esc 
        /next Counter 
/return 
Its not pretty but it works for me I cant get khits to work for me just doesnt ever find the container no matter what i do so this is my alternative feel free to improve on what i have here i have real basic knowledge of macroing.

One note: For some reason it randomly eats tools anyway.. thinking maybe i need more delay on that step or possibly someone knows what i did wrong there havent had time to trouble shoot it, i just gather a few tools it doesn eat them often just once in awhile. Have fun!