Results 1 to 4 of 4
  1. #1
    yearupie's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    54
    Reputation
    11
    Thanks
    2

    Question Can't get stamina to work

    Hello forum members,

    I have a problem with the stamina hack.
    I don't get this hack to work.
    Further work most other hacks.

    I disabled all other hacks.

    Code:
    // Yearupie.cpp : Defines the exported functions for the DLL application.
    //
    
    #include "Stdafx.h"
    #include <Windows.h>
    #include <Stdio.h>
    
    /* Adressen zijn van 22-2-2010 van addylogger */
    #define ADR_PLAYERPOINTER 0x00CEFDB8
    #define ADR_SERVERPOINTER 0x00BEF520
    #define OFS_STAMINA 0x28
    
    HANDLE Warrock;
    DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame= (DWORD*)ADR_SERVERPOINTER;
    
    /* Makkelijk om te kopieren, minder typwerk */
    // DWORD dwPlayerPtr=*(DWORD*)ADR_PLAYERPOINTER;
    // DWORD dwServerPtr=*(DWORD*)ADR_SERVERPOINTER;
    
    
    // ...
    
    /* Stamina */
    void stamina ()
    {
    	DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    	if(dwPlayerPtr != 0)
    	{
    		*(float*)(dwPlayerPtr+OFS_STAMINA) = 100;
    	}
    }
    // ...
    
    void snip()
    {
    	for(;; ) 
    	{
    		if(*ingame)
    		{
    			//fastAll(); //werkt
    			//speedUp(); //werkt
    			//speedDown(); //werkt
    			//scope(); // werkt
    			//superJump(); // werkt
    			//nfd(); // werkt
    			//teleport(); // werkt
    			stamina(); // ---------- werkt niet ! ----------
    			//noFog(); // werkt
    		}
    		if(*outgame)
    		{
    			// spread(); // werkt
    			// noBound(); // werkt
    			// premium(3); // werkt
    		}
    		Sleep(200);
    	}
    }
    BOOL WINAPI DllMain(HINSTANCE hModule,DWORD dwReason,LPVOID lpvReserved){
    	if(dwReason==DLL_PROCESS_ATTACH){
    		CreateThread(0,0,(LPTHREAD_START_ROUTINE)snip,0,0,0);
    		MessageBoxA(NULL, "Made by Yearupie\n Email: wh4l@live.nl", "Credits", MB_OK);
    	}
    	return TRUE;
    }

  2. #2
    'Bruno's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Portugal
    Posts
    2,883
    Reputation
    290
    Thanks
    1,036
    My Mood
    Busy
    Did you make it urself? ;\
    Light travels faster than sound. That's why most people seem bright until you hear them speak.

  3. #3
    Pixipixel_'s Avatar
    Join Date
    Oct 2009
    Gender
    male
    Location
    VCExpress.exe || France :D
    Posts
    2,087
    Reputation
    27
    Thanks
    742
    My Mood
    Cool
    I guess this is leeched or else you would know where is the problem.


    Adrs Mem problem. Update your addies.

  4. #4
    yearupie's Avatar
    Join Date
    Apr 2008
    Gender
    male
    Posts
    54
    Reputation
    11
    Thanks
    2
    I found solution, bad addy logger!
    Last edited by yearupie; 02-24-2010 at 11:08 AM.
    This forum is great!

Similar Threads

  1. Can't get hacks to work
    By zanma in forum Combat Arms Help
    Replies: 6
    Last Post: 12-20-2009, 11:21 PM
  2. I can't get any hack working!
    By rickbovenkamp in forum WarRock Discussions
    Replies: 7
    Last Post: 12-20-2009, 07:19 AM
  3. how can i get teamspeak to work?
    By firstto100 in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 03-16-2009, 08:07 PM
  4. Can't get hacks to work
    By chokeonaloaf in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 08-18-2008, 06:52 PM
  5. I can't get EliteVision to Work.
    By josamko in forum Combat Arms Hacks & Cheats
    Replies: 13
    Last Post: 08-14-2008, 04:58 PM