Results 1 to 3 of 3
  1. #1
    Xodius's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    127.0.0.1
    Posts
    149
    Reputation
    109
    Thanks
    363
    My Mood
    Amused

    Post help with using offsets for camo ranks prestige ect...

    I was just wondering how you would use something like 0x38907E58 [Size= dword(32b) | Input= 0-55], Do you do it in cheat engine I'm just confused -Help much appreciated.

  2. #2
    damnzit's Avatar
    Join Date
    Oct 2015
    Gender
    female
    Posts
    67
    Reputation
    10
    Thanks
    291
    My Mood
    Aggressive
    This Address is for coding not for use directly in Cheat Engine.


    Example:


    Code:
    DWORD address1 = 0x38907E38; 
        DWORD address2 = 0x38907E58; 
        int value1 = 10;
        int value2 = 55;

  3. #3
    hkKenshin's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    301
    Reputation
    28
    Thanks
    340
    Code:
    // sizeof(DWORD) == 32 bits or 4 bytes
    // sizeof(UINT64) == 64 bits or 8 bytes
    
    #define MY_ADDR 0x1DEADC0DE // This is a 64 bit address
    DWORD myAddrI32 = MY_ADDR; // Guess what happens -- MY_ADDR is casted to a 32 bit value meaning the prefixed '1' gets removed and the address transforms to 0xDEADC0DE
    UINT64 myAddrI64 = MY_ADDR; // This is interpreted as it should be.
    That's C++ code.
    If you're using another language, make sure your program compiles as x64 and imports your APIs as x64 ( All LPVOID pointers get 64 bit values )
    Also ensure you're using 64 bit variables to hold your values.
    Last edited by Hunter; 07-18-2016 at 01:22 AM. Reason: Offensive language isn't allowed whatsoever.

Similar Threads

  1. [Help Request] Help with finding offsets.
    By ImMalkah in forum CrossFire Help
    Replies: 4
    Last Post: 08-25-2013, 01:06 AM
  2. [Help Request] Need help with UAV/wallhack for Cheat engine
    By Sirloth in forum Alliance of Valiant Arms (AVA) Help
    Replies: 1
    Last Post: 08-28-2012, 04:16 PM
  3. [Help Request] help with Gforce hack for crossfire!!!
    By zonatefever in forum CrossFire Help
    Replies: 1
    Last Post: 08-01-2011, 04:37 PM
  4. Help with Request Code for Adobe Illustrator
    By Groover111 in forum General Game Hacking
    Replies: 1
    Last Post: 02-27-2008, 08:46 AM
  5. Help with using renders? plz
    By acepwnage in forum Art & Graphic Design
    Replies: 11
    Last Post: 07-11-2006, 12:37 PM