Search found 73 matches

by dok
Sat Aug 14, 2004 12:02 pm
Forum: MQ2::Custom UI
Topic: Inventory Window
Replies: 2
Views: 2235

Inventory Window

I know it doesn't have any MQ stuff in it, but Amadeus wanted one like http://www.eqinterface.com/downloads/fileinfo.php?id=2340 with with mana and end on it also... Anyway, this is the one I use, if you want it... http://dok.50megs.com/inventory.jpg I know its not exactly like the one you linked, b...
by dok
Fri Aug 13, 2004 3:37 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Fake links on the fly
Replies: 22
Views: 9842

Had some free time, so made the plugin. posted in the public plugin section.
by dok
Fri Aug 13, 2004 12:58 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Fake links on the fly
Replies: 22
Views: 9842

What might work a little better is if it accepted commands like this: /mac fakelink /g This is normal Text. [This is linked text] shouldn't be too hard to find all instances of [ and ] and replace with the code to link. Even if you did it one character at a time. Also, shouldn't need to specify the ...
by dok
Sun Aug 01, 2004 9:32 pm
Forum: MQ2::Macros::Requests
Topic: Simple Autotarget
Replies: 9
Views: 2506

:Loop
/if (!${Target.ID}) /target npc xxxxx radius ##
/goto :Loop

you fill in the rest to make it work with paramters, etc.
by dok
Sat Jul 31, 2004 3:03 am
Forum: MQ2::Help
Topic: character stats?
Replies: 2
Views: 846

Looking at the code, it looks like that stuff was never fully implemented. The Struct looks to be there, but just not completed in the MQ2DataTypes.CPP
by dok
Sat Jul 31, 2004 1:52 am
Forum: MQ2::Macros::Help
Topic: Calling macros from hotkeys
Replies: 5
Views: 1299

well, you could always try setting a global var (not outer) in your macro and checking if thats set with command.
by dok
Fri Jul 30, 2004 12:59 am
Forum: MQ2::Bug Reports
Topic: PoF AE Kiteing
Replies: 8
Views: 2062

disable enviromental particles first thing. All those useless flames on the trees kills most people. Sound is also a huge fps hog, and most people dont play with sound on anyway. Might as well disable it all together.
by dok
Fri Jul 30, 2004 12:47 am
Forum: MQ2::Macros::Requests
Topic: how about
Replies: 4
Views: 1388

something along the lines of: Snippet of code: /declare PetEngaged string local false /if (${Me.Pet.ID}&&${Me.Combat}&&!${PetEngaged}) { /pet attack /varset PetEngaged TRUE } /if (${Me.Pet.ID}&&!${Me.Combat}&&${PetEngaged}) { /pet back off /pet hold /varset PetEngaged...
by dok
Tue Jul 27, 2004 7:00 pm
Forum: MQ2::General
Topic: Foraging, simply
Replies: 7
Views: 2065

Using the mouse to click things just sucks when you can use keyboard commands. Too many variables to consider, like window positions, etc. :Loop /if (${Me.AbilityReady["Forage"]}) /doabilty Forage /if (${Cursor}) /autoinventory /goto :Loop Btw, this is posted in way the wrong section. Post...
by dok
Mon Jul 26, 2004 2:50 am
Forum: MQ2::Macros::Requests
Topic: AFK Forage
Replies: 5
Views: 1664

some people will never see the search button, no matter how big you make it. its just not in some peoples thought process to look for something before asking. Even just looking through the first 2 pages in the macro depot theres 4 macros that deal with foraging directly. Unknown how countless many c...
by dok
Sun Jul 25, 2004 2:30 am
Forum: MQ2::Macros::Help
Topic: Agro Radius
Replies: 9
Views: 2118

theres actually 2 different serverside variables on when a mob aggros. Theres aggro radius (distance a mob will aggro you), and social radius (distance a mob will bring friends). Both of these values are serverside best I could tell from looking at the memory values. True that some people try to use...
by dok
Sat Jul 24, 2004 12:22 pm
Forum: MQ2::Macros::Help
Topic: pulling 2 lines of text with #event
Replies: 5
Views: 1410

Last i checked, you could assisgn multiple events to the same function. #event FoodDrink "You are out of food." #event FoodDrink "You are out of drink." #event FoodDrink "#*#Summon Food" #event FoodDrink "#*#Summon Drink" All the above should call the same Fun...
by dok
Fri Jul 16, 2004 1:15 pm
Forum: MQ2::Bug Reports
Topic: Typo in Readme
Replies: 3
Views: 1121

you divided by 3.3 because sony breaks the exp into 330 parts and sends that number that to the client. (I assume thats what ${Me.GroupLeaderExp} returns as I haven't used it myself)
by dok
Mon Jun 28, 2004 4:09 pm
Forum: MQ2::Macros::Help
Topic: Another timer question for my mage macro heh
Replies: 7
Views: 2232

What I would do in your situation is remove the initial "/varset RodTimer 5m" because thats what actually starts the timer. You should only start the timer either just before or just after you use the Rod. Next, in one of the following, you need to do a check to see if the timer <= 0. I'd ...
by dok
Thu Jun 24, 2004 1:46 am
Forum: MQ2::Macros::Help
Topic: Trying To Determine My Target's Buffs
Replies: 5
Views: 1722

ya. that way seems to work the most reliably. sucks if you need to restart the macro for some reason, but unless you store buffs in an ini file, you just have to deal with it. One thing I did to kinda help with buffs is I setup my cleric bot to announce if any of its buffs has under 5 min left on it...