Search found 105 matches

by daerck
Sun Nov 28, 2004 1:53 pm
Forum: MQ2::General
Topic: New relase
Replies: 2
Views: 1780

If you remove the typo and add a loop with /doevents in your Sub Main it will.
by daerck
Sat Nov 20, 2004 9:49 pm
Forum: MQ2::General
Topic: Sony Detecting
Replies: 31
Views: 11396

Actually it's quiet simple to avoid SOE detection. You just have to run the Macoquest command "/soemacrodetectioncountermeasure on" really quick after logging in with MQ loaded. If you get any type of error, i.e. "Macro already running", "Unable to load plugin" or "...
by daerck
Sun Jul 18, 2004 5:39 am
Forum: MQ2::General
Topic: Enable/Disable the /goto function
Replies: 31
Views: 9264

Wait wait wait wait... So a Guide/GM wants to run MQ while actually functioning as a Guide/GM??? Am I the only one that finds that fooking hilarious? Guides use the regular EQ client that doesn't have any nifty extra features. They have a couple of ingame items and a few commands to help them do th...
by daerck
Sun May 09, 2004 3:46 pm
Forum: MQ2::Bug Reports
Topic: /keypress use
Replies: 26
Views: 8618

I think he is trying to say that in a macro/social/etc the commands won't do anything for him, but if he is typing them out manually they work...
by daerck
Tue Apr 20, 2004 7:30 am
Forum: MQ2::Help
Topic: Event_Chat help
Replies: 6
Views: 1360

I think you are looking for something like this... Not sure if the plugin still gets updated or not, but it's a point to start.
by daerck
Sun Apr 18, 2004 7:42 am
Forum: MQ2::Help
Topic: Event_Chat help
Replies: 6
Views: 1360

Yes, #chat is for specific chat events I.e. when you do #chat tell, the Sub Event_Chat will be executed on each tell you recieve, with the parameters of ChatType, Sender and Chatmessage being passed to it. I.e. Sub Event_Chat(ChatType, Sender, Text) { /echo You recieved a @ChatType message from @Sen...
by daerck
Sat Apr 17, 2004 11:23 am
Forum: Macro Help (MQ1)
Topic: move without keypress/sendkey
Replies: 5
Views: 1466

maybe your problem is that it's /keypress forward hold not /keypress up.
by daerck
Thu Apr 15, 2004 5:57 am
Forum: Macro Help (MQ1)
Topic: Repeating /say command
Replies: 2
Views: 906

Haven't done the quest mself but I assume your error is this: Sub Event_EXP /varset NoHaveItem 1 /call GetItems /return Sub GetItems /if n @NoHaveItem==1 { /say "@StoryScript" /delay 1s /autoinventory /autoinventory /autoinventory /autoinventory /varset NoHaveItem 0 } /call Main /return a)...
by daerck
Thu Apr 15, 2004 5:38 am
Forum: MQ2::Help
Topic: Keyboard problems
Replies: 10
Views: 3039

For those of you that don't get it:

Code: Select all

#turbo 
Sub Main 
   :Loop 
      /if n $target(distance)>60 /keypress forward hold
      /if n $target(distance)<40 /keypress forward
      /face fast 
      /delay 0 
   /if "$target()"=="TRUE" /goto :Loop 

/return
by daerck
Sun Apr 11, 2004 9:36 pm
Forum: Macro Help (MQ1)
Topic: Ranger Snaring
Replies: 2
Views: 967

the { needs to be last character on the /if line:
| /if n $target(distance)>@SnareRange {
| /face fast
| /sendkey down up
| /goto :snare
| }
Removing all the comments may help as well, and you should use /keypress instead of /sendkey.
by daerck
Sat Apr 10, 2004 8:32 pm
Forum: Macro Help (MQ1)
Topic: Help converting from Parms to Data please
Replies: 13
Views: 3061

Wouldn't ${Target.Distance} evaluate to NULL anyways if there was no target?
by daerck
Thu Apr 08, 2004 10:10 pm
Forum: MQ2::Custom UI
Topic: MacroQuartz 1.61
Replies: 27
Views: 11411

Ufff.. didnt look at this thread for a while.

Guess I'll update all this stuff at the weekend and see what I can do about the buff window and constant loc.
by daerck
Thu Apr 08, 2004 9:50 pm
Forum: Macro Help (MQ1)
Topic: Can MQ detect casting?
Replies: 6
Views: 1989

Hmm... for me $char(casting) is true when I do an AA ability. Maybe the macro is "too fast" and checks for the casting before your character actually starts casting. Try adding a short delay after the /alt activate and the casting test /echo Xuzl-Messer (plural) --> $target(name,clean) FAL...
by daerck
Thu Apr 08, 2004 9:37 pm
Forum: MQ2::General
Topic: Complaint about Lax's complaint =)
Replies: 31
Views: 7080

Well, that's pretty much the reason why I rarely used $char(x) or $char(y) in my macros because it's confusing the shit out of me in the current system. :oops: I used EQ for 3 years without MQ and got the system knocked into my head that the first coordinate (X) = N/S, the second one (Y) = W/E. Ther...
by daerck
Thu Apr 08, 2004 7:36 pm
Forum: MQ2::General
Topic: Complaint about Lax's complaint =)
Replies: 31
Views: 7080

This isn't logic, this is EQ! Actually it is quiet logical. The essence of the problem is that mathematical and geographical locations are reported in a different format. Any coordinate on a map is reported in latitude & longitude in the form of A° B' C'' N, D° E' F'' W (so a N,W format). The m...