• 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

"MQNext" MQ2EasyFind Preview Vid

Impressive. Awesome Job brainiac. And thx Sic for the video
 
Love when these vids pop up in my subscriptions. Always check the date and get UBER excited when it's a new one!
 
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.
 
the only reason i haven't gone to next full time is because of this plugin. can't wait for the release!
 
This video makes me very excited for "Next" Easyfind.

Great job Brainiac and the other contributors to "Next".
 
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.

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?
 
I think for that, a script could be used to do all the steps you'd want to perform to go to your respective housing area and is likely going to be something a user would need to be specific about. For the Feerrott zones it's a matter of a simple yes/no and both are/can be relevant zones for all. Where-as the neighborhood is a bit more specific to the end user. I don't think there would need to be any special considerations made for the neighborhood.
 
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?
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.

INI:
    /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
 
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?
 
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?
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.
 
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.
 
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.

from the regular download spot?
 
from the regular download spot?
no, you will need to compile it yourself if you're looking to use it before its build and sent with the build
 
I try to load this in next and its not loading any ideas?
easyfind?

that is because as the preview video talks about, if you're not compiling it yourself, it isn't currently included - and you can't just smack in the MQ2 easyfind into MacroQuest "Next" because they are completely different and it will not work like that
 
If possible to fix for all, the following connections I discovered are broken:

Sanctus Seru -> Marus Seru
Marus Seru -> Sanctus Seru (-2140 -1100 -24.90 is the location to hit the zone line)

PoMischief -> Cobalt Scar (/loc is right, its not clicking tree, did not grab the itemID)
The Grey -> SSRA Temple (42.86 -55.00 -4381 is a better location that is on the other side of the zone line)
Skyfire to Veeshan... location 2786.43 2983.15 -77.14 (ID 135, Type 58, Name DRAGGRAVE100 click)
 
is 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?
 
is 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?
ctrl+shift+left mouseclick in find
 
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.

probably a day late and a dollar short

This will go to the 1st plot player plot if there is one, if not it will just go to the 1st item on the list.

Code:
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
 
"MQNext" MQ2EasyFind Preview Vid

Users who are viewing this thread

Back
Top
Cart