Search found 12 matches

by Chaesar
Thu Apr 22, 2004 12:39 pm
Forum: Macro Help (MQ1)
Topic: Requesting code review
Replies: 9
Views: 2509

Shouldn't the two instances of

Code: Select all

/newif (${Me.State.Equal["SIT"]}) /sit
be

Code: Select all

/newif (${Me.State.Equal["SIT"]}) [color=red]/stand[/color]
in order to stand for casting your fishing pole and gate?
by Chaesar
Tue Apr 20, 2004 7:56 pm
Forum: MQ2::General
Topic: replacement for /exp?
Replies: 6
Views: 1764

Code: Select all

/exp=/echo ${Me.PctExp}% experience...
is what I changed it to.
by Chaesar
Tue Apr 20, 2004 4:27 pm
Forum: Macro Help (MQ1)
Topic: My Macro Is Broken and I need Help Fixing It
Replies: 6
Views: 1885

As Preocts said above, me != Me in the new system. You need to make the M uppercase in all instances. Also you might want to consider restructuring your /newif statements. I don't think that () are necessary unless you are trying to specify the order of your conditions. /newif ${Me.PctHPs}<35 /call ...
by Chaesar
Fri Apr 02, 2004 6:28 pm
Forum: MQ2::Bug Reports
Topic: /endmacro not clearing vars
Replies: 4
Views: 1141

I cannot find the thread atm, but the reason for the change was for those who use global variables in their /custombind commands. Lax had said that global variables didn't get cleared upon completion of macros, but later found that they did so he changed it.
by Chaesar
Mon Mar 29, 2004 1:24 pm
Forum: CFG/Bind snippets
Topic: Easy Corpse Looting
Replies: 11
Views: 9252

Easy Corpse Looting

As a frequent ML in LDoN adventures, I found that looting some of those corpses to be a major PITA. So I made this target and loot bind command and it works wonderfully. /custombind add lootcorpse /custombind set lootcorpse /multiline ; /target corpse radius 17; /loot /bind lootcorpse f The radius 1...
by Chaesar
Tue Mar 23, 2004 5:38 pm
Forum: MQ2::Help
Topic: INI Files
Replies: 2
Views: 1114

More of a macro help question than an MQ one, but yes, it will create it if it does not exist.
by Chaesar
Wed Mar 10, 2004 12:00 pm
Forum: MQ2::Help
Topic: MQ2 Error Msg
Replies: 24
Views: 8012

Once they release the new download you'll have to recompile it just like you did the first time. I usually extract it into a completely new folder and copy my MQ2Auth0.h file from the old MQ2Main folder into the new one. Then compile it and move the compiled files to whatever folder you use to run t...
by Chaesar
Tue Mar 09, 2004 3:31 pm
Forum: Games::Everquest
Topic: Forever Hacking closes its doors
Replies: 7
Views: 5280

However, recently an administrator's account was breached.
There is some strange irony in a hacking site closing its doors because it was hacked.
by Chaesar
Tue Mar 09, 2004 1:43 pm
Forum: Macro Depot (MQ1)
Topic: genbot.mac Generic Bot macro for any class. V9.3 with ini
Replies: 258
Views: 81837

/agree GrimJack. In fact, I did exactly that for haste for my shammy and chanter. Even added it to the ini. :)
by Chaesar
Mon Mar 08, 2004 3:54 pm
Forum: Macro Depot (MQ1)
Topic: genbot.mac Generic Bot macro for any class. V9.3 with ini
Replies: 258
Views: 81837

Try

Code: Select all

/tell dr00d snt spirit of wolf on <targetname>
You have to put the "on <targetname>" part and you cannot use me or yourself as a target like you can in some other commands. It has to be the character's name.
by Chaesar
Mon Mar 08, 2004 3:15 pm
Forum: Macro Help (MQ1)
Topic: Problems with default fishing macro
Replies: 3
Views: 1136

I believe that the way variables are handled was changed several months ago and the some of the macros that are included in the download still use the old method (characterized by the vNN format), which no longer works. Your best bet is to look in/search the Macro Depot forum as those macros are wri...
by Chaesar
Sat Feb 28, 2004 11:53 am
Forum: Macro Depot (MQ1)
Topic: genbot.mac Generic Bot macro for any class. V9.3 with ini
Replies: 258
Views: 81837

I found a couple issues related to using IRC as the chat channel. First in the botcore.inc: Sub ChatOut(ChatPriority,ChatTarget,ChatText) /if n @ChatPriority>@Verbosity /return /if "@ChatIn"=="IRC" { [color=red]/irc @ChatText [/color] /return } ... I was receiving "Could Not...