Results 1 to 9 of 9
  1. #1
    Andrew89898's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    13
    My Mood
    Amused

    need help with base

    I think my base is patched but im trying to basically mix it and try to fix it up
    what happens is when i start ca it either closes on loading or it starts up and no hacks work.

    If you need my source ill edit and put it in !
    does this mean its patched or LT client out of date? Im using this one :
    0x377CC790

    Thanks
    I am JammieDodger he has had like 90 posts but that account was my mates he wanted it back but he hasnt logged in for like 3 months mainly all posts were by me. So Yeh lol.

    STATUS :Browsing MPGH and running virus scans due to browser problems :/.

    If You Need any addies , any help , anything then feel free to PM Me.


    Hack Status :

    OPK 10%
    CHAMS 100%
    NO SPREAD & RECOIL 100%
    ALL OTHER EASY ONES 100%
    VIP ONES... 0%
    MENU HACK 30%
    HOTKEY HACK 100% (CBB TO RELEASE)



    [COLOR="Blue"]If You Need any addies , any help , anything then feel free to PM Me.

  2. #2
    Andrew89898's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    13
    My Mood
    Amused
    Its Gellins Base by the way. Im trying to fix it up.
    I am JammieDodger he has had like 90 posts but that account was my mates he wanted it back but he hasnt logged in for like 3 months mainly all posts were by me. So Yeh lol.

    STATUS :Browsing MPGH and running virus scans due to browser problems :/.

    If You Need any addies , any help , anything then feel free to PM Me.


    Hack Status :

    OPK 10%
    CHAMS 100%
    NO SPREAD & RECOIL 100%
    ALL OTHER EASY ONES 100%
    VIP ONES... 0%
    MENU HACK 30%
    HOTKEY HACK 100% (CBB TO RELEASE)



    [COLOR="Blue"]If You Need any addies , any help , anything then feel free to PM Me.

  3. #3
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Hm...
    I think Gellins Base = Patched

    Post your Source

    Thanks Cosmos


  4. #4
    Andrew89898's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    13
    My Mood
    Amused
    Heres the source and yes gellins is patched but im trying to update all the addies etc..


    Code:
    #include "windows.h"
    #include "Base.h"
    #include "Menu.h"
    
      
    
    cBase Base;
    
    void __cdecl cBase::PushToConsole( const char* szCommand )
    {
    	DWORD *LTClient = ( DWORD* )( 0x377CC790 );
    	void* CONoff = ( void* )*( DWORD* )( *LTClient + 0x208 );
     
    	__asm
    	{
    		push szCommand;
    		call CONoff;
    		add esp, 4; 
    	}
    }	
    
    //Every Frame
    void cBase::RenderFrame(LPDIRECT3DDEVICE9 pDevice)
    {
    	if( !Base.bSet.bInit )
    	{
    		D3DXCreateFont(pDevice, 15, 0, FW_BOLD, 1, 0, DEFAULT_CHARSET, OUT_DEFAULT_PRECIS, DEFAULT_QUALITY, DEFAULT_PITCH | FF_DONTCARE, "Arial", &Directx.pFont);
    		Base.bSet.bInit = true;
    	}
    
    	if( Directx.pFont == NULL )
    		Directx.pFont->OnLostDevice();
    	else
    	{
    		Directx.DrawString(10, 22, D3DCOLOR_ARGB(255, 255, 0, 0), Directx.pFont, "[FU-CA]v2 By Gellin for www.*********.com");
    		Menu.RenderMenu();
    	}
    
    	if( Menu.mOpt[2].nopt > 0 )//Fly Hack
    		if( GetAsyncKeyState( FLYKEY ) < 0 )
    			this->PushToConsole( "PlayerGravity 800" );
    		else
    			this->PushToConsole( "PlayerGravity -800" );
    
    	if( Menu.mOpt[12].nopt > 0 )
    		Menu.PanicKey();
    	
    }
    
    //4x Per Second
    void cBase::Update(void)
    {
    	while(1)
    	{
    		if( Menu.mOpt[1].nopt > 0 )//3D Box's
    			this->PushToConsole( "ModelDebug_DrawBoxes 1" );
    		else
    			this->PushToConsole( "ModelDebug_DrawBoxes 0" );
    
    		if( Menu.mOpt[3].nopt > 0 )//No Fog
    			this->PushToConsole( "FogEnable 0" );
    		else
    			this->PushToConsole( "FogEnable 1" );
    
    		Sleep(iRenderSpeed);
    
    		if( Menu.mOpt[4].nopt > 0 )//Speed Hack
    		{
    		    this->PushToConsole("BaseMoveAccel 3000.000000");
    			this->PushToConsole("StartAccel 3000.000000");
    			this->PushToConsole("MaxAccel 3000.000000");
    			this->PushToConsole("AccelInc 3000.000000");
    			this->PushToConsole("WalkVel 3000.000000");
    			this->PushToConsole("FRunVel 3000.000000");
    		    this->PushToConsole("BRunVel 3000.000000");
    			this->PushToConsole("SRunVel 3000.000000");
    		    this->PushToConsole("JumpVel 3000.000000");
    			this->PushToConsole("DuckVel 3000.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");
    			this->PushToConsole("JumpVel 330.000000");
    			this->PushToConsole("DuckVel 50.000000");
    		}
    
    		Sleep(iRenderSpeed);
    
    		if( Menu.mOpt[5].nopt > 0 )//Less Spread
    		{
    			this->PushToConsole("PerturbRotationEffect  0.000000"); 
    			this->PushToConsole("PerturbIncreaseSpeed 0.000000"); 
    			this->PushToConsole("PerturbWalkPercent 0.000000"); 
    			this->PushToConsole("PerturbFiringIncreaseSpeed 0.000000");
    		}else{
    			this->PushToConsole("PerturbRotationEffect 3.000000");
    			this->PushToConsole("PerturbIncreaseSpeed 3.000000");
    			this->PushToConsole("PerturbDecreaseSpeed 9.000000");
    			this->PushToConsole("PerturbWalkPercent 0.500000");
    		}
    
    		Sleep(iRenderSpeed);
    
    		switch ( Menu.mOpt[6].nopt )//This Doesnt move your player pos it moves your Cam Pos
    		{
    			case 0://Defualt
    				this->PushToConsole("CamMaxPosYOffset 200.000000");
    				this->PushToConsole("DuckDownCamOffSet -13.000000");
    				break;
    			case 1://Up in the Air after u hit CNTRL
    				this->PushToConsole("CamMaxPosYOffset 200.000000");
    				this->PushToConsole("DuckDownCamOffSet 1000.000000");
    				break;
    			case 2://Under the Map after u hit CNTRL
    				this->PushToConsole("CamMaxPosYOffset -1000.000000");
    				this->PushToConsole("DuckDownCamOffSet -13.000000");
    				break;
    		}
    
    		Sleep(iRenderSpeed);
    
    		if( Menu.mOpt[7].nopt  > 0 )//Tracers
    			this->PushToConsole( "ShowFirePath 1" );
    		else
    			this->PushToConsole( "ShowFirePath 0" );
    
    		if( Menu.mOpt[8].nopt  > 0 )//Windowed Mode
    			this->PushToConsole( "windowed 1" );
    		else
    			this->PushToConsole( "windowed 0" );
    
    		if( Menu.mOpt[9].nopt > 0 )//Fps
    			this->PushToConsole( "ShowFps 1");
    		else
    			this->PushToConsole( "ShowFps 0");
    
    		if( Menu.mOpt[10].nopt > 0 )// Unlock Cursor
    			this->PushToConsole( "CursorCenter 0");
    		else
    			this->PushToConsole( "CursorCenter 1");
    
    		if( Menu.mOpt[11].nopt > 0 )//No Guns
    			this->PushToConsole("drawguns 0");
    		else
    			this->PushToConsole("drawguns 0");
    
    		Sleep(iRenderSpeed);
    	}
    }
    
    DWORD cBase::GetPointer(int index)
    {
    	DWORD* devicePtr = ***(DWORD****)0x7E4CE0;
    
    	if( devicePtr == NULL ) 
    		return 0;
    
    	return devicePtr[index];
    }
    
    bool cBase::IsGameReadyForHook(void)
    {
        if( GetModuleHandle( "d3d9.dll"     ) != NULL 
         && GetModuleHandle( "ClientFX.fxd" ) != NULL 
         && GetModuleHandle( "CShell.dll"   ) != NULL )
            return true;
    
        return false;
    }
    
    DWORD WINAPI dwMainThread(LPVOID)
    {
    	while ( !Base.IsGameReadyForHook() )
    		Sleep(iWaitTime);
    
    	Directx.Hook();
    
    	return 0;
    }
    	
    DWORD WINAPI dwHackThread(LPVOID)
    {
    	while( !Base.IsGameReadyForHook() )
    		Sleep(iWaitTime);
    
    	Base.Update();
    
    	return 0;
    }
    
    BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
    {
    	DisableThreadLibraryCalls(hDll);
    
    	if ( dwReason == DLL_PROCESS_ATTACH )
    	{
    		#ifdef LOG
    			DeleteFile(LogPath); 
    		#endif
    
    		CreateThread(NULL, NULL, dwMainThread, NULL, NULL, NULL);
    		CreateThread(NULL, NULL, dwHackThread, NULL, NULL, NULL);
    	}
    	return TRUE;
    }
    I am JammieDodger he has had like 90 posts but that account was my mates he wanted it back but he hasnt logged in for like 3 months mainly all posts were by me. So Yeh lol.

    STATUS :Browsing MPGH and running virus scans due to browser problems :/.

    If You Need any addies , any help , anything then feel free to PM Me.


    Hack Status :

    OPK 10%
    CHAMS 100%
    NO SPREAD & RECOIL 100%
    ALL OTHER EASY ONES 100%
    VIP ONES... 0%
    MENU HACK 30%
    HOTKEY HACK 100% (CBB TO RELEASE)



    [COLOR="Blue"]If You Need any addies , any help , anything then feel free to PM Me.

  5. #5
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Describe what error you got..SOmethign with D3dx9 ?

    Thanks Cosmos


  6. #6
    Andrew89898's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    13
    My Mood
    Amused
    I have no error it compiles perfectly
    Its just the fact that the hack crashes on loading or doesnt load atole ca opens no menu no title or anything..
    I am JammieDodger he has had like 90 posts but that account was my mates he wanted it back but he hasnt logged in for like 3 months mainly all posts were by me. So Yeh lol.

    STATUS :Browsing MPGH and running virus scans due to browser problems :/.

    If You Need any addies , any help , anything then feel free to PM Me.


    Hack Status :

    OPK 10%
    CHAMS 100%
    NO SPREAD & RECOIL 100%
    ALL OTHER EASY ONES 100%
    VIP ONES... 0%
    MENU HACK 30%
    HOTKEY HACK 100% (CBB TO RELEASE)



    [COLOR="Blue"]If You Need any addies , any help , anything then feel free to PM Me.

  7. #7
    117185's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    69
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Andrew89898 View Post
    I think my base is patched but im trying to basically mix it and try to fix it up
    what happens is when i start ca it either closes on loading or it starts up and no hacks work.

    If you need my source ill edit and put it in !
    does this mean its patched or LT client out of date? Im using this one :
    0x377CC790

    Thanks
    Well ur base can be patched!
    But u only need to update the addies!
    Anyway if u dont know how 2 do that!
    U can stop coding hacks, fast!

  8. #8
    Andrew89898's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    75
    Reputation
    10
    Thanks
    13
    My Mood
    Amused
    Ehm I have updated the addies/Lt Client im asking if this LT Client Works -_-
    I am JammieDodger he has had like 90 posts but that account was my mates he wanted it back but he hasnt logged in for like 3 months mainly all posts were by me. So Yeh lol.

    STATUS :Browsing MPGH and running virus scans due to browser problems :/.

    If You Need any addies , any help , anything then feel free to PM Me.


    Hack Status :

    OPK 10%
    CHAMS 100%
    NO SPREAD & RECOIL 100%
    ALL OTHER EASY ONES 100%
    VIP ONES... 0%
    MENU HACK 30%
    HOTKEY HACK 100% (CBB TO RELEASE)



    [COLOR="Blue"]If You Need any addies , any help , anything then feel free to PM Me.

  9. #9
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    Yea
    Your LTC is unpatched

    Thanks Cosmos


Similar Threads

  1. i need help with Base
    By wicho_koz in forum Combat Arms Coding Help & Discussion
    Replies: 11
    Last Post: 07-13-2011, 04:30 PM
  2. [Help Request] Need help with making binds !
    By JonathanTBM in forum Vindictus Help
    Replies: 4
    Last Post: 05-10-2011, 07:40 PM
  3. [Help Request] Need help with numpad while recording macro !
    By JonathanTBM in forum Vindictus Help
    Replies: 2
    Last Post: 05-10-2011, 07:37 PM
  4. [Help Request] need help with mod
    By .:MUS1CFR34K:. in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 05-01-2011, 12:40 PM
  5. [Help Request] need help with modding
    By BayBee Alyn in forum Combat Arms Help
    Replies: 0
    Last Post: 04-27-2011, 09:06 PM