Results 1 to 15 of 20

Threaded View

  1. #1
    EDWINSEE's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Arkansas
    Posts
    125
    Reputation
    10
    Thanks
    127
    My Mood
    Angelic

    I need some help

    Here is mine source code i been working on but i get errors on it and can u guys help me finish it i been studying the source codes on this website. and i cannot dump ca files i always get a error say fail to dump. here is mine source code. i will upload it.
    here is the source code
    __________________________________________________ ______________________________________
    #include <windows.h>
    bool IsGameReadyForHook()
    {
    if( GetModuleHandleA( "d3d9.dll" ) != NULL
    && GetModuleHandleA( "ClientFX.fxd" ) != NULL
    && GetModuleHandleA( "CShell.dll" ) != NULL )
    return true;
    return false;
    }
    void __cdecl PushToConsole( const char* szCommand )
    {
    DWORD *LTClient = ( DWORD* )( 0x007d9200 );
    void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
    __asm
    {
    push szCommand;
    call CONoff;
    add esp, 4;
    }
    }
    void main()
    {
    while(true)
    {
    if(GetAsyncKeyState(VK_NUMPAD0)<0){
    this->(PushToConsole("SkelModelStencil -1" );
    this->PushToConsole("ModelDebug_DrawBoxes 1" );
    }
    if(GetAsyncKeyState(VK_NUMPAD1)<0){
    this->PushToConsole("FogEnable 1" );
    }
    if(GetAsyncKeyState(VK_NUMPAD2)<0){
    this->PushToConsole("WeaponSway 0.000000" );
    }
    if(GetAsyncKeyState(VK_NUMPAD3)<0){
    this->PushToConsole("PerturbRotationEffect 0.000000" );
    this->PushToConsole("PerturbIncreaseSpeed 0.000000" );
    this->PushToConsole("PerturbWalkPercent 0.000000" );
    this->PushToConsole("PerturbFiringIncreaseSpeed 0.000000" );
    this->PushToConsole("PerturbRecoil 0.000000" );
    this->PushToConsole("FireMovePerturb 0.000000" );
    this->PushToConsole("ZoomedFireMoveDuckPerturb 0.000000" );
    this->PushToConsole("ZoomedFireMovePerturb 0.000000" );
    this->PushToConsole("ZoomedFireDuckPerturb 0.000000" );
    }
    if(GetAsyncKeyState(VK_NUMPAD5)<4){
    this->PushToConsole("ActivationDistance 999999" );
    }
    if(GetAsyncKeyState(VK_UP)<0){
    this->PushToConsole("CamMaxPosYOffset 200.000000" );
    }
    if(GetAsyncKeyState(VK_DOWN)<0){
    this->PushToConsole("CamMaxPosYOffset -1000.000000" );
    }
    if(GetAsyncKeyState(VK_NUMPAD5)<0){
    this->PushToConsole("PlayerGravity 800" );
    }else{
    this->PushToConsole("PlayerGravity -800");
    }
    if(GetAsyncKeyState(VK_NUMPAD6)<0){
    this->PushToConsole("FullBright 1" );
    }
    if(GetAsyncKeyState(VK_NUMPAD7)<0){
    this->PushToConsole("JumpVel 900.000000" );
    }
    if(GetAsyncKeyState(VK_NUMPAD8)<0){
    this->PushToConsole("DisableCrosshair 0" );
    }
    if(GetAsyncKeyState(VK_HOME)<0){
    this->PushToConsole("windowed 1" );
    }
    if(GetAsyncKeyState(VK_INSERT)<0){
    this->PushToConsole("BaseMoveAccel 4000.000000");
    this->PushToConsole("StartAccel 4000.000000");
    this->PushToConsole("MaxAccel 4000.000000");
    this->PushToConsole("AccelInc 4000.000000");
    this->PushToConsole("WalkVel 4000.000000");
    this->PushToConsole("FRunVel 4000.000000");
    this->PushToConsole("BRunVel 4000.000000");
    this->PushToConsole("SRunVel 4000.000000");

    }else{

    this->PushToConsole("BaseMoveAccel 3000.000000");
    this->PushToConsole("StartAccel 500.000000");
    this->PushToConsole("MaxAccel 3000.000000");
    this->PushToConsole("AccelInc 6000.000000");
    this->PushToConsole("WalkVel 70.000000");
    this->PushToConsole("FRunVel 285.000000");
    this->PushToConsole("BRunVel 285.000000");
    this->PushToConsole("SRunVel 285.000000");
    }
    if(GetAsyncKeyState(VK_DELETE)<0){
    this->PushToConsole("ShowFirePath 0" );
    tracers=false;
    }else{
    PushToConsle("ShowFirePath 1");
    tracers=true;
    }
    if(GetAsyncKeyState(VK_NUMPAD9)<0){
    this->PushToConsole("FireSpeed 999.999999" );
    }
    if(GetAsyncKeyState(VK_TAB)<0){
    this->PushToConsole("ReloadSpeed 0.000000" );
    }
    if(GetAsyncKeyState(VK_END)<0){
    this->PushToConsole("DrawFlat 0" );
    this->PushToConsole("drawguns 1");
    this->PushToConsole("ModelApplySun 0" );
    this->PushToConsole("SnowEnable 0" );
    this->PushToConsole("MuzzleLight 0" );
    this->PushToConsole("EnableWeatherFX 1" );
    this->PushToConsole("SkyEnable 0");
    this->PushToConsole("WhiteBlood 1" );
    this->PushToConsole( "SkyEnable 0" );
    this->PushToConsole("DrawInterface 0" );
    }
    if(GetAsyncKeyState(VK_ADD)<0){
    this->PushToConsole("PlayerGravity 0");
    this->PushToConsole("PlayerVelocity 0");
    }
    }
    DWORD WINAPI dwHackThread(LPVOID)
    {
    while( !IsGameReadyForHook() )
    Sleep(100);
    main();
    return 0;
    }
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    DisableThreadLibraryCalls(hDll);
    if ( dwReason == DLL_PROCESS_ATTACH )
    {
    CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    }
    return TRUE;
    }
    __________________________________________________ ______________________________________
    Last edited by EDWINSEE; 07-20-2010 at 11:12 AM.

Similar Threads

  1. [Help Request] Need some help with my server premisions
    By pero122 in forum Minecraft Help
    Replies: 5
    Last Post: 11-07-2011, 10:55 PM
  2. [Help Request] Need some help to make a bot
    By Domo in forum Vindictus Help
    Replies: 6
    Last Post: 05-21-2011, 10:15 AM
  3. [Help Request] I need some help with binding eps7
    By v1zhaixingv1 in forum Vindictus Help
    Replies: 3
    Last Post: 05-18-2011, 09:25 PM
  4. need some help with client exe.
    By barney in forum Hack Requests
    Replies: 2
    Last Post: 11-03-2006, 10:05 PM
  5. my sig is done but i need some help
    By A7X Oblivian in forum Help & Requests
    Replies: 0
    Last Post: 02-21-2006, 12:24 AM