Results 1 to 4 of 4
  1. #1
    godlvl's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    111
    Reputation
    10
    Thanks
    808
    My Mood
    Bored

    Angry Help with Poly300Hop

    Why doesn't think work?
    #define Pressed 0x8000

    Code:
    DWORD WINAPI bhop(LPVOID lpParam) {
    	while (true) {
    		if (bON) {
    			if (fflag == FL_ON_GROUND)
    				while (GetAsyncKeyState(VK_SPACE) & Pressed)) {
    				Meme.Write<int>(Client + jumpoffset, 4);
    				Sleep(1);
    				Meme.Write<int>(Client + jumpoffset, 5);
    			}
    			
    		}
    		Sleep(1);
    	}
    	return NULL;
    }

  2. #2
    xShouty's Avatar
    Join Date
    May 2016
    Gender
    male
    Location
    My Home :3
    Posts
    21
    Reputation
    10
    Thanks
    1
    My Mood
    Relaxed
    Heres my bhop

    Code:
    		if (bhopstatus == true)
    		{
    			ReadProcessMemory(fProcess.__HandleProcess, (void *)(fProcess.__dwordClient + __dw_PlayerBase), &__dw_LocalPlayer, sizeof(DWORD), NULL);
    
    			ReadProcessMemory(fProcess.__HandleProcess, (void *)(__dw_LocalPlayer + __dw_flagsoff), &__by_flagsstat, sizeof(BYTE), NULL);
    
    			if (bhopstatus == true && (GetAsyncKeyState(VK_SPACE)))
    			{
    
    				if (__by_flagsstat == 1 || __by_flagsstat == 3 || __by_flagsstat == 5 || __by_flagsstat == 7)
    				{
    					WriteProcessMemory(fProcess.__HandleProcess, (void *)(fProcess.__dwordClient + __dw_jumpstatoff), &btrue,  sizeof(bool), NULL);
    					Sleep(60);
    					WriteProcessMemory(fProcess.__HandleProcess, (void *)(fProcess.__dwordClient + __dw_jumpstatoff), &bfalse, sizeof(bool), NULL);
    				}
    
    			}
    		}
    Maybe it can help u

  3. #3
    l1m3w1r3's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    77
    My Mood
    Tired
    Quote Originally Posted by godlvl View Post
    Why doesn't think work?
    #define Pressed 0x8000

    Code:
    DWORD WINAPI bhop(LPVOID lpParam) {
    	while (true) {
    		if (bON) {
    			if (fflag == FL_ON_GROUND)
    				while (GetAsyncKeyState(VK_SPACE) & Pressed)) {
    				Meme.Write<int>(Client + jumpoffset, 4);
    				Sleep(1);
    				Meme.Write<int>(Client + jumpoffset, 5);
    			}
    			
    		}
    		Sleep(1);
    	}
    	return NULL;
    }
    change
    Code:
    Meme.Write<int>(Client + jumpoffset, 4);
    Sleep(1);
    Meme.Write<int>(Client + jumpoffset, 5);
    to
    Code:
    Meme.Write<int>(Client + jumpoffset, 5);
    Sleep(1);
    Meme.Write<int>(Client + jumpoffset, 4);
    Quote Originally Posted by Tag Shai View Post
    C&P is life

  4. The Following User Says Thank You to l1m3w1r3 For This Useful Post:

    godlvl (05-16-2016)

  5. #4
    rwby's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    client.dll
    Posts
    1,631
    Reputation
    142
    Thanks
    6,724
    // Solved & Closed

Similar Threads

  1. [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
  2. [Help Request] help with ca hacks
    By moises8 in forum Combat Arms Help
    Replies: 4
    Last Post: 05-10-2011, 05:55 PM
  3. [Help Request] Anyone can help with this ?
    By devileyebg in forum Vindictus Help
    Replies: 1
    Last Post: 05-01-2011, 03:57 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