• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Request - Need Mq2Events or Mq2reacts of

Autumn

Well-known member
Joined
Dec 1, 2019
RedCents
69¢
Howdy wonderful people of MQ2
I need a MQ2React or a MQ2Events that stops my script and camps me out if i zone
why you ask I need this
I run buff bots and the druid and wizards have this weird bug ( Ive witnessed multiple times with diffrent toons) where they just randomly without prompt return to thier home city, and thier scripts dont stop. What I need is something that turns off the script and camp if their zone equals anything other then Palatial Guild Hall ( I run buff bots for my guildies to use) I had my druid buff bot suspended, and i fear the bug hit the druid and someone hailed or sent the toon a tell and they got buffed and they recived a tell back that wasnt afk reply without interaction. Any suggestion would be helpful
 
You could try this with MQ2Events

Code:
[CampOnZone]
trigger=#*#You have entered#*#
command=/multiline ; /stopcast ; /mqp on ; /camp desktop ;
 
MQ2React:
(First, get the zone ID for guild hall or where ever you plan to put the character, /echo ${Zone.ID}, then replace the number in the below React)
Code:
reacts:
  IReallyShouldntBeHere:
    action: /multiline ; /stopcast; /endmac; /camp desktop
    condition: ${Zone.ID} != 42069
 
Howdy wonderful people of MQ2
I need a MQ2React or a MQ2Events that stops my script and camps me out if i zone
why you ask I need this
I run buff bots and the druid and wizards have this weird bug ( Ive witnessed multiple times with diffrent toons) where they just randomly without prompt return to thier home city, and thier scripts dont stop. What I need is something that turns off the script and camp if their zone equals anything other then Palatial Guild Hall ( I run buff bots for my guildies to use) I had my druid buff bot suspended, and i fear the bug hit the druid and someone hailed or sent the toon a tell and they got buffed and they recived a tell back that wasnt afk reply without interaction. Any suggestion would be helpful
Sounds like Origin is getting activated.
Could run a Lua script like this provided that the guild hall is the same id
Code:
local mq = require('mq')

local function checkzone()
    if mq.TLO.Zone.ID() ~= 344 then
        mq.cmd('/mqp on')
        mq.cmd('/lua pause on')
        mq.cmd('/camp')
    end
end
while true do
    checkzone()
     mq.delay(1000)
end
 
Last edited:
Doesn't KA use Origin for the stuck gems check? Usually it interrupts before finishing, but I have seen it spam Origin before.

Anyway, I think you can just set up zoned.cfg to issue a pause or end command. Something like (at work, so can't test):
/if !(${Zone.ShortName.Equal[xxxx]}) /end
 
Howdy wonderful people of MQ2
I need a MQ2React or a MQ2Events that stops my script and camps me out if i zone
why you ask I need this
I run buff bots and the druid and wizards have this weird bug ( Ive witnessed multiple times with diffrent toons) where they just randomly without prompt return to thier home city, and thier scripts dont stop. What I need is something that turns off the script and camp if their zone equals anything other then Palatial Guild Hall ( I run buff bots for my guildies to use) I had my druid buff bot suspended, and i fear the bug hit the druid and someone hailed or sent the toon a tell and they got buffed and they recived a tell back that wasnt afk reply without interaction. Any suggestion would be helpful
I would suggest just updating the macro to check the zone you're in prior to reacting to tells. You can use the code @vandersl posted in the macro to end itself if it's not in your guild hall to end the macro, or just not do anything if you're in the wrong zone. Then you don't have to worry about Events, React, or additional Lua scripts.
 
Request - Need Mq2Events or Mq2reacts of

Users who are viewing this thread

Back
Top
Cart