Rebornbuddy
|
Extension methods and utility functions for FF14Bot. More...
Static Public Member Functions | |
static string | ByteArrayToString (byte[] ba) |
Converts a byte array to its hexadecimal string representation. | |
static T | NoCacheRead< T > (this ExternalProcessMemory mem, IntPtr address) |
Reads data from memory with caching temporarily disabled. | |
static T[] | ReadNativeVector< T > (this ExternalProcessMemory gg, IntPtr address) |
Reads a native vector from memory at the specified address. | |
static T[] | ReadNativeVector< T > (this ExternalProcessMemory gg, NativeVector nativeVector) |
Reads a native vector from memory using the provided native vector structure. | |
static T[] | ReadNativeVector< T > (this ExternalProcessMemory gg, NativeVectorV2< T > nativeVector) |
Reads a V2 native vector from memory using the provided native vector structure. | |
static T[] | ReadNativeVector< T > (this ExternalProcessMemory gg, NativeVectorV3< T > nativeVector) |
Reads a V3 native vector from memory using the provided native vector structure. |
Extension methods and utility functions for FF14Bot.
|
static |
Converts a byte array to its hexadecimal string representation.
ba | The byte array to convert. |
|
static |
Reads data from memory with caching temporarily disabled.
T | The type of data to read. |
mem | The external process memory instance. |
address | The memory address to read from. |
T | : | struct |
|
static |
Reads a native vector from memory at the specified address.
T | The type of elements in the vector. |
gg | The external process memory instance. |
address | The memory address of the native vector. |
T | : | struct |
|
static |
Reads a native vector from memory using the provided native vector structure.
T | The type of elements in the vector. |
gg | The external process memory instance. |
nativeVector | The native vector structure containing the vector information. |
T | : | struct |
|
static |
Reads a V2 native vector from memory using the provided native vector structure.
T | The type of elements in the vector. |
gg | The external process memory instance. |
nativeVector | The V2 native vector structure containing the vector information. |
T | : | struct |
|
static |
Reads a V3 native vector from memory using the provided native vector structure.
T | The type of elements in the vector. |
gg | The external process memory instance. |
nativeVector | The V3 native vector structure containing the vector information. |
T | : | struct |