Results 1 to 5 of 5
  1. #1
    demiengodlol90's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    3

    AoB Pattern Generator ( by AikonCWD - Cheat Engine Forum )

    Its coded under VBS (open source) and you can compare more than 2 AoB to get the best wilcard-aob
    ---------------------------------------------------------------------------------------------------------------------------------------------

    'Created by AikonCWD

    Set oWSH = CreateObject("WScript.Shell")
    Set oFSO = CreateObject("Scripting.FileSystemObject")

    T = InputBox("Enter array of bytes nș 1:")
    T = T & vbcrlf & InputBox("Enter array of bytes nș 2:")

    X = 3
    While MsgBox("Do you want to introduce another array of bytes?", vbYesNo, "AoB Pattern Generator") = vbYes
    T = T & vbcrlf & InputBox("Enter array of bytes nș " & X &":")
    X = X + 1
    Wend

    AoB = Split(T, vbcrlf)

    F = ""
    W = 0
    X = 0
    For i = 1 To Len(AoB(0))
    For u = 1 To UBound(AoB)
    If Mid(AoB(u), i, 1) <> Mid(AoB(0), i, 1) Then
    F = F & "?"
    W = W + 1
    X = 1
    Exit For
    End If
    Next
    If X <> 1 Then F = F & Mid(AoB(0), i, 1)
    X = 0
    Next

    Set File = oFSO.CreateTextFile("aob.txt")
    File.Write "Original array of bytes:" & vbcrlf & vbcrlf
    File.Write Replace(T, vbcrlf & vbcrlf, vbcrlf) & vbcrlf & vbcrlf
    File.Write "Total array of bytes: " & UBound(AoB) + 1 & vbcrlf
    File.Write "Total wildcards used: " & W & vbcrlf & vbcrlf
    File.Write "Your AoB Pattern:" & vbcrlf & vbcrlf & F
    File.Close

    'MsgBox F

    If MsgBox("AoB Patter Generator finished" & vbcrlf & vbcrlf & "Do you want to open aob.txt file?", vbYesNo, "AoB Pattern Generator") = vbYes Then
    oWSH.Run "notepad.exe aob.txt"
    End If

  2. The Following 3 Users Say Thank You to demiengodlol90 For This Useful Post:

    Aghjax (09-02-2015),arejomadbruh (09-19-2015),Max_Dz (09-02-2015)

  3. #2
    Anon-DF's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    What does this do exactly? And how do you use it?

  4. #3
    SnRolls's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    121
    Reputation
    10
    Thanks
    757
    My Mood
    Stressed
    Quote Originally Posted by Anon-DF View Post
    What does this do exactly? And how do you use it?
    Basically, download VBS and copy paste the code there then run the program

  5. #4
    Anon-DF's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by SnRolls View Post
    Basically, download VBS and copy paste the code there then run the program
    I don't think this helped me figure what it does >.<

  6. #5
    Ghaladh's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    19
    Reputation
    62
    Thanks
    16
    My Mood
    Busy
    Judging by the script, it compares two AoB codes (the one you have to "search" with the one that will replace it) to find the differences, turning those into wildcards, so that you don't have to check the AoB code manually bit by bit. Am I right, demien?

Similar Threads

  1. Auto Hack AoB Cheat Engine [Dead Frontier]
    By dexter2013 in forum Dead Frontier Hacks
    Replies: 15
    Last Post: 2 Weeks Ago, 08:57 AM
  2. [Request] About No Recoil in Olly+ Generating addys with Cheat engine
    By moathebest in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 20
    Last Post: 11-27-2011, 02:51 AM
  3. Cheat Engine Forums
    By CupNoodles in forum Combat Arms Hacks & Cheats
    Replies: 65
    Last Post: 09-09-2008, 12:47 PM
  4. [Tutorial] Cheat Engine - Weapons
    By darkshinez in forum WarRock - International Hacks
    Replies: 49
    Last Post: 07-29-2006, 01:55 PM
  5. Cheat Engine Values
    By Bull3t in forum WarRock - International Hacks
    Replies: 0
    Last Post: 05-31-2006, 04:10 AM