Thread: C++ Bunny Hope

Results 1 to 6 of 6
  1. #1
    TheNamless's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    3
    My Mood
    Fine

    C++ Bunny Hope

    so recently i decided to start making hacks for cs go , so i started with bunny hope , i made my own code but he problem is that while i am pressing space bar he jump only one time and he stop if some one can point me to my error i will be thankfull
    here is the section of the source code where it cosing problem




    Code:
    while(true){
    
    		  while(GetAsyncKeyState(0x20) > 0)
    				 {								       				 		
    		    int jump   = 5;
                int unjump = 4;
    			 WriteProcessMemory(csProcess,(LPVOID)(procadr + instrjump),&jump,(DWORD)sizeof(int),0); #procadr is csgo client base adress
    		     Sleep(20);			 
    	         WriteProcessMemory(csProcess,(LPVOID)(procadr + instrjump),&unjump,(DWORD)sizeof(int),0);	
    				 
    		
    		  }
    		}

  2. #2
    Hacker Fail's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    C++
    Posts
    2,136
    Reputation
    242
    Thanks
    12,562
    Code:
    void BupHask()
    {
    	CLocalPlayer* pLocal = new CLocalPlayer();
    	pLocal->Read();
    
    	if (GetAsyncKeyState(0x20) && pLocal->flags == 257) 
    	{
    		Mem.WriteInt(dwClient + dwForceJump, 5);
    	} else {
    		Mem.WriteInt(dwClient + dwForceJump, 4);
    	}
    }
    Member Level 1 since November, 2011
    Contributor since March, 2015
    Game Hacking Team : 06/14/2017

     

  3. The Following User Says Thank You to Hacker Fail For This Useful Post:

    TheNamless (06-30-2016)

  4. #3
    TheNamless's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    3
    My Mood
    Fine
    tnk's man i will try it and feedback as fast as possible

    - - - Updated - - -

    Quote Originally Posted by Hacker Fail View Post
    Code:
    void BupHask()
    {
    	CLocalPlayer* pLocal = new CLocalPlayer();
    	pLocal->Read();
    
    	if (GetAsyncKeyState(0x20) && pLocal->flags == 257) 
    	{
    		Mem.WriteInt(dwClient + dwForceJump, 5);
    	} else {
    		Mem.WriteInt(dwClient + dwForceJump, 4);
    	}
    }
    worked like charme thx man , my mistake was i should of use " if " instead of while and checking for the flagstatus "if (GetAsyncKeyState(0x20) &&pLocal->flags == 257) "

  5. The Following User Says Thank You to TheNamless For This Useful Post:

    Hacker Fail (06-30-2016)

  6. #4
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    /Moved to the correct section.

  7. #5
    TheNamless's Avatar
    Join Date
    Jun 2016
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    3
    My Mood
    Fine
    Quote Originally Posted by Hunter View Post
    /Moved to the correct section.
    This thread need to be closed i already fixed the problem with the help of HackerFly , thx again

  8. #6
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    /Solved & closed.

Similar Threads

  1. [Tutorial] Bunny hoping for those who dont no how :)
    By Music in forum CrossFire Hacks & Cheats
    Replies: 7
    Last Post: 11-11-2009, 03:18 PM
  2. Replies: 4
    Last Post: 11-28-2007, 07:32 PM
  3. Hopefully hard to detect hacks - need volunteers and testers
    By bagpiperdude90 in forum WarRock - International Hacks
    Replies: 8
    Last Post: 08-25-2007, 03:51 PM
  4. Hi there (I hope i chosen the right place)
    By Logica in forum Debate Fort
    Replies: 20
    Last Post: 01-09-2007, 08:28 PM
  5. super sig request (hope it isint too much O_O)
    By NukeAssault in forum Help & Requests
    Replies: 6
    Last Post: 02-06-2006, 10:13 AM