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

- Posts: 181
- Joined: Fri Dec 05, 2003 12:54 pm
Post
by dman » Fri Feb 27, 2004 8:40 am
Needing to look at your book to med was removed close to a year ago, not sure on exact time, but its been a while. If you want to confirm, just check you mana regen rates while just sitting and with /book.
-
Dulapore
- a lesser mummy

- Posts: 67
- Joined: Thu Feb 26, 2004 4:39 am
Post
by Dulapore » Fri Feb 27, 2004 8:45 am
You haven't had to look at the book to meditate since around Luclin.
-
rencro
- Custom Builder

- Posts: 56
- Joined: Sat Sep 27, 2003 12:39 am
Post
by rencro » Fri Feb 27, 2004 12:06 pm
There seems to be an occasional bug in eq where an almost dead mob will warp to another part of the zone on its own(Happens in pov about once a night) You're "bots" run like bats outta hell to mobs new location, all the while picking up every add in the zone. Also in some instances where a mob will gate on you the same happens. So:
In Botcore.inc add in red
Code: Select all
Sub Rangesub
/if $target()==FALSE /return
[color=red] /if n $target(distance)>200 {
/call Do-stop
/return }[/color]
/if "$target(name,clean)"=="$char(name)" /return
/if "$char(state)"=="SIT" /stand
/face fast
/if n $target(distance)>=@FastRange /call Fastmove
/if n $target(distance)<=@FastMin /call FastBack
/if n $target(distance)>@RangeMax {
/press up
}
/if n $target(distance)<@RangeMin {
/press down
}
/return
-
lasher
- a lesser mummy

- Posts: 71
- Joined: Thu Dec 18, 2003 4:09 pm
Post
by lasher » Fri Feb 27, 2004 12:58 pm
rencro wrote:There seems to be an occasional bug in eq where an almost dead mob will warp to another part of the zone on its own(Happens in pov about once a night) You're "bots" run like bats outta hell to mobs new location, all the while picking up every add in the zone. Also in some instances where a mob will gate on you the same happens. So:
Your patch would cause problems with pulling. I'll see about a sanity check, however.
-
lasher
- a lesser mummy

- Posts: 71
- Joined: Thu Dec 18, 2003 4:09 pm
Post
by lasher » Fri Feb 27, 2004 6:45 pm
Helone wrote:hmm, that is odd, because I med mana WAY faster when looking at the book, or so it seems, looks like it is time to time it and see if I am insane, which I more then likely am
See what happens when you take a year and a half off a game lol
/echo $char(mana,regen)
try that command when looking at the book, and when just sitting.
-
Helone
- decaying skeleton

- Posts: 2
- Joined: Mon Feb 23, 2004 7:50 pm
Post
by Helone » Fri Feb 27, 2004 6:45 pm
hmm, that is odd, because I med mana WAY faster when looking at the book, or so it seems, looks like it is time to time it and see if I am insane, which I more then likely am
See what happens when you take a year and a half off a game lol
-
CyberTech
- a ghoul

- Posts: 97
- Joined: Wed Jun 26, 2002 9:27 am
Post
by CyberTech » Fri Feb 27, 2004 8:54 pm
Couple Items:
1) You had me all happy with that zip file to DL then blew my joy with it's contents
2) Is it possible to get the files renamed in the next version to all start with genbot? My macros directory has a ton of files in it, would help greatly.
3) A few changes I added (some from these forums), don't know if they interest you:
bothealer.inc
Code: Select all
@@ -682,6 +681,7 @@
/varadd WatchTargetCount 1
/varset WatchTargets(@WatchTargetCount) $target(name)
/varset WatchTargetIDs(@WatchTargetCount) $target(id)
+ /call ChatOut 5 @MasterName "Added $target(name) to watch list. Now watching @WatchTargetCount people."
} else {
/call ChatOut 3 @MasterName "What did you want me to target?"
}
botspell.inc
Code: Select all
--- ../botspell.inc Mon Feb 23 17:32:36 2004
+++ botspell.inc Fri Feb 27 17:37:02 2004
@@ -1,3 +1,4 @@
+
|botspell.inc
|Bot spell module.
|Version 9.11
@@ -269,7 +270,7 @@
/return
Sub Event_CastNoMana
- /if @IsPally==1 {
+ /if n @IsPally==1 {
4) Any particular reason we don't default singing to 1 when IsBard is true? Considering the only effect would be the bard would start manasong on macro start.
-
Craft
- orc pawn

- Posts: 11
- Joined: Fri Feb 13, 2004 3:39 am
Post
by Craft » Sat Feb 28, 2004 7:13 am
Normally when I'm hydraing I play the main tank of the group and macro the healers and slowers. Lately a friend of mine has been playing another warrior with me and I want to add a new command to the macro that will allow me to slow his mobs easier. I've grabbed the section of the slow command and I'm trying to get it to slow his target... basically I was something so that I tell the bot <msg>offslow warrior2 and it will assist warrior2 and slow. I've looked at the do-slow function and the sn-function but I'm not exactly sure what I need for it to assist him.....
Craft
-
Chaesar
- orc pawn

- Posts: 15
- Joined: Mon Feb 23, 2004 1:28 pm
Post
by Chaesar » Sat Feb 28, 2004 11:53 am
I found a couple issues related to using IRC as the chat channel. First in the botcore.inc:
Code: Select all
Sub ChatOut(ChatPriority,ChatTarget,ChatText)
/if n @ChatPriority>@Verbosity /return
/if "@ChatIn"=="IRC" {
[color=red]/irc @ChatText [/color]
/return
}
...
I was receiving "Could Not Parse /irc ..." messages so I changed it to read:
Code: Select all
Sub ChatOut(ChatPriority,ChatTarget,ChatText)
/if n @ChatPriority>@Verbosity /return
/if "@ChatIn"=="IRC" {
[color=red]/i msg @ChatTarget @ChatText[/color]
/return
}
...
Second, the botheal.inc list of commands always sends the reply as a tell unlike the other command lists which use the default channel:
Code: Select all
Sub TellCmds-healer
/declare counter local
/declare cmds local
/varset cmds ""
/for counter 0 to @ArrayHeal
/varcat cmds "@Commands(4,@counter), "
/next counter
[color=red]/msg @MasterName @cmds [/color]
/return
Was changed to:
Code: Select all
Sub TellCmds-healer
/declare counter local
/declare cmds local
/varset cmds ""
/for counter 0 to @ArrayHeal
/varcat cmds "@Commands(4,@counter), "
/next counter
[color=red]/call ChatOut 2 @MasterName "@cmds."[/color]
/return
To make it consistant with the other Sub TellCmds-* procedures.
HTH
Chaesar
-
JimJohnson
- a grimling bloodguard

- Posts: 1299
- Joined: Sat Oct 11, 2003 6:00 am
Post
by JimJohnson » Sun Feb 29, 2004 6:31 am
Craft if all your doing with shaman is slowing and now and again doing a buff use the Autodebuff mac. I use it in PoEarth slows 3-4 mobs fast and effectivly malos / slow each of them.
-
Craft
- orc pawn

- Posts: 11
- Joined: Fri Feb 13, 2004 3:39 am
Post
by Craft » Mon Mar 01, 2004 1:19 am
I'll look into the debuff.mac... I try to get the most use from the shaman as I can manage, slowing, debuffing, buffs, dots and canni... I'll see if I can use the functions in debuff mac to get what I'm looking for...
Thanks Jim Johnson
Craft
-
JimJohnson
- a grimling bloodguard

- Posts: 1299
- Joined: Sat Oct 11, 2003 6:00 am
Post
by JimJohnson » Mon Mar 01, 2004 9:45 am
as long as your not using it to buff your group members with FA Autodebuff the way to go for shaman. tweak the settings he gives great detailed set ups. cast DoTs at X % canni when low mana, Heal himself when Canni5 or gets hit under a %. its best shaman macro around. Works great for druid / wizzies also to just auto nuke.
Ran about3 hours wiht no problems doing Malos Turgors Cripple Blood of Saryrn + epic and Canni5 / Quin when low hps mana.
-
Wylker
- a lesser mummy

- Posts: 42
- Joined: Tue Feb 10, 2004 5:32 pm
Post
by Wylker » Sat Mar 06, 2004 5:31 pm
Is there any way to get the bot to accept comands from multiple masters? This would be for a situation where me and a friend are using the bot but can not be grouped with him for autohealing...
-
bob_the_builder
- a hill giant

- Posts: 275
- Joined: Tue Jul 22, 2003 1:22 pm
Post
by bob_the_builder » Sat Mar 06, 2004 5:46 pm
Is there any way to get the bot to accept comands from multiple masters
As shown in the code:
Code: Select all
/echo Usage: /macro generic <Master Name1> <Master Name2>...
So, yuppers.
/mac genbot Wylker Friend Bob Etc
All these folks can control your bot.
Bob
-
Wylker
- a lesser mummy

- Posts: 42
- Joined: Tue Feb 10, 2004 5:32 pm
Post
by Wylker » Sat Mar 06, 2004 6:18 pm
Lol thanks, /turns off stupid mode, man thats two stupid ass posts from me in one day.. better get off the boards!