ItsMods

Full Version: Barata's External Console UPDATED!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
how the hell you get this to work? thanks
(10-07-2012, 20:16)troyyyy Wrote: [ -> ]how the hell you get this to work? thanks

Download "winject" or some similar injector, then open MW3, open winject and when you are in MW3 menu, select MW3 in the upper list (in winject), and in the list that is down select the .dll you downloaded (the external console), then click on "Inject". Now close winject and you are ready to use it.
Is it possible to add this to dedicated server than all can use these commands?
(10-08-2012, 12:15)Deltree Wrote: [ -> ]Is it possible to add this to dedicated server than all can use these commands?

Not sure if its the correct way, but you could monitor what people are saying on the in-game chat, and if its a command then send it to the console.
(10-08-2012, 12:19)kokole Wrote: [ -> ]
(10-08-2012, 12:15)Deltree Wrote: [ -> ]Is it possible to add this to dedicated server than all can use these commands?

Not sure if its the correct way, but you could monitor what people are saying on the in-game chat, and if its a command then send it to the console.

Ok.. I tried to find it.. But without success... It would be great to make it work in esl.. because I think if you are using this with esl wire.. you will get banned from esl.
finally got it working but no commands work? Confused
please release update
(10-12-2012, 17:52)saadkhan Wrote: [ -> ]please release update

Please some mod close this thread, i wont be updating this anymore...

Thanks Barata...
(10-13-2012, 07:10)barata Wrote: [ -> ]
(10-12-2012, 17:52)saadkhan Wrote: [ -> ]please release update

Please some mod close this thread, i wont be updating this anymore...

Thanks Barata...

Man, make a pattern scanner in all your hacks, here you go:
Code:
DWORD FindPattern(DWORD dwAddress, DWORD dwSize, BYTE* pbSig, char* szMask)
{
    for (DWORD i = NULL; i < dwSize; i++)
    {
        if (DataCompare((BYTE*)(dwAddress + i), pbSig, szMask))
            return (DWORD)(dwAddress + i);
    }
    return 0;
}

bool DataCompare(BYTE* pData, BYTE* bSig, char* szMask)
{
    for (;*szMask; ++szMask, ++pData, ++bSig)
    {
        if (*szMask == 'x' && *pData != *bSig)
            return false;
    }
    return (*szMask) == NULL;
}

Im just tired of seeing that you dont support anymore your hacks, it was with the trainer, and now with this tool.
Credits go to the guy that made it
Pages: 1 2 3 4