Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Blackhandal's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In the REICH!
    Posts
    940
    Reputation
    69
    Thanks
    428
    My Mood
    Angelic

    Make your own energie hack in 30 seconds

    Hi guys

    I have some problems to find the Pointer for energie so i will tell you how u can make it by your own until i have them

    Step 1 open Cheat engine and Tribes attach Tribes

    step 2 start a new match and take a class

    step 3 go to Cheatengine window and klick on "4 byte" change it to float

    step 4 fill in "value" tab your energie what u have and klick "first scan" for example my Juggernaut have 100 energie so i fill in 100

    step 5 fly around until your energie is 0 now you must be Very!!! fast go to cheat engine window and change the "exact" button into "decreased" klick next scan the scan should be take 1 second now change the"value decreased" button fast into "increased value" and klick fast 10 -20 times next scan until you only have 4 adresses left

    step 6 now double klick on all 4 adresses and toggle them ([x]) now u can fly around all the time (this only works for the Jetpack not for special powers like invisible)

    This will take 30 seconds and its very easy but the biggest problem is that u have to do all this after evry death and new Map (with energie hack i die 0-3 times in a whole match)


    with the same way u can make an unl ammo hack u only have to scan with "4 byte" type in your ammo and then shoot 1 time scan again your ammo
    with "exact value" do it until you haveŽ1 adress left toggle them and you have unl ammo


    The offset for energie is 910 (maybe some guys could use this information)


    __________________________________________________ _______
    I need some peoples who wanna help me ingame we could creating a little hacker clan and try out my hacks create rooms and dont kill me until my scans are done ^^

  2. #2
    Girlz Rule's Avatar
    Join Date
    Aug 2011
    Gender
    female
    Location
    UK
    Posts
    259
    Reputation
    7
    Thanks
    98
    or you could just hotkey ? durp lol

  3. #3
    Schnittlauch's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Girlz Rule View Post
    or you could just hotkey ? durp lol
    mhn, i dunno what ya mean, could u explain it please?

  4. #4
    Zeracks's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    128
    Reputation
    10
    Thanks
    6
    My Mood
    Bored
    Took me awhile to understand.... but keep working on the English

  5. #5
    desertflame's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Posts: 23847611237
    Posts
    380
    Reputation
    48
    Thanks
    850
    My Mood
    Amused
    theres a much easier way to find the energy address. I never bothered finding the offsets as the pointer scan usually finds all. The energy pointer is a multi level pointer which means it'll have at least 4 different offsets(which makes it alot more time consuming to scan and find). Even when scanning for level 10 pointers(all pointing to the energy dynamic address) the search finds none.

    EDIT: got the actual address that decreases energy and wrote a dll that NOPs that function. So you now have infinite energy. Not releasing it though. tip: use ollydbg.
    Last edited by desertflame; 08-28-2012 at 07:12 PM.

  6. #6
    ROOKIE3900's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    Please help i am having trouble doing it

  7. #7
    Blackhandal's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In the REICH!
    Posts
    940
    Reputation
    69
    Thanks
    428
    My Mood
    Angelic
    Quote Originally Posted by ROOKIE3900 View Post
    Please help i am having trouble doing it
    Whats ur problem?

  8. #8
    Blackhandal's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In the REICH!
    Posts
    940
    Reputation
    69
    Thanks
    428
    My Mood
    Angelic
    USE IT AT YOUR OWN RISK HWID BANN IS POSSIBLE

  9. #9
    ROOKIE3900's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    whenever i do the hack the game freezes

  10. #10
    Blackhandal's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In the REICH!
    Posts
    940
    Reputation
    69
    Thanks
    428
    My Mood
    Angelic
    Quote Originally Posted by ROOKIE3900 View Post
    whenever i do the hack the game freezes
    at the first scan or when u have the value ?

  11. #11
    Shadow4499's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    Well unlimited ammo wont work.

  12. #12
    jinto's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    how did you find the right add in olly

  13. #13
    ROOKIE3900's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    i scan about a few times when till i have four

    ---------- Post added at 10:21 AM ---------- Previous post was at 10:14 AM ----------

    also confused by step five

  14. #14
    desertflame's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Posts: 23847611237
    Posts
    380
    Reputation
    48
    Thanks
    850
    My Mood
    Amused
    @jinto

    Pretty easily. Use cheat engine to find the dynamic address, find what writes to the address. The address of what writes to the address should point to an xmmo register which contains the energy value. Just NOP it in olly and you're good to go.

    Source for the main thread in my hack looks something like this:
    Code:
    UINT MAINTHREAD(VOID)
    {
    
    
    	while(1)
    	{
    	HWND hWnd = FindWindow("tribesascend",NULL);
            DWORD proc_id; 
            GetWindowThreadProcessId(hWnd, &proc_id); 
            HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);
    
    	nop_((PVOID)0xaddy, 2);  //rapid fire, infinite bullets (only works in training)
    	nop_((PVOID)0xaddy, 8);  //energy
    	nop_((PVOID)0xaddy, 8);  /*energy   I NOPed two statements with the same register just in case. 'nop_' is  a separate function I made which i won't release. It basically writes 0x90 in an unrecognizable way so it can't be detected. notice i left the amount of bytes for each address.*/
    	}
    	
    
    
    }
    Last edited by desertflame; 09-02-2012 at 04:36 PM.

  15. The Following User Says Thank You to desertflame For This Useful Post:

    Blackhandal (09-03-2012)

  16. #15
    ROOKIE3900's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    1
    Okay i really aint good with um whatever ur doing So can anyone help please i would like to learn to hack

Page 1 of 2 12 LastLast

Similar Threads

  1. How to make your own Rank Hack in MW2 :) [Using Cheat Engine]
    By RaveyHax in forum Call of Duty Modern Warfare 2 Tutorials
    Replies: 11
    Last Post: 05-30-2010, 11:31 AM
  2. How to Make Your Own Public Hack
    By gothboii97 in forum CrossFire Discussions
    Replies: 15
    Last Post: 03-23-2010, 03:00 PM
  3. Make your own WR hack
    By tdcoolboy in forum C++/C Programming
    Replies: 26
    Last Post: 10-17-2009, 10:18 PM
  4. [[TUTORIAL]] How to make your OWN warrock hacks
    By th9end in forum WarRock Discussions
    Replies: 15
    Last Post: 08-19-2009, 02:16 AM
  5. {TUT} How to make your own opk hack
    By mandog10 in forum Combat Arms Hacks & Cheats
    Replies: 28
    Last Post: 08-13-2008, 02:44 PM