Results 1 to 5 of 5
  1. #1
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed

    Ghost Mode Flicker

    Mmmmm i'm stumped, any ideas on the ghost mode flicker?

  2. #2
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Stop the camera from updating.
    You can block s2s id 100, use the beastmode address or the camera update address posted arround here anywhere

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  3. The Following User Says Thank You to Ch40zz-C0d3r For This Useful Post:

    Acea (12-30-2012)

  4. #3
    Acea's Avatar
    Join Date
    Oct 2012
    Gender
    female
    Location
    Home of the elks
    Posts
    346
    Reputation
    80
    Thanks
    2,216
    My Mood
    Stressed
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Stop the camera from updating.
    You can block s2s id 100, use the beastmode address or the camera update address posted arround here anywhere
    Will try and report back, Thanks for the information.

  5. #4
    Eu sou Daleste cheguei mais to saindo fora
    MPGH Member
    experthack's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    1,178
    Reputation
    90
    Thanks
    626
    My Mood
    Aggressive
    Or use this method:
    Code:
    FindPattern( (DWORD)cvar.m_iCShell.lpBaseOfDll, cvar.m_iCShell.SizeOfImage, (PBYTE)"\x8B\x42\x00\x6A\x00\x8B\x00\xFF\x00\x0F\xB6\x00\x89\x4C", "xx?x?x?x?xx?xx")+0x12; 
    void cHacks::FixCamera(int iGhostMode,int iTeleKill ,int iHide)
    {
    	if( !esp->local.bDead && iGhostMode || iTeleKill || iHide)
    	{
    		if(*(long*)ADDR_PLAYERSTATUS == 1)
    		   *(long*)ADDR_PLAYERSTATUS = -5;
    	} else {
    		if(*(long*)ADDR_PLAYERSTATUS == -5)
    		   *(long*)ADDR_PLAYERSTATUS = 1;
    	}
    }
    
    void cHacks::GhostMode(bool GhostMode)
    {
    	if( !esp->local.bDead && GhostMode )
    	{		
    		cPlayerMgr*	pPlayerManager;
    		pPlayerManager= *(cPlayerMgr**)ADDR_PLAYERMANAGER;
    		
    		float PlayerPitch = pPlayerManager->Pitch;
    		float PlayerYaw = pPlayerManager->Yaw;
    		
    		bool Forward = (GetAsyncKeyState('I') & 0x8000) != 0;
    		bool Backward = (GetAsyncKeyState('K') & 0x8000) != 0;
    		bool Left = (GetAsyncKeyState('J') & 0x8000) != 0;
    		bool Right = (GetAsyncKeyState('L') & 0x8000) != 0;
    		
    		if( Forward || Backward || Left || Right )
    		{
    			if( Forward || Backward )
    			{
    				float Sign = (Forward ? 1.0f : -1.0f);
    				Pos.x += Sign * 15.0f * sinf(PlayerYaw);
    				Pos.y += Sign * 15.0f * sinf(-PlayerPitch);
    				Pos.z += Sign * 15.0f * cosf(PlayerYaw);
    			}
    			
    			if( Left )
    			{
    				Pos.x += 15.0f * sinf(PlayerYaw - (MATH_PI / 2.0f));
    				Pos.y += 0;
    				Pos.z += 15.0f * cosf(PlayerYaw - (MATH_PI / 2.0f));
    			}
    			
    			if( Right )
    			{
    				Pos.x += 15.0f * sinf(PlayerYaw + (MATH_PI / 2.0f));
    				Pos.y += 0;
    				Pos.z += 15.0f * cosf(PlayerYaw + (MATH_PI / 2.0f));
    			}
    		}
    
    		SetarPosicaoLocal( Pos );
    	}
    	else if( !esp->local.bDead && GhostMode == 0 )
            {
            Pos = GetLocalPlayerPosition( Pos );
    	}
    }
    on present :
    Code:
    hacks->GhostMode(menu->cBox[150].OnOff);
    hacks->FixCamera(menu->cBox[150].OnOff,menu->cBox[151].OnOff,menu->cBox[152].OnOff);
    Credits :
    donoob(disav0w)
    Neo III

  6. The Following User Says Thank You to experthack For This Useful Post:

    Acea (12-30-2012)

  7. #5
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,179
    My Mood
    Inspired
    Question Answered. Simplest method would be using the "beast mode" address.

    /Solved
    /Closed
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


Similar Threads

  1. Ghost Mode Guide For GR
    By P1MP in forum CrossFire Hacks & Cheats
    Replies: 27
    Last Post: 11-25-2009, 03:48 PM
  2. Ghost Mode
    By Toxin in forum Art & Graphic Design
    Replies: 7
    Last Post: 08-04-2009, 11:57 PM
  3. Aimbot and Ghost mode post
    By wesboyman101 in forum Combat Arms Hacks & Cheats
    Replies: 7
    Last Post: 07-25-2009, 12:41 PM
  4. Ghost Mode Tips for BL & GR!
    By Internets in forum General
    Replies: 7
    Last Post: 07-17-2009, 04:39 PM
  5. Need Hack>Ghost Mode as GLOBAL RISK<
    By Babacik94 in forum CrossFire Hacks & Cheats
    Replies: 2
    Last Post: 04-16-2009, 04:52 AM