User contributions
Jump to navigation
Jump to search
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)
- 01:36, 30 July 2021 (diff | hist) (-2) m Help File:sym generateAPIHookScript (current)
- 01:35, 30 July 2021 (diff | hist) (+3,502) N Help File:sym generateAPIHookScript (Created page with "==sym_generateAPIHookScript== This function takes several strings and convert it into a working ''AutoAssembler'' script. '''Function Definition''' ''BOOL sym_addressToName...")
- 01:22, 30 July 2021 (diff | hist) (+2,739) N Help File:sym addressToName (Created page with "==sym_addressToName== This function converts a ''DWORD'' representing an address to a readable string. '''Function Definition''' ''BOOL sym_addressToName (DWORD address, ch...") (current)
- 00:59, 30 July 2021 (diff | hist) (-1) m Help File:sym nameToAddress (current)
- 00:58, 30 July 2021 (diff | hist) (+2,665) N Help File:sym nameToAddress (Created page with "==sym_nameToAddress== This function converts a string to a ''DWORD''. '''Function Definition''' ''BOOL sym_nameToAddress ( char *name, DWORD *address);'' Returns ''TRUE'' i...")
- 00:57, 30 July 2021 (diff | hist) (+2,679) N Help File:GetAddressFromPointer (Created page with "==GetAddressFromPointer== This function converts a BaseAddress + Offset(s) to a final address. '''Function Definition''' ''DWORD GetAddressFromPointer(ULONG baseaddress, in...") (current)
- 00:56, 30 July 2021 (diff | hist) (+2,546) N Help File:ReloadSettings (Created page with "==ReloadSettings== This function will reload the settings from the registry and apply them to Cheat Engine. '''Function Definition''' ''BOOL ReloadSettings();'' Returns ''...") (current)
- 00:55, 30 July 2021 (diff | hist) (+2,716) N Help File:ProcessList (Created page with "==ProcessList== This function will return the ''ProcessList'' in a buffer you provide. '''Function Definition''' ''BOOL ProcessList( char *listbuffer, int listsize);'' ;''...") (current)
- 00:53, 30 July 2021 (diff | hist) (+2,655) N Help File:FixMem (Created page with "==FixMem== This function will scan the memory of CE itself for changes and fix them when possible. (Only works when the user also has the option enabled to fix memory in sett...") (current)
- 00:51, 30 July 2021 (diff | hist) (+3) m Help File:FreezeMem (current)
- 00:50, 30 July 2021 (diff | hist) (+2,643) N Help File:UnfreezeMem (Created page with "==UnfreezeMem== This function will stop the freezing of an earlier implemented frozen location '''Function Definition''' ''int UnfreezeMem( int freezeID);'' ;'''freezeID''...") (current)
- 00:48, 30 July 2021 (diff | hist) (+2,865) N Help File:FreezeMem (Created page with "==FreezeMem== This function will freeze the memory of a specific address. '''Function Definition''' ''int FreezeMem(ULONG address, int size);'' ;'''address''' :Address to...")
- 00:45, 30 July 2021 (diff | hist) (0) m Help File:InjectDLL (current)
- 00:44, 30 July 2021 (diff | hist) (+2,759) N Help File:InjectDLL (Created page with "==InjectDLL== This function will allow you to inject a DLL file using CE's injection engine. '''Function Definition''' ''BOOL InjectDLL(char *dllname, char *functiontocall)...")
- 19:55, 29 July 2021 (diff | hist) (+2,848) N Help File:ChangeRegistersAtAddress (Created page with "==ChangeRegistersAtAddress== This function will set a breakpoint at the address you specify and automatically modify the registers in the way you want. '''Function Definitio...") (current)
- 19:53, 29 July 2021 (diff | hist) (+2,905) N Help File:Disassembler (Created page with "==Disassembler== This function will allow you to give it an address and it will return the disassembled output. '''Function Definition''' ''BOOL Disassembler(ULONG address,...") (current)
- 19:50, 29 July 2021 (diff | hist) (+31) Help File:Assembler (current)
- 18:46, 29 July 2021 (diff | hist) (+3,394) N Help File:Assembler (Created page with "==Assembler== This function allows you to pass a single assembler instruction along with the address of the location you want the script to execute. It will generate bytes...")
- 18:39, 29 July 2021 (diff | hist) (+2,756) N Help File:AutoAssemble (Created page with "==AutoAssemble== This function will allow you to give it an ''Auto Assemble'' script and it will automatically inject it in the currently opened process. '''Function Defin...") (current)
- 18:36, 29 July 2021 (diff | hist) (+2,780) N Help File:GetMainWindowHandle (Created page with "==GetMainWindowHandle== This function will remove a previously registered callback function '''Function Definition''' ''HANDLE GetMainWindowHandle();'' Returns the window...") (current)
- 18:33, 29 July 2021 (diff | hist) (+2,315) m Help File:OpenedProcessHandle (current)
- 18:33, 29 July 2021 (diff | hist) (+2,315) m Help File:OpenedProcessID (current)
- 18:33, 29 July 2021 (diff | hist) (+2,315) m Help File:UnregisterFunction (current)
- 18:33, 29 July 2021 (diff | hist) (+2,314) m Help File:RegisterFunction (current)
- 18:32, 29 July 2021 (diff | hist) (+2,315) m Help File:ShowMessage (current)
- 18:32, 29 July 2021 (diff | hist) (+2,315) Help File:sizeofExportedFunctions (current)
- 18:29, 29 July 2021 (diff | hist) (+2,315) m Help File:ExportedFunctions (current)
- 18:24, 29 July 2021 (diff | hist) (+1) m Help File:OpenedProcessHandle
- 18:24, 29 July 2021 (diff | hist) (+282) N Help File:OpenedProcessHandle (Created page with "==OpenedProcessHandle== Returns a pointer to the ''HANDLE'' of the currently opened process. This ''HANDLE' is used by almost all functions. Take good care to make sure it...")
- 18:22, 29 July 2021 (diff | hist) (+250) N Help File:OpenedProcessID (Created page with "==OpenedProcessID== Returns a pointer to the ''ProcessID'' of the currently opened process. Just the process ID, but it is preferred to have both ''ID'' and ''HANDLE'' to...")
- 18:20, 29 July 2021 (diff | hist) (+453) N Help File:UnregisterFunction (Created page with "==UnregisterFunction== This function will remove a callback function that has been previously registered. '''functiondefinition''' ''BOOL UnregisterFunction(int pluginid, in...")
- 18:14, 29 July 2021 (diff | hist) (+569) N Help File:RegisterFunction (Created page with "==RegisterFunction== This function will register a callback function that is called when a certain event happens. In some cases also creates an extra menu item. '''Function...")
- 18:06, 29 July 2021 (diff | hist) (+301) N Help File:ShowMessage (Created page with "===== ShowMessage ===== ShowMessage will display a small popup window containing a user-defined message. Useful for testing that the plugin works, and for debug purposes. <p...")
- 18:04, 29 July 2021 (diff | hist) (+48) m Help File:sizeofExportedFunctions
- 18:03, 29 July 2021 (diff | hist) (+48) m Help File:ExportedFunctions
- 18:00, 29 July 2021 (diff | hist) (+517) N Help File:sizeofExportedFunctions (Created page with "<pre> int sizeofExportedFunctions; </pre> As you might have guessed, it contains the size of the structure CE has sent to your plugin. You can check if it's what you expected...")
- 17:55, 29 July 2021 (diff | hist) (+8) m Help File:ExportedFunctions
- 17:49, 29 July 2021 (diff | hist) (+2) Help File:ExportedFunctions
- 17:49, 29 July 2021 (diff | hist) (+4) Help File:ExportedFunctions
- 17:48, 29 July 2021 (diff | hist) (+6,388) N Help File:ExportedFunctions (Created page with "* Exported Functions The ExportedFunctions structure contains several pointers to useful functions in CE, and pointers to the pointers of specific functions that might be wor...")
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)