ItsMods

Full Version: BlackOps Ingame Name Changer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
PHP Code:
void  (__cdecl *SendToConsole)( int flagchartext ) = (void (__cdecl *)( intchar* ))0x632210;

char *RandomNames[] = 
{     
    
"Adalbert",
    
"Adam",
    
"Agatha",
    
"Agnes",
    
"Albert",
    
"Alexander",
    
"Aleksandra",
    
"Alexis",
    
"Alphonsus",
    
"Aloysius",
    
"Ambrose",
    
"Anastasia",
    
"Balthasar",
    
"Barbara",
    
"Barnabas",
    
"Bartholomew",
    
"Basil",
    
"Benedict",
    
"Bernard",
    
"Bernadine",
    
"Bogimilus",
    
"Boleslaus",
    
"Bronislaus",
    
"David",
    
"Dolores",
    
"Dorothy",
    
"Edmund",
    
"Edward",
    
"Emiliana",
    
//...
}; 

bool Ignore false;
bool ChangeNameRandom( )
{
    
char name[32];
    
int Num 0;
    for (; 
Num < (sizeof(RandomNames) / sizeof(char *)); Num++)
    {
        if( 
Ignore )
        {
            
sprintf(name"Toggle name %s\n"RandomNames[rand()%Num] );
            
SendToConsole0name );
        }
        
Ignore true;
    }
    return 
Ignore;


PHP Code:
if (((timeGetTime() ) > 300) && GetAsyncKeyState(VK_F3)&1)
    {
        
ChangeNameRandom( );
        
Ignore false;
    } 

Credit:
King-OrgY
Thx this could come in handy