Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    boni87's Avatar
    Join Date
    Feb 2024
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    1

    Smile

    Thanks for the codes, DZA works well but somehow the others don't, im pretty sure i have changed the hex values correctly using hexedit.

  2. #17
    ahmad823's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    My Mood
    Lurking
    Quote Originally Posted by boni87 View Post
    Thanks for the codes, DZA works well but somehow the others don't, im pretty sure i have changed the hex values correctly using hexedit.
    all working mate just need to find yourself the value to change is same event my friend dont have all problem at all

  3. #18
    erkepao's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ahmad823 View Post
    Not being hit by zombie:
    16 0A 12 01 FE 15 58 00 00 01 20 00
    TO
    17 0A 12 01 FE 15 28 00 00

    infinate stamina:
    22 00 00 C0 3F 5A 02 7B A1 20 00
    to
    22 00 00 70 41

    speed
    66 40 22 CD CC 8C 3F 22 6F 12 83 3B
    to
    66 40 22 CD CC 7A 40 22 6F 12 83 3B

    for speed idk not fast enough or what correct me plz also im looking for hex one hit kill zombie/bandit

    - - - Updated - - -



    Please leave comment if works thx
    Could you give it to me so I can run it in cheat engine, please?

    - - - Updated - - -

    Quote Originally Posted by erkepao View Post
    Could you give it to me so I can run it in cheat engine, please?
    or how can I go from hexadecimal to aob?

  4. #19
    ahmad823's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    My Mood
    Lurking
    Quote Originally Posted by erkepao View Post
    Could you give it to me so I can run it in cheat engine, please?

    - - - Updated - - -



    or how can I go from hexadecimal to aob?
    Example:


    disable zombie attacks

    AoB = AOBScan("16 0A 12 ?? FE 15 ?? ?? ?? ?? 20 ?? ?? ?? ?? 0C")
    if (AoB) then
    print("Turn off zombie attacks Succeed")
    for i=0,4 do
    writeBytes(tonumber(AoB[i],16), 0x17)
    end
    AoB.Destroy()
    AoB = nil
    else
    print("Turn off zombie attacks Fail Need Update")
    end

    - - - Updated - - -

    Quote Originally Posted by ahmad823 View Post
    Example:


    disable zombie attacks

    AoB = AOBScan("16 0A 12 ?? FE 15 ?? ?? ?? ?? 20 ?? ?? ?? ?? 0C")
    if (AoB) then
    print("Turn off zombie attacks Succeed")
    for i=0,4 do
    writeBytes(tonumber(AoB[i],16), 0x17)
    end
    AoB.Destroy()
    AoB = nil
    else
    print("Turn off zombie attacks Fail Need Update")
    end
    or this

    AoB = AOBScan("22 00 00 C0 3F 5A 58 7D 37 40 00 04 02 6F CF 28 00 06 1F 31")
    if (AoB) then
    print("Infinite Energy Activated")
    for x=0, AoB.getCount()-1 do
    writeBytes(tonumber(AoB[x],16)+3, 0x70, 0x41)
    end
    else
    print("Infinite Energy FAILED")
    end

    you need make AoB=AoBScan(" that hex") rest idk much

  5. The Following User Says Thank You to ahmad823 For This Useful Post:

    erkepao (02-11-2024)

  6. #20
    erkepao's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ahmad823 View Post
    Example:


    disable zombie attacks

    AoB = AOBScan("16 0A 12 ?? FE 15 ?? ?? ?? ?? 20 ?? ?? ?? ?? 0C")
    if (AoB) then
    print("Turn off zombie attacks Succeed")
    for i=0,4 do
    writeBytes(tonumber(AoB[i],16), 0x17)
    end
    AoB.Destroy()
    AoB = nil
    else
    print("Turn off zombie attacks Fail Need Update")
    end

    - - - Updated - - -



    or this

    AoB = AOBScan("22 00 00 C0 3F 5A 58 7D 37 40 00 04 02 6F CF 28 00 06 1F 31")
    if (AoB) then
    print("Infinite Energy Activated")
    for x=0, AoB.getCount()-1 do
    writeBytes(tonumber(AoB[x],16)+3, 0x70, 0x41)
    end
    else
    print("Infinite Energy FAILED")
    end

    you need make AoB=AoBScan(" that hex") rest idk much
    thx dude, you helped me a lot, but the code of speed isnt work

  7. #21
    mredd99's Avatar
    Join Date
    Feb 2024
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0

    CODE FOR SPEED (Safe)

    Quote Originally Posted by erkepao View Post
    thx dude, you helped me a lot, but the code of speed isnt work
    AoB = AOBScan("66 40 22 CD CC 8C 3F 22 6F 12 83 3B 11 10 6B 5A 58 5A 22 CD")
    if (AoB) then
    print("Super Sprint OK")
    for x=0, AoB.getCount()-1 do
    writeBytes(tonumber(AoB[x],16)+5, 0x7A, 0x40)
    end
    else
    print("Super Sprint FAILED")
    end

  8. #22
    gamenatorGR's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ahmad823 View Post
    Not being hit by zombie:
    16 0A 12 01 FE 15 58 00 00 01 20 00
    TO
    17 0A 12 01 FE 15 28 00 00

    infinate stamina:
    22 00 00 C0 3F 5A 02 7B A1 20 00
    to
    22 00 00 70 41

    speed
    66 40 22 CD CC 8C 3F 22 6F 12 83 3B
    to
    66 40 22 CD CC 7A 40 22 6F 12 83 3B

    for speed idk not fast enough or what correct me plz also im looking for hex one hit kill zombie/bandit

    - - - Updated - - -



    Please leave comment if works thx
    When looking at the hex editor
    I found two values with
    66 40 22 CD CC 8C 3F 22 6F 12 83 3B
    Do I change both

  9. #23
    ahmad823's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    My Mood
    Lurking
    Quote Originally Posted by gamenatorGR View Post
    When looking at the hex editor
    I found two values with
    66 40 22 CD CC 8C 3F 22 6F 12 83 3B
    Do I change both
    Onlu 8C and 3F

  10. #24
    biskwit's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    My Mood
    Breezy

    stamina not working

    The stamina doesn't work bro..

  11. #25
    ahmad823's Avatar
    Join Date
    Jan 2024
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    My Mood
    Lurking
    Quote Originally Posted by biskwit View Post
    The stamina doesn't work bro..
    its working to me you need to change just that and done

  12. #26
    lordhawk1995's Avatar
    Join Date
    Apr 2024
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ahmad823 View Post
    just give me your discord i will send you

    - - - Updated - - -



    send your discord i will send you

    meee tooo pls i tryed with search but only work the speed

  13. #27
    Ramuh's Avatar
    Join Date
    Apr 2020
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0

    Unhappy

    DZA not working for me, anybody have all AOB?

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Patched] Rust Jump Exploit for latest patch (will update when patched)
    By BeastJesus in forum Rust Hacks / Cheats
    Replies: 4
    Last Post: 08-06-2015, 08:02 PM
  2. [Patched] Super Weapons Hack Updated (September Patch)
    By meawww in forum Alliance of Valiant Arms (AVA) Hacks & Cheats
    Replies: 106
    Last Post: 09-28-2012, 07:46 AM
  3. today server updated been patched...T.T
    By loveme00 in forum Vindictus Help
    Replies: 1
    Last Post: 07-25-2011, 11:49 PM
  4. Replies: 3
    Last Post: 07-30-2010, 09:11 AM
  5. TeamSpeak Updated After Patch Works
    By rufus7 in forum Combat Arms Europe Hacks
    Replies: 212
    Last Post: 04-06-2009, 02:29 PM

Tags for this Thread