Search found 9 matches

by MrDoh
Thu Feb 19, 2004 3:14 pm
Forum: Macro Depot (MQ1)
Topic: Halls of Honor SE Kiter v1.0 for Necromancers
Replies: 10
Views: 4957

Glytch wrote:any idea how i might be able to change this for afk xp ?
hahahahahahahahahaha
by MrDoh
Wed Nov 19, 2003 10:33 am
Forum: MQ2::General
Topic: Ziracle.com updated
Replies: 34
Views: 7615

Anyone acutally know the guy? Anyone thought that he might be SOE in disguise?? Would be bright for them to do right? Kill MQ (at least publicly) by just pissing off the devs enough? No legal battles to fight, no threats to levy, no threats to receive... just one asshole that *EVERYONE* is pissed of...
by MrDoh
Tue Nov 18, 2003 3:58 pm
Forum: Macro Depot (MQ1)
Topic: New TS w/INI support
Replies: 64
Views: 18772

jsut tried this macro today to make some JC stuff. here is my ini [gte] Golden Topaz Earring cont="Planar Jeweller's Kit" comp0="gold bar" comp1="topaz" when i start the macro useing /macro ts "default" gte the program takes one gold bar puts it in the kit an...
by MrDoh
Tue Nov 18, 2003 1:45 pm
Forum: Macro Help (MQ1)
Topic: Simple genbot quetions
Replies: 3
Views: 1146

That's a little different...

Most people CTD if they DON'T /endmacro before camping... Not the other way around...

I guess one way would be to run another macro... that will stop this one (genbot) from running, then make your changes then run this macro again.
by MrDoh
Mon Nov 17, 2003 7:07 pm
Forum: Macro Requests (MQ1)
Topic: Simple Combine macro
Replies: 3
Views: 1569

In the Macro Depot, there are quite a few tradeskill macros. I use one that has INI file support so all you have to do is edit the INI file (it's only a text document) to add your recipes. The one I use doesn't do any selling or anything, just moving items into the container, pressing combine, and p...
by MrDoh
Mon Nov 17, 2003 3:34 pm
Forum: Macro Depot (MQ1)
Topic: Working Fletching script
Replies: 4
Views: 2066

I run the Tradeskill macro with INI support daily (the one listed right here in the depot) with the most current MQ, and it works wonderfully. The only thing that really needs to be done is to change the INI file to add your recipies and combine containers. Infact, last night happened to be fletchin...
by MrDoh
Wed Oct 29, 2003 1:21 pm
Forum: Macro Help (MQ1)
Topic: Fighting with { and }
Replies: 11
Views: 2689

Fixed it

Just incase anyone was wondering... I found, and fixed my problem. It wasn't the {} or else... the problem seems to be that I did my /declares before sub main. I left it like it was and added a second /declare below sub main and it worked every time. I then removed the /declare above sub main and le...
by MrDoh
Tue Oct 28, 2003 4:48 pm
Forum: Macro Help (MQ1)
Topic: Fighting with { and }
Replies: 11
Views: 2689

What I currently have...

This is what I currently have: /declare state1 /sub main /if $char(state)=="SIT" { /varset state1 "sitting" } else { /if $char(state)=="STAND" } { /varset state1 standing } else { /if $char(state)=="DUCK" } { /varset state1 ducking } else { /if $char(state)==&...
by MrDoh
Tue Oct 28, 2003 4:22 pm
Forum: Macro Help (MQ1)
Topic: Fighting with { and }
Replies: 11
Views: 2689

Fighting with { and }

Hello, I'm fairly new to MQ, but I've been programming for a while now. I can't seem to grasp the use on the brackets {} Here's what I mean: /if "$char(state)"=="SIT" /varset state1 sitting That works /if "$char(state)"=="SIT" {/varset state1 sitting} this doe...