Every EverQuest related project needs an EverQuest forum! talk about anything you like... EverQuest related of course.
Moderator: MacroQuest Developers
-
boldor
- a ghoul

- Posts: 94
- Joined: Tue Sep 10, 2002 11:46 am
Post
by boldor » Wed Oct 16, 2002 12:01 pm
im humbled
Last edited by
boldor on Wed Oct 16, 2002 4:41 pm, edited 1 time in total.
-
Gambi
- decaying skeleton

- Posts: 2
- Joined: Tue Oct 15, 2002 8:36 pm
Post
by Gambi » Wed Oct 16, 2002 12:47 pm
so why did my post get deleted? hey I am just trying to get some help here not trying to cause any trouble but aye boldor since you where the pope in a past life maybe you can take the time to explain where my problem is, since you where the pope and all, and if you cant do that then
Shut THe F Up! 
-
rizwank
- Huggle Police

- Posts: 524
- Joined: Tue Jul 23, 2002 12:07 am
-
Contact:
Post
by rizwank » Wed Oct 16, 2002 2:39 pm
some on else explain please.
#macroquest op
Macroquest Official Documentarion
Macroquest Board Moderator
All around cool guy
[img]http://medicomuerte.users.btopenworld.com/images/fairy_bounce08.gif[/img]
-
Samefudge
- orc pawn

- Posts: 20
- Joined: Thu Sep 12, 2002 4:41 pm
Post
by Samefudge » Wed Oct 16, 2002 2:56 pm
There are MANY pre-existing macros you can RTFM and learn to modify and use yourself, if you are so inclined and take the time and spend the effort to actually do it.
If not, you will find no sympathy, nor help, from here.
Also, plat making macros are a strictly taboo topic, don't even go there on this board.
-
Gambi
- decaying skeleton

- Posts: 2
- Joined: Tue Oct 15, 2002 8:36 pm
Post
by Gambi » Wed Oct 16, 2002 8:49 pm
hey I dont want no plat I got about 300k in the bank I just need some skill points without trying to kill my wrist and hands. see with my condition that I have I will never play the guitar, nor will I ever play the piano...hehehe but I can play EQ just cant do alot of typing or skill work and if I do try to do those things I just might as well take my meds cause I wont be able to use my hands for a week, and I hope I get banned from EQ for using 3rd party software cause I can show cause and I will file suit now some one let me know how I get this thing to work so I can get a few points in skill before I make lvl 60...hehehe...I just want to be like all the rest and have a skill thats mastered thats all

-
otis
- decaying skeleton

- Posts: 5
- Joined: Wed Oct 16, 2002 9:00 pm
Post
by otis » Wed Oct 16, 2002 10:05 pm
Its actually pretty easy.
Look at the readme file included in the software. Look at some of the examples of the programs that are written.
And there is your answer.
-
Draekz
- a hill giant

- Posts: 263
- Joined: Thu Aug 01, 2002 6:07 pm
- Location: Winnipeg, Manitoba, Canada
Post
by Draekz » Thu Oct 17, 2002 12:06 am
Aye, Like i said before, unfortunately..even if we did want to believe you, it would be unwise for anyone to post any macros like that..and especially since it was a fletching macro..thats about 10x bad hehe.
Unfortunately i also just got off work else i'd make an example for u to try..sorry, perhaps morrow or whenever i'm not too busy
GL with the macroing tho
Draekz
-
Stargazer
- a lesser mummy

- Posts: 32
- Joined: Mon Sep 30, 2002 3:30 pm
Post
by Stargazer » Thu Oct 17, 2002 2:59 am
Here is a very simple fletching macro I threw together that is just like most of the tradeskilll macros that have been posted. You should be able to modify this to do what you need it to.
Code: Select all
| - simple.mac -
| a simple fletching macro
|
| this assumes your empty fletching kit is in the last slot
| delays have been added so it fletches at a normal speed
Sub Main
/cleanup
/if $invpanel==TRUE /if $pack(7,open)!=TRUE /click right inv 7
:MakeArrows
| if you hit esc while fletching, this will force an exit
/if $invpanel==FALSE /goto :EXIT
/if $pack(7,open)!=TRUE /goto :EXIT
| set it to pick up one item at a time
/sendkey down ctrl
| get vane
/finditem "Rounded Fletch"
/if "$cursor()"=="NULL" /goto :EXIT
/click left pack 7 0
/delay 10
| get nock
/finditem "Large Groove Nocks"
/if "$cursor()"=="NULL" /goto :EXIT
/click left pack 7 1
/delay 10
| get shaft
/finditem "Bundled Wooden Arrow Shafts"
/if "$cursor()"=="NULL" /goto :EXIT
/click left pack 7 2
/delay 10
| get arrowhead
/finditem "Field Point Arrowheads"
/if "$cursor()"=="NULL" /goto :EXIT
/click left pack 7 3
/delay 10
| reset single item mode
/sendkey up ctrl
| combine
/click left pack 7 combine
/delay 10
:DropArrows
/if "$cursor()"=="TRUE" /click left auto
/delay 10
/if "$cursor()"=="TRUE" /goto :DropArrows
/goto :MakeArrows
:EXIT
| clean up
/sendkey up ctrl
/delay 10
/press esc
/press esc
/return
-
wolfean
- decaying skeleton

- Posts: 5
- Joined: Tue Oct 01, 2002 4:04 pm
Post
by wolfean » Fri Oct 18, 2002 4:19 pm
Gambi,
It would be easiest for you and prolly teach you something if you would use the combine.mac in the macro depot. It's stickied so you wont have to search to far. That way it will be cheapest when skilling up fletching by using both fletches or vanes.
wolfean