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 "...
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...
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...
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)...
#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
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...
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...
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...