A forum for you to dump all the macros you create, allowing users to use, modify, and comment on your work.
Moderator: MacroQuest Developers
-
ap50
- a snow griffon

- Posts: 425
- Joined: Sun Aug 18, 2002 2:29 pm
Post
by ap50 » Sun Nov 02, 2003 7:10 am
Also something else, my rogue just runs backwards now if she's out of range instead of adjusting her range to the mob with forwards and backwards..
[color=yellow][size=92][b]Just because you're paranoid, it doesn't mean everyone isn't out to get you![/b][/size][/color]
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Sun Nov 02, 2003 12:46 pm
I don't use the newest version of macroquest because it gives me random CTD's some things in my macro's that worked before now don't. Nopredict is now throwing up errors(I understand that it's the default but the nopredict flag should have been left in.) Once I compile a version that doesn't ctd my guys randomly I'll work on figuring out what is wrong with the macros in the newest version.
AP50: Check 1 setting in your ini file for me. FastMin. It should be less than RangeMin (It should default to 6 but one version of my code had a bug and made it 14 which causes problems.)
Thanks
GrimJack
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
Quadzer
- orc pawn

- Posts: 15
- Joined: Sun Oct 19, 2003 10:12 pm
Post
by Quadzer » Tue Nov 04, 2003 11:40 pm
I might be missing something, but will this macro work without a master?
For example I have a cleric and want to auto heal a group, I'm the cleric and the master. Just one account and one computer.
Thanks
-
theafkxper
- a hill giant

- Posts: 207
- Joined: Sun Sep 08, 2002 6:41 pm
Post
by theafkxper » Tue Nov 04, 2003 11:55 pm
jus tset yourself as master.
youll get "talking to yourself again?" messages every so often, but it works jsut fine as far as healing goes
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Wed Nov 05, 2003 12:19 am
theafkxper wrote:jus tset yourself as master.
youll get "talking to yourself again?" messages every so often, but it works jsut fine as far as healing goes
If you want to keep this from happening you can turn off the tell relay.
Thanks
GrimJack
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
theafkxper
- a hill giant

- Posts: 207
- Joined: Sun Sep 08, 2002 6:41 pm
Post
by theafkxper » Wed Nov 05, 2003 12:35 am
yar, that fixes most stuff, but in the version i have at least, not seeing your target will still spam master. prolly fixed though so /agree grimjack
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Wed Nov 05, 2003 12:57 am
theafkxper wrote:yar, that fixes most stuff, but in the version i have at least, not seeing your target will still spam master. prolly fixed though so /agree grimjack
Sorry, I left out that you would want to set verbosity to 0 as well. If you have an older version you may not have this setting.
Thanks
GrimJack
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
Rassilon
- a lesser mummy

- Posts: 73
- Joined: Thu Sep 04, 2003 6:34 pm
Post
by Rassilon » Wed Nov 05, 2003 1:49 am
Is there a way to change the way /afk works? If I put an /afk up on my bots or main and when the bots msg the main what its doing then the bots goes into /afk mode with the same msg I put up on my main.
I like this idea but I tried putting it into the personal.inc file at the end and it stops the genbot code and uses this as its macro. Is there someplace to input it into the code for it to work while genbot is running. Perhaps even have it only announcing the hp % when attacking.
Code: Select all
sub main
/declare lastpct global
/varset lastpct 0
:loop
/if $target(hp,pct)!=@lastpct {
/if n $target(hp,pct)>=20 {
/if n $calc($target(hp,pct)%10)==0 /call sayhps
} else {
/if n $calc($target(hp,pct)%5)==0 /call sayhps
/if n $target(hp,pct)<=5 /call sayhps
}
}
/delay 1
/if $target()==FALSE /return
/goto :loop
/return
sub sayhps
/varset lastpct $target(hp,pct)
/rsay %t $target(hp,pct)%
/return
Thanks
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Wed Nov 05, 2003 8:03 am
Rassilon wrote:Is there a way to change the way /afk works? If I put an /afk up on my bots or main and when the bots msg the main what its doing then the bots goes into /afk mode with the same msg I put up on my main.
I like this idea but I tried putting it into the personal.inc file at the end and it stops the genbot code and uses this as its macro. Is there someplace to input it into the code for it to work while genbot is running. Perhaps even have it only announcing the hp % when attacking.
Code: Select all
sub main
/declare lastpct global
/varset lastpct 0
:loop
/if $target(hp,pct)!=@lastpct {
/if n $target(hp,pct)>=20 {
/if n $calc($target(hp,pct)%10)==0 /call sayhps
} else {
/if n $calc($target(hp,pct)%5)==0 /call sayhps
/if n $target(hp,pct)<=5 /call sayhps
}
}
/delay 1
/if $target()==FALSE /return
/goto :loop
/return
sub sayhps
/varset lastpct $target(hp,pct)
/rsay %t $target(hp,pct)%
/return
Thanks
You need to take a look into this section of the personal.inc file.
Code: Select all
|Things that you want to happen every loop through the macro go in this sub.
Sub PersonalMain
/return
Sub PersonalMain gets ran 1 time every cycle through the macro. Code you want to execute every cycle goes in there.
Thanks
GrimJack
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
lenine
- decaying skeleton

- Posts: 3
- Joined: Thu Nov 06, 2003 9:07 am
Post
by lenine » Thu Nov 06, 2003 9:18 am
this is the best written macro I have ever seen and i commend your good job on it.
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Thu Nov 06, 2003 11:08 am
Updated bot to remove nopredict since it is now the default. Same with look. Other minor tweaks and updates too.
Thanks
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
mackster
- a ghoul

- Posts: 95
- Joined: Mon Sep 09, 2002 3:02 pm
Post
by mackster » Thu Nov 06, 2003 11:38 am
Anyone have this working with the latest MQ version? I can't get it to do anything, not even a cmds list.
EDIT: Ahh it appears the bot will not work if you use /tell windows.
-
grimjack
- Macro Author

- Posts: 525
- Joined: Thu Nov 07, 2002 6:51 am
-
Contact:
Post
by grimjack » Thu Nov 06, 2003 12:07 pm
mackster wrote:Anyone have this working with the latest MQ version? I can't get it to do anything, not even a cmds list.
EDIT: Ahh it appears the bot will not work if you use /tell windows.
They must be similare to typing ;tell instead of /tell. /tell works, ;tell does not for some reason. I think I remember it being like that anyway.
Thanks
When they come to me, they're in trouble, or they want some. I bust people out of prison, hunt down vampires, fight alien gods -- All the fun jobs people are too squeamish or too polite to do themselves.
Call me a mercenary. Call me an assassin. Call me a villain. I am all that and more.
My name's John Gaunt, but out on the streets of Cynosure, I am called...
GrimJack
-
lenine
- decaying skeleton

- Posts: 3
- Joined: Thu Nov 06, 2003 9:07 am
Post
by lenine » Thu Nov 06, 2003 3:15 pm
just curious, is there any type of readme for this script or are we supposed to figure it out on our own?
ty :)
-
Dropped
Post
by Dropped » Thu Nov 06, 2003 8:39 pm
First off let me say this is my first attempt at using EQM and Genbot seems to be a great script that should handle all my problems, at least that is my opinion after reading this thread... However I have some problems...
When I try to get the macro to work it says.. "Cleared the following: Timers Vars Arrays" I read on another post this could be because I have another macro running, however.. I assure you this is not the case.
Any assistance would be welcomed, also is there a readme file that has all the commands that this macro uses available?
Thx!