Search found 15 matches

by bollox
Fri Apr 30, 2004 9:32 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Genbot Version 12 Ready
Replies: 285
Views: 94127

botpell.inc : Sub WaitForCast : CTimer

Thanks for the addition of checknames , LordGiddion-- it works great :) Dulapore, gus, thanks for the heads up. I was looking at the wrong genbot version and had no idea it was already there. *flogs self with RTFM cat-o-nine tails* In botspell.inc : WaitForCast you set CTimer incorrectly: /varset CT...
by bollox
Fri Apr 30, 2004 2:29 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: Genbot Version 12 Ready
Replies: 285
Views: 94127

Multiple bots per channel

LordGiddion: there is currently no way to manage multiple bots per communication channel. For example, if you have two bots in an IRC channel and you issue a command, they will both execute that command. I propose that we change the command syntax from command to botname command This requires only a...
by bollox
Thu Apr 29, 2004 10:29 pm
Forum: Macro Depot (MQ1)
Topic: Genbot Version 12 MQ2Data Ready
Replies: 138
Views: 65252

Consistancy

I've noticed quite a bit of discrepancies for the command array naming scheme: typos and capitalization errors. In the interest of preventing confusion, perhaps we should adhere to "<modulename>Array" as reference. (i.e. bothealer.inc's command array would be defined as "BotHealerArra...
by bollox
Thu Apr 29, 2004 9:23 pm
Forum: Macro Depot (MQ1)
Topic: Genbot Version 12 MQ2Data Ready
Replies: 138
Views: 65252

Syntax: botcore.ini: Do-reportbuffs

botcore.ini : in function Do-reportbuffs : /varcat myBuffs " ${Me.Buff[${$counter}]}" Needs to have the extra "$" removed from before "counter": /varcat myBuffs " ${Me.Buff[${counter}]}" AND /next tempvar Needs to be: /next counter
by bollox
Thu Apr 29, 2004 9:14 pm
Forum: Macro Depot (MQ1)
Topic: Genbot Version 12 MQ2Data Ready
Replies: 138
Views: 65252

Syntax error: botcore.ini: Sub ExecCommand

botcore.ini: in function Sub ExecCommand:

Code: Select all

next counter
needs a preceding "/":

Code: Select all

/next counter
by bollox
Thu Apr 29, 2004 9:11 pm
Forum: Macro Depot (MQ1)
Topic: Genbot Version 12 MQ2Data Ready
Replies: 138
Views: 65252

Typo: botcore.ini: Event_SelfEcho

botcore.ini: in function Event_SelfEcho

Code: Select all

Sub Event_SelfEcho(string EchoText)
   /varset MasterName ${Me.ClearName}
   /call ExecCommand ${EchoText}
/return
You need to change

Code: Select all

${Me.ClearName}
To

Code: Select all

${Me.CleanName}
by bollox
Thu Apr 29, 2004 7:37 pm
Forum: Macro Depot (MQ1)
Topic: Genbot Version 12 MQ2Data Ready
Replies: 138
Views: 65252

botcore.inc Event_Chat

Small syntax error prevents genbot from grabbing incoming commands: Sub Event_Chat (string ChatType,string ChatSender,string ChatText) should be: Sub Event_Chat(string ChatType,string ChatSender,string ChatText) ..there shouldn't be a space between "Event_Chat" and the opening parenthesis....
by bollox
Sat Apr 24, 2004 12:40 am
Forum: Macro Depot (MQ1)
Topic: MQ2Data GenBot, 99% Complete
Replies: 106
Views: 35539

Error in Event_timer (botcore.ini)

You need to remove the "@" before SitTimer in the first compare. Sub Event_timer /if (${String[@Param0].Equal[@SitTimer]} && ${String[${Me.State}].Equal[STAND]}) /sit /return It should be Sub Event_timer /if (${String[@Param0].Equal[SitTimer]} && ${String[${Me.State}].Equal...
by bollox
Thu Apr 22, 2004 3:14 am
Forum: Macro Depot (MQ1)
Topic: ogrebash v1.3 [mq2data]
Replies: 5
Views: 1703

Make socials for them. Here's mine in <charname>_<server>.ini: [Socials] Page1Button1Name=AASTF Page1Button1Line1=/macro ogrebash stick taunt fast Page1Button1Color=13 Page1Button2Name=AAFTF Page1Button2Line1=/macro ogrebash face taunt fast Page1Button2Color=13 Page1Button3Name=AASNF Page1Button3Lin...
by bollox
Thu Apr 22, 2004 2:46 am
Forum: Macro Depot (MQ1)
Topic: MQ2Data GenBot, 99% Complete
Replies: 106
Views: 35539

Multiple genbots per channel

Genbot is fine is you are talking to them in their own channel, but what if you want to control several genbots inside a single IRC channel? They would simultaneously execute each command. My solution to this is a new syntax: <botname> <command string> So you could issue /irc keimaster autoheal off ...
by bollox
Thu Apr 22, 2004 2:28 am
Forum: Macro Depot (MQ1)
Topic: MQ2Data GenBot, 99% Complete
Replies: 106
Views: 35539

Correction

botcore.inc: Sub Do-moveto (line 993)

Code: Select all

   /if (${String[${Target.CleanName}].NotEqual[@ParamString]) /target "@ParamString"
..is missing a closing sqiggly brace, should be

Code: Select all

   /if (${String[${Target.CleanName}].NotEqual[@ParamString]}) /target "@ParamString"
by bollox
Thu Apr 22, 2004 2:12 am
Forum: Macro Depot (MQ1)
Topic: ogrebash v1.3 [mq2data]
Replies: 5
Views: 1703

Rectified! <grin>
by bollox
Thu Apr 22, 2004 1:00 am
Forum: Macro Depot (MQ1)
Topic: ogrebash v1.3 [mq2data]
Replies: 5
Views: 1703

ogrebash v1.3 [mq2data]

Ogre warrior autoattack script. Features: * sticks/faces mob and uses combat abilities automatically * avoids enrage damage * spellcaster auto-interrupt | OgreBash v1.3 [mq2data version] by Bollox (Apr 21 2004) |----------------------------------------------------------------------------- | | Ogre w...
by bollox
Fri Apr 09, 2004 12:28 pm
Forum: Macro Depot (MQ1)
Topic: MQ2Data GenBot, 99% Complete
Replies: 106
Views: 35539

Nice work! There are few changes that I'd like to propose over the course of several posts, the first one being Sub Do-heal in bothealer.inc . As the code stands now, the master cannot request a heal to be cast on him when he is in combat or does not have himself targeted. We should change ... /newi...
by bollox
Wed Dec 31, 2003 10:46 pm
Forum: Macro Depot (MQ1)
Topic: genbot.mac Generic Bot macro for any class. V9.3 with ini
Replies: 258
Views: 85136

genbot syntax suggestion

I send commands to genbot from an IRC channel. Since there is a lot of chatter in the channel, genbot occasionally crashes due to the Event_Chat being unable to parse unfamiliar characters, or multiple doublequotes, etc. I propose that we change the genbot command syntax to require that the genbot's...