Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

Pre-Release Early Look into "MQNext" MQ2Easyfind
Unless he is teasing you about MQ2Bard...It's like christmas everytime @Sic releases a new video. You know you won't be disappointed.
Just an FYI the PokTutorial.mac navigates through the guild lobby to the housing zone. Not sure if this is something easyfind could use or if it's set up different.
I agree with chat, I don't think special considerations is necessary, but just for a simple getting to the zone from the guild lobby you could use anything from the list. I am not familiar enough with Lua to convert it.Its not that we can't do it. Its just that navigating to a neighborhood isn't as simple as clicking a single item on the list. Do you have an idea or suggestion as to what it hsould do?
/click left door
/delay 2s
/notify RealEstateNeighborhoodWnd RENW_NeighborhoodList leftmouseup
/delay 2s
/echo \agGoing to Sunrise Hills
/delay 2s
/notify RealEstateNeighborhoodWnd RENW_Go_Button leftmouseup
Just going to select any neighborhood on the list. It was just a method to get into the zone, not really to specify a specific neighborhood. I think you would have to delve into the search feature for that.Sure, but you need to specify what neighborhood to go to, right?
Or are you suggesting that it would automatically select some specific neighborhood for you?
It's like christmas everytime @Sic releases a new video. You know you won't be disappointed.
I'd love to get access to use this in my testing. Thanks![]()
It may not always be the most up to date but you can download it and run it with Next. You may get some issues here and there but it was working absolutely fine for me the other day.
no, you will need to compile it yourself if you're looking to use it before its build and sent with the buildfrom the regular download spot?
![]()
Utility - MQ2EasyFind
2019, 2021 (x2), 2023, 2024 ESA Winner EasyFind is a plugin that helps get you around EverQuest, and while the heavy lifting and actual character movement is provided by the Nav plugin, EasyFind tells it where to go. EasyFind provides two main...www.redguides.com
easyfind?I try to load this in next and its not loading any ideas?
ctrl+shift+left mouseclick in findis it possible to move the whole group or maybe even a whole raid by mouseclick?
I was used to use right mouseclick in the find menue to move the whole group. Seems like easyfind only supporst control key & left mouseclick for a single toon?
Just going to select any neighborhood on the list. It was just a method to get into the zone, not really to specify a specific neighborhood. I think you would have to delve into the search feature for that.
They are pretty much all the same zone, just different housing units in there.
local function sunrise_hills_entry()
mq.delay(1000)
mq.cmd('/squelch /nav door id 38 click')
while mq.TLO.Nav.Active() do
mq.delay(1)
end
-- Access 1st plot (if there is one)
mq.delay(5000)
mq.cmd(
'/squelch /notify RealEstateNeighborHoodWnd RENW_MyPlots_Button leftmouseup')
mq.delay(5000)
local neighborhood_index = mq.TLO.Window('RealEstateNeighborHoodWnd').Child(
'RENW_NeighborhoodList').Items()
-- If we don't have plot just select the 1st one
if neighborhood_index == 0 or neighborhood_index == nil then
mq.cmd('/cleanup')
mq.delay(1000)
mq.cmd('/squelch /nav door id 38 click')
mq.delay(5000)
mq.cmd(
'/notify RealEstateNeighborHoodWnd RENW_NeighborHoodList listselect 1')
mq.delay(1000)
mq.cmd('/notify RealEstateNeighborHoodWnd RENW_Go_Button leftmouseup')
else
mq.cmd(
'/notify RealEstateNeighborHoodWnd RENW_NeighborHoodList listselect 1')
mq.delay(1000)
mq.cmd('/notify RealEstateNeighborHoodWnd RENW_Go_Button leftmouseup')
end
return
end
