• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

Question - automatic logoff.... (1 Viewer)

INI:
local camp_flag = 0
while true do
if mq.TLO.Zone.ID() == 344 then
    local countdown = 900
       while true do
        mq.delay(1000)
        countdown = countdown - 1
        if countdown < 1 then
            camp_flag = 1
            break
        end
        if camp_flag == 1 then mq.cmd('/camp') end
    end
end
    if camp_flag == 1 then break end
mq.delay(1)
end

a lua to run?

Depending on your situation, you could add if in the zone and rez effects..
 
Question - automatic logoff....

Users who are viewing this thread

Back
Top