• 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

Lokista's almost everything compile (2010-10-23) (1 Viewer)

Joined
Jun 19, 2007
RedCents
254¢
Updated compile with latest MQ2 source 2010-10-23.. Still missing some of the latest source code for a few plugins but here is what I have working.

MQ2Advpath
MQ2AutoSize
MQ2Bardswap
MQ2Bucles
MQ2Bufftool
MQ2Bzsrch
MQ2Charnotes
MQ2Chat
MQ2ChatWnd
MQ2Combat
MQ2CustomBinds
MQ2Customsound
MQ2Debuffs
MQ2Dps
MQ2Dpsadv
MQ2EQBugFix
MQ2EQIM
MQ2Eqbc
MQ2Events
MQ2Faerune
MQ2Fps
MQ2HUD
MQ2Irc
MQ2ItemDisplay
MQ2Labels
MQ2Linkdb
MQ2Main
MQ2Map
MQ2Moveutils
MQ2Otd
MQ2Paranoid
MQ2Pop
MQ2Randomstuff
MQ2Search
MQ2Setgrav
MQ2Slave
MQ2Spawnmaster
MQ2Spellsearch
MQ2SuperDuperReallyGhettoSpeed
MQ2Targets
MQ2Telnet
MQ2Timestamp
MQ2Tracking
MQ2Twist
MQ2WinXP
MQ2Xptracker


I will keep trying to get working source for the missing plugins and will update my compiles as I do. Good luck and good hunting!
 
Last edited:
Re: Lokista's almost everything compile

I just got MQ2Melee working and MQ2Cast was working as of beta 7 with the changes from the VIP forums.

I will upload the the NA Very Vanilla complete source soon and you grab the updated plugins from there.
 
Re: Lokista's almost everything compile

Lokista,

MQ2Exchange code was updated on the VIP Forms as well. In MQ2Melee you can add the following code with the declarations
Rich (BB code):
// clicks actual worn & inv slots, forces appearance update
void SendInvClick(char* pcScreenID, unsigned long ulKeyState)
{
    if (pInventoryWnd)
    {
        if (CXWnd* wndInv = pInventoryWnd->GetChildItem(pcScreenID))
        {
            int KeyboardFlags[4] = {0};
            *(unsigned long*)&KeyboardFlags = *(unsigned long*)&((PCXWNDMGR)pWndMgr)->KeyboardFlags;
            *(unsigned long*)&((PCXWNDMGR)pWndMgr)->KeyboardFlags = ulKeyState;
            SendWndClick2(wndInv,"leftmouseup");
            *(unsigned long*)&((PCXWNDMGR)pWndMgr)->KeyboardFlags = *(unsigned long*)&KeyboardFlags;
        }
    }
}

char szPendSwap[MAX_STRING] = {0};

Then Replace the call to MoveItem with

Rich (BB code):
        sprintf(szPendSwap,"InvSlot%d",SlotID);
	SendInvClick(szPendSwap, 0);

This is the ghetto way they fixed mq2exchange, and I just applied it to mq2melee.
 
Re: Lokista's almost everything compile

Thanks guys, I will update my source now that I am back from dinner.
 
Re: Lokista's almost everything compile

Working MQ2cast source attached to NA Vanilla post.
 
Re: Lokista's almost everything compile

New source just got posted on the MQ website.
 
Lokista's almost everything compile (2010-10-23)

Users who are viewing this thread

Back
Top
Cart