Pottery.mac - Powerskilling pottery to 122

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

Moderator: MacroQuest Developers

User avatar
RPZip
a lesser mummy
a lesser mummy
Posts: 63
Joined: Sun Aug 11, 2002 11:31 pm

Pottery.mac - Powerskilling pottery to 122

Post by RPZip » Tue Aug 13, 2002 11:51 pm

My first macro, I basicially took Kiola.mac and edited it to work with pottery. I have it destroy the finished product (bowls) by default, since they sell to vendors for 0 unless you fire them, and it's just not worth it while skilling up. (NOTE: Turn fast item destroy on, or this won't work...) I have a high delay in there since otherwise it buggered up on my machine (items stuck in the hand, can't destroy fast enough, etc.), but I didn't exactly test it extensivley to determine a minimum. It's not a big deal since you're not making PP off this, and it only takes about 5 or so minutes to power it up to 122 (and for very cheap too, less than 10pp.)

Code: Select all

| - Pottery.mac -
|
| Please be near a open pottery wheel before you start this macro.
|
#include routines.mac
#turbo

Sub Main

   /itemtarget Pottery Wheel
   /face item
   /click left item
   /click left enviro combine
   :MakeKiola
      /sendkey down ctrl

      /finditem "Medium Bowl Sketch"
      /if $find()==FALSE /goto :Done
      /click left enviro 0

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

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


      /sendkey up ctrl
      /click left enviro combine

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

      /click left destroy
   /goto :MakeKiola

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

Gengis
a ghoul
a ghoul
Posts: 116
Joined: Wed Aug 14, 2002 7:46 pm

Post by Gengis » Fri Aug 16, 2002 2:40 pm

Nice Power Pottery macro. I used it on one of my characters and it works fast!

powerspike
a ghoul
a ghoul
Posts: 80
Joined: Sun Aug 11, 2002 11:40 pm
Location: Australia
Contact:

Post by powerspike » Fri Aug 16, 2002 11:45 pm

would have to agree there, ran it myself took around 3-4 mins to get 122 skill - very nice work.

powerspike
a ghoul
a ghoul
Posts: 80
Joined: Sun Aug 11, 2002 11:40 pm
Location: Australia
Contact:

Post by powerspike » Sat Aug 17, 2002 12:46 am

first attempt at a macro here - grabed RPzip's pottery and modifed it to do Large bowls which will bring your skill upto 148.

Code: Select all

| - Pottery_148.mac - 
| 
| Please be near a open pottery wheel before you start this macro. 
| 
#include routines.mac 
#turbo 

Sub Main 

   /itemtarget Pottery Wheel 
   /face item 
   /click left item 
   /click left enviro combine 
   :MakeLargeBowl
      /sendkey down ctrl 

      /finditem "Large Bowl Sketch" 
      /if $find()==FALSE /goto :Done 
      /click left enviro 0 

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

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

      /finditem "Glass Shard" 
      /if $find()==FALSE /goto :Done 
      /click left enviro 3

      /sendkey up ctrl 
      /click left enviro combine 

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

      /click left destroy 
   /goto :MakeLargeBowl

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

User avatar
L124RD
Site Admin
Site Admin
Posts: 1343
Joined: Fri Jun 14, 2002 12:15 am
Location: Cyberspace
Contact:

Post by L124RD » Sat Aug 17, 2002 11:58 am

Salutations,
how many of these components does it take (and money to buy all these components) to get to the two skill levels there are macros for?

Gengis
a ghoul
a ghoul
Posts: 116
Joined: Wed Aug 14, 2002 7:46 pm

Post by Gengis » Sat Aug 17, 2002 5:09 pm

The first macro cost me about 12 pp. The second macro cost me 180pp. That's with my rogue with no extra charisma or wis gear.

I'm gonna see if I can do casserole dishes to 198. I'll need to modify the macro to make ceramic linings then casserole dishes which won't be too hard. Hopefully it won't cost to much.

User avatar
RPZip
a lesser mummy
a lesser mummy
Posts: 63
Joined: Sun Aug 11, 2002 11:31 pm

Post by RPZip » Sat Aug 17, 2002 5:56 pm

I think it's probably cheaper to just use Casserole Dishes after medium bowls, given large bowls expense... I'll look it up.

User avatar
RPZip
a lesser mummy
a lesser mummy
Posts: 63
Joined: Sun Aug 11, 2002 11:31 pm

Post by RPZip » Sun Aug 18, 2002 12:05 am

Pottery2.mac (I'll post this in a new thread as well as here...) - For powerskilling pottery from 148 to 199.

Code: Select all

| - Pottery.mac -
|
| Please be near a open pottery wheel before you start this macro.
|
#include routines.mac
#turbo

Sub Main

   /itemtarget Pottery Wheel
   /face item
   /click left item
   /click left enviro combine
   :MakeKiola
      /sendkey down ctrl

      /finditem "casserole dish sketch"
      /if $find()==FALSE /goto :Done
      /click left enviro 0

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

      /finditem "large block of clay"
      /if $find()==FALSE /goto :Done
      /click left enviro 2

      /finditem "ceramic lining"
      /if $find()==FALSE /goto :Done
      /click left enviro 2

      /sendkey up ctrl
      /click left enviro combine

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

      /click left destroy
   /goto :MakeKiola

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

Now, keep in mind that casserole dishes (unfired) can be sold to vendors for ~48cp, a significant sum if you're trying to keep your prices down. If you want to sell it to the vendors, change the line

Code: Select all

      /click left destroy
to

Code: Select all

      /click left auto
Enjoy.

lpmko
orc pawn
orc pawn
Posts: 17
Joined: Thu Jun 20, 2002 11:00 pm

wont work for me...

Post by lpmko » Tue Aug 27, 2002 4:11 pm

i just get the "You must place items in this object in order to create something new"message, im in the old ui...newest macroques and new ini...whats the problem?

User avatar
L124RD
Site Admin
Site Admin
Posts: 1343
Joined: Fri Jun 14, 2002 12:15 am
Location: Cyberspace
Contact:

Post by L124RD » Tue Aug 27, 2002 4:12 pm

Salutations,
I'd think that /click isn't working...

ooze
decaying skeleton
decaying skeleton
Posts: 2
Joined: Fri Jan 24, 2003 8:42 pm

New input on mac

Post by ooze » Fri Jan 24, 2003 8:45 pm

I just used the inital pottery macro, and it faces me to the pottery wheel, then gives a message "Usage: /click <left|right> <mouseloc>".

I am running XP, and used the command to enable the od UI. I also have a backpack each of the block of clay, water flask, and medium bbowl sketch. What am I doing wrong?

User avatar
L124RD
Site Admin
Site Admin
Posts: 1343
Joined: Fri Jun 14, 2002 12:15 am
Location: Cyberspace
Contact:

Post by L124RD » Sat Jan 25, 2003 3:08 am

Salutations,
if you do /filter macros none and then try it, does it not error and work fine? that is an old bug, it will sometimes spam you error messages while doing it fine...

fan
decaying skeleton
decaying skeleton
Posts: 8
Joined: Sun Feb 02, 2003 4:39 am

Post by fan » Sun Feb 02, 2003 4:40 am

I also get this error Usage: /click <left|right> <mouseloc>". I tried the filter but still no go anyone have any ideas?

boldor
a ghoul
a ghoul
Posts: 94
Joined: Tue Sep 10, 2002 11:46 am

Post by boldor » Mon Feb 03, 2003 2:17 pm

Yes, I have an idea, called that any macro involving a /click command is currently out of commission until MQ can be fixed to work with the NEWUI VI seemed so intent on us to use.