Thread: CE Cheat / Hack

Results 1 to 3 of 3
  1. #1
    xkeana's Avatar
    Join Date
    Jun 2018
    Gender
    male
    Posts
    36
    Reputation
    26
    Thanks
    4

    CE Cheat / Hack

    Hey guys

    I want to create a hack for a game.
    It should move the Position (coords) from character 1 to character 2.

    I already found the pointers for x and y position.

    How to create a "script" or something that changes the value of adress 1 to the value of adress 2 ?

    Thank you :=)

  2. #2
    defaulto's Avatar
    Join Date
    Aug 2017
    Gender
    male
    Posts
    461
    Reputation
    427
    Thanks
    346
    My Mood
    Angelic
    Only in Cheat Engine? My LUA isn't the best but I might have a look at it.
    If I can't do it in LUA, I could do it in C# for you.

    #LOGS
    12-02-2020 ⌨ [MPGH]defaulto got gifted the Premium Membership from [MPGH]Azuki - sponsored by [MPGH]Flengo.
    27-11-2019 ⌨ [MPGH]defaulto captured the GFX Team Base together with [MPGH]Howl & [MPGH]Poonce.
    08-14-2017 ⌨ defaulto joined the game.

  3. #3
    Azuki's Avatar
    Join Date
    Mar 2015
    Gender
    female
    Location
    京都市
    Posts
    1,110
    Reputation
    195
    Thanks
    20,156
    My Mood
    Angelic
    hi.
    Code:
    al = getAddressList()
    
    -- rename your table entries to p1/p2 or change the strings here
    readAddress = addresslist_getMemoryRecordByDescription(al, 'p1').Address
    writeAddress = addresslist_getMemoryRecordByDescription(al, 'p2').Address
    
    function OnTick(sender)
             x = readInteger(readAddress)
             -- change offset to correct / include new address
             y = readInteger(readAddress + 0x20)
    
             writeInteger(writeAddress, x)
             -- change offset to correct / include new address
             writeInteger(writeAddress + 0x20)
    end
    
    PosTimer = createTimer(nil, true)
    -- change interval here (2nd param) to preferred interval time
    timer_setInterval(PosTimer, 10)
    timer_onTimer(PosTimer, OnTick)
    if you have questions dm me or something, this should work. // btw 1k posts

    BTC: 1LLm4gaPYCZsczmi8n1ia1GsEMsDRs2ayy
    ETH: 0x7d8045F6e452045439c831D09BAB19Bf9D5263EE



Similar Threads

  1. [Request] Cheat/Hack PointBlank Brazil Pleasee
    By YouCan_nabis... in forum Point Blank Hacks
    Replies: 66
    Last Post: 03-12-2011, 08:58 AM
  2. Counter Strike cheats hacks for Steam, leagues and non-steam
    By PaboXZ in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 3
    Last Post: 02-27-2011, 09:44 AM
  3. Replies: 4
    Last Post: 01-11-2011, 01:43 PM
  4. How to add your cheats/hacks to sources.
    By SeptFicelle in forum WarRock Tutorials
    Replies: 5
    Last Post: 11-05-2010, 09:33 AM
  5. Need "X-ray Anti Cheat hack" !
    By JarokL in forum Call of Duty Modern Warfare 2 Help
    Replies: 9
    Last Post: 02-14-2010, 07:36 PM