You are viewing our Forum Archives. To view or take place in current topics click here.
Need MW2 Condensed Unlock All
Posted:

Need MW2 Condensed Unlock AllPosted:

Flixar
  • Christmas!
Status: Offline
Joined: Jan 31, 201212Year Member
Posts: 919
Reputation Power: 57
Status: Offline
Joined: Jan 31, 201212Year Member
Posts: 919
Reputation Power: 57
hey everybody,

im hosting mw2 unlock all lobbies for peeople and the code for unlock all i have i think is too long because it always just backs me out of the game halfway through, if anybody have a fix or condensed code id appreciate it.

-or-

if anybody knows the cleanest dll or program to use for this let me know, the one im currently using like i said lags and freezes and kicks me, etc.

any help would be appreciated,

thanks.
#2. Posted:
Ramuthra
  • Rising Star
Status: Offline
Joined: May 05, 201212Year Member
Posts: 715
Reputation Power: 61
Status: Offline
Joined: May 05, 201212Year Member
Posts: 715
Reputation Power: 61
project amber is a very stable one. or black and yellow
#3. Posted:
imgur
  • Winner!
Status: Offline
Joined: Nov 30, 201212Year Member
Posts: 9,326
Reputation Power: 13867
Motto: free thug
Motto: free thug
Status: Offline
Joined: Nov 30, 201212Year Member
Posts: 9,326
Reputation Power: 13867
Motto: free thug
Project Tesseract v2.1 is a cool menu with a ton of options, try that. I never had an issue with it.
#4. Posted:
Nissan
  • Ultra Gifter
Status: Offline
Joined: Sep 20, 201212Year Member
Posts: 2,136
Reputation Power: 312
Status: Offline
Joined: Sep 20, 201212Year Member
Posts: 2,136
Reputation Power: 312
Flixar wrote hey everybody,

im hosting mw2 unlock all lobbies for peeople and the code for unlock all i have i think is too long because it always just backs me out of the game halfway through, if anybody have a fix or condensed code id appreciate it.

-or-

if anybody knows the cleanest dll or program to use for this let me know, the one im currently using like i said lags and freezes and kicks me, etc.

any help would be appreciated,

thanks.

if you want the code for unlock all here

void SleepSeconds(int seconds)
{
        Sleep(seconds * 1000);
}
 
typedef enum
{
SV_CMD_CANIGNORE,
SV_CMD_RELIABLE
} svscmd_type;
 
const char * LinkChar(const char* Text, ...)
{
            char MasterBuffer[0x1000];
        va_list parameters;
        va_start(parameters, Text);
        vsprintf(MasterBuffer, Text, parameters);
        return MasterBuffer;
}
 
void unlockAllMW2(int client)
{
        SV(client, SV_CMD_RELIABLE, "s loc_warnings 0 loc_warningsUi 0");
        SV(client, SV_CMD_RELIABLE, "c \"^3Starting ^6Unlock ^2All!\"");
        SV(client, SV_CMD_RELIABLE, "J 2056 206426 6525 7F");
        for (DWORD index = 3500; index < 5001; index++)
        {
                char buf[50];
                sprintf(buf, "J %d 99", index);
                SV(client, SV_CMD_RELIABLE, (const char *)buf);
                if (index == 3875)
                {
                        SleepSeconds(1.7);
                        SV(client, SV_CMD_RELIABLE, "c \"^3RGHJTAGZ\"");
                }
                else if (index == 4250)
                {
                        SleepSeconds(1.7);
                        SV(client, SV_CMD_RELIABLE, "c \"^6RGHJTAGZ\"");
                }
                else if (index == 4625)
                {
                        SleepSeconds(1.7);
                        SV(client, SV_CMD_RELIABLE, "c \"^3RGHJTAGZ\"");
               }
               Sleep(25);
       }
       SleepSeconds(1.7);
       SV(client, SV_CMD_RELIABLE, "c \"^3All ^6Challenges ^2Unlocked!\"");
}


and then call it like this

unlockallMW2(i);
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.