So I decided to go ahead and just make a dll that will put you right at the exp amount you need to be at in order to get the next rank with a single point. This way you don't have to user an external application and keep opening it and set the rank and then closing it.
THIS WORKS FOR PATCH 1.5 ONLY
Source:
Code:
DWORD WINAPI MyThread( LPVOID lpArgs )
{
while( 1 )
{
int CurrentExp = *( int* )0xCC19690; // Get our current exp value
if( CurrentExp >= 120280 ) // If this is true, we are already level 55!
return 0;
for( int i = 0; i < 55 ; i++ )
{
if( CurrentExp >= Exp[ i ] && CurrentExp < Exp[ i+1 ]) // check to find out the range we fall in to set our exp accordingly
{
*( int* )0xCC19690 = Exp[ i+1 ] - 1; // set the exp to 1 less then the next rank requirement.
}
}
Sleep(1000);
}
return 0;
}
BOOL WINAPI DllMain( HMODULE hModule, DWORD dwReason, LPVOID lpReserved )
{
if( dwReason == DLL_PROCESS_ATTACH )
{
CreateThread( NULL, 0, MyThread, NULL, 0, NULL );
return TRUE;
}
return FALSE;
}
Auto Fast Rank download
How to use:
1. Just run the AutoFastRank.exe
2. Open the iw3mp.exe
3. Join a server
4. Get a point and you will rank up
5. Leave server
6. Repeat steps 3 - 5 until you have reached the rank you want.
7. Enjoy
Scan Results:
Quote:
Antivirus Version Last Update Result
AhnLab-V3 2008.2.6.10 2008.02.05 -
AntiVir 7.6.0.62 2008.02.06 -
Authentium 4.93.8 2008.02.06 -
Avast 4.7.1098.0 2008.02.06 -
AVG 7.5.0.516 2008.02.06 -
BitDefender 7.2 2008.02.07 -
CAT-QuickHeal 9.00 2008.02.04 -
ClamAV 0.92 2008.02.07 -
DrWeb 4.44.0.09170 2008.02.06 -
eSafe 7.0.15.0 2008.01.28 -
eTrust-Vet 31.3.5512 2008.02.05 -
Ewido 4.0 2008.02.06 -
FileAdvisor 1 2008.02.07 -
Fortinet 3.14.0.0 2008.02.06 -
F-Prot 4.4.2.54 2008.02.06 W32/Heuristic-KPP!Eldorado
F-Secure 6.70.13260.0 2008.02.07 -
Ikarus T3.1.1.20 2008.02.06 -
Kaspersky 7.0.0.125 2008.02.07 -
McAfee 5224 2008.02.06 -
Microsoft 1.3204 2008.02.06 -
NOD32v2 2854 2008.02.06 -
Norman 5.80.02 2008.02.06 -
Panda 9.0.0.4 2008.02.06 -
Prevx1 V2 2008.02.07 -
Rising 20.29.22.00 2008.01.30 -
Sophos 4.26.0 2008.02.06 -
Sunbelt 2.2.907.0 2008.02.05 -
Symantec 10 2008.02.07 -
TheHacker 6.2.9.211 2008.02.06 -
VBA32 3.12.6.0 2008.02.06 -
VirusBuster 4.3.26:9 2008.02.06 -
Webwasher-Gateway 6.6.2 2008.02.06 -
Additional information
File size: 95785 bytes
MD5: 5e0d676e0ddc074d713580c174c58ad6
SHA1: 8dfc624c527cee6ffbeeebe11a871c933cbb42a5
|