Search found 7 matches

by ashplayah
Fri Dec 13, 2002 9:39 pm
Forum: MQ2::Development::Feature Discussion
Topic: Logical Operations for /if
Replies: 5
Views: 1139

Logical Operations for /if

Added logical && and || for the /if command syntax is: /if <comparison> <command> where <comparison> is in the form: [n] <a>==<b> or (<comparison> && <comparison>) Note: you need to have the parens and spaces correct... I've posted the delta to a MSN's free webhosting service (you ne...
by ashplayah
Fri Dec 13, 2002 3:36 pm
Forum: Outdated Macros::Macro Help
Topic: Ok... Beep problem
Replies: 3
Views: 1251

I could be wrong on this I have not verified but I think that MQ only processes a line into a single event. So any /tells you receive will come across as Event_Chat events and your Event_tell will never be called (I'll have to look at the code and verify this one). so remove #event tell and chance S...
by ashplayah
Fri Dec 13, 2002 3:33 pm
Forum: Outdated Macros::Macro Help
Topic: joust.mac HELP!!
Replies: 8
Views: 1969

You have an extra space in your if condition (MQ is very space sensitive) Your if should read

Code: Select all

/if $target(distance)<10 /goto :Attack
by ashplayah
Fri Dec 13, 2002 3:26 pm
Forum: Games::Everquest
Topic: anyone seen this news story?!
Replies: 23
Views: 4060

Wow... a Windows version would be great!
by ashplayah
Thu Dec 12, 2002 1:10 pm
Forum: Outdated Macros::Macro Requests
Topic: FD help
Replies: 5
Views: 1729

Allow me to suggest that you take this as a learning opportunity and come up with something. We are all much happier to assist you in debugging code that writting it for you. Much luck, Ashplayah Hint: Use an event to check if you fail your FD (you have to assume success) #event FailedFD "You f...
by ashplayah
Wed Dec 11, 2002 4:56 pm
Forum: Outdated Macros::Macro Help
Topic: New User To Macroquest
Replies: 2
Views: 1216

You could also set DebugSpewToFile=1 in MacroQuest.ini file. This will provide you with endless amounts of debug text from the macro engine (in a file in your Logs directory).
by ashplayah
Wed Dec 11, 2002 2:00 pm
Forum: MQ2::Development::Feature Discussion
Topic: Bit Operations
Replies: 34
Views: 1842

Bit Operations

I've added some bit operations on variables: /varor <variable> <bitmask as a decimal number> /varand <variable> <bitmask as a decimal number> /varlshift <variable> <number to shift> /varrshift <variable> <number to shift> I've added bit compares to /if: /if a&b /do something /if a|b /do somethin...