Exemple #1
0
 /// <summary>
 /// Creates and registers a new absolute AOB pointer with a CE-style AOB string.
 /// </summary>
 public PHPointer RegisterAbsoluteAOB(string aob, params int[] offsets)
 {
     return(RegisterAbsoluteAOB(AOBScanner.StringToAOB(aob), offsets));
 }
Exemple #2
0
 /// <summary>
 /// Create and register a new relative AOB pointer with a CE-style AOB string.
 /// </summary>
 public PHPointer RegisterRelativeAOB(string aob, int addressOffset, int instructionSize, params int[] offsets)
 {
     return(RegisterRelativeAOB(AOBScanner.StringToAOB(aob), addressOffset, instructionSize, offsets));
 }