Search found 45 matches

by AarynD
Fri Oct 24, 2003 9:49 am
Forum: MQ2::Development::Feature Discussion
Topic: bug?: $strlen and $arg
Replies: 3
Views: 939

Cool, this might be the answer to my string parsing problems post under Macro Help.
by AarynD
Fri Oct 24, 2003 9:37 am
Forum: Macro Help (MQ1)
Topic: Parsing tells for specific word, lockups
Replies: 4
Views: 1295

Doesn't work, still has parsing errors.

Script still not working, and causing lockups. I rewrote simply to test what's going on. Doing this from work, and from memory, but pretty sure I'm accurate on what I was getting... Sub Event_Chat(MsgType, MsgFrom, MsgData) /echo @MsgFrom | works fine /echo @MsgData | works fine /varset uconvert $uc...
by AarynD
Tue Oct 21, 2003 8:30 pm
Forum: Macro Help (MQ1)
Topic: Parsing tells for specific word, lockups
Replies: 4
Views: 1295

Parsing tells for specific word, lockups

#chat tell Sub main | ----- Trigger Declares --------------------- | ----- Variables ---------------------------- /Declare teller global /Declare rodtf global /goto :Wait /return :Wait /DoEvents /goto :Wait Sub Event_Chat /varset rodtf $instr(ROD,$ucase("@Param2")) /varset teller @Param1 ...
by AarynD
Thu Oct 09, 2003 9:59 pm
Forum: MQ2::Development::Feature Discussion
Topic: Any requests for MQ?
Replies: 34
Views: 7346

Put me down for requesting better string comparison in /if statements. /if $item(7,0,name)!="Hooked Arrowheads" { } The above ALWAYS causes wierd parser error messages of some sort. If I reverse it, I usually get a message about there not being a comparison operator in "Hooked" e...
by AarynD
Thu Oct 09, 2003 9:50 pm
Forum: MQ2::General
Topic: MQ Fuctional 2003-10-09
Replies: 22
Views: 6046

/finditem doesn't seem to be working. I can't get /click to move the mouse either.

/who is working in all it's variations.
by AarynD
Tue Sep 23, 2003 5:32 pm
Forum: Outdated Macros::Macro Help
Topic: Problem with distance
Replies: 35
Views: 19018

Try reversing the logic of the comparison. Instead of

Code: Select all

/if n $target(distance)>=200 {
use

Code: Select all

/if n 200<$target(distance) {
by AarynD
Tue Sep 23, 2003 11:50 am
Forum: MQ2::Development::Feature Discussion
Topic: Crashing 9-22
Replies: 4
Views: 1230

Ah, okies, I figured it was something like that... I just wasn't sure if the text file being in a different format would work once the program was on a Windows machine, and was being run. It does tho :)
by AarynD
Tue Sep 23, 2003 10:46 am
Forum: Outdated Macros::Macro Requests
Topic: Loot your own Corpse Script? :)
Replies: 8
Views: 7208

You also have to be careful if you have equipment that fits in multiple slots. Some of my chars fall in this category, and the default slot autoequip places items are wrong, and ends up not equipping some slots if you just right-click all the items to loot.
by AarynD
Tue Sep 23, 2003 10:41 am
Forum: MQ2::Development::Feature Discussion
Topic: Crashing 9-22
Replies: 4
Views: 1230

Thanks, did that, it works fine now. Forgive me for being a bit ignorant here, but the eqgame.ini files that typically come in the zips always show up wierd when I go in to look at them (there are little square boxes where the return/line breaks are supposed to occur). Because it's like this, I've a...
by AarynD
Mon Sep 22, 2003 7:07 pm
Forum: MQ2::Development::Feature Discussion
Topic: Crashing 9-22
Replies: 4
Views: 1230

Crashing 9-22

Just downloaded and recompiled latest zip. Copied over the offets from the latest offsets file in the forums. After I get past char selection screen, and am entering game, client crashes.

Any suggestions?
by AarynD
Mon Sep 22, 2003 1:24 pm
Forum: Outdated Macros::Macro Requests
Topic: Quick n easy corpse dragging
Replies: 2
Views: 4373

Quick n easy corpse dragging

Ok, so occasionally I end up having to drag 18 people's corpses to a safe spot for rezzing. Prior to mq, I just made up lots of buttons, each with 2 corpses. /target "playername's corpse" followed by /corpse. Now, with mq, I go in and edit a macro, and basically do the same thing, and just...
by AarynD
Thu Aug 07, 2003 7:51 am
Forum: MQ2::Development::Feature Discussion
Topic: Bug in ~~
Replies: 3
Views: 1026

#include SpellSub.mac #chat tell Sub Main :loop /doevents /goto :loop /return Sub Event_Chat /varset v33 $p1 /if "$ucase($p2)"~~"ROD" { /echo Tell from $p1 /target $v33 /sit off /tell $v33 INC Rod /call spellsub 5 4.5 } /doevents /return The /if clause causes a problem everytime...
by AarynD
Wed Aug 06, 2003 5:13 pm
Forum: MQ2::Development::Feature Discussion
Topic: Bug in ~~
Replies: 3
Views: 1026

Bug in ~~

I'm getting a bug in a short little macro I sometimes run. I'll have to edit this later on cuz the actual code is at home, but I think I can get the gist of it here... The macro monitors the tell channel, and if 'ROD' occurs anywhere in the uppercase converted tell, the macro targets the person, and...
by AarynD
Sun Jul 20, 2003 1:18 pm
Forum: Outdated Macros::Macro Requests
Topic: Mob Tracker
Replies: 14
Views: 10897

Next Step...

Ok, having a minor case of brain death here... Hoping someone will put me on the right track... Assume an Ini file with this info: [Temple of Ssra] HowManyMobs=2 Mob1=Arch Lich Rhag Zadune Mob2=Blood of Ssra [The Grey] HowManyMobs=2 Mob1=Reverend Sshiznit Mob2=Shattered Golem Basically, each section...
by AarynD
Fri Jul 18, 2003 7:58 pm
Forum: Outdated Macros::Macro Requests
Topic: Mob Tracker
Replies: 14
Views: 10897

/macro addmob *Must have mob targeted to add to ini file. #define inifile "C:\moblist.ini" #define MOBNAME v0 #define SECTION v3 #define KEYNAME v4 #define MOBCNT v5 sub main /varset MOBNAME "$target(name,clean)" /varset SECTION "$zone" /varset MOBCNT $if(n,$instr("...