All public logs

Jump to navigation Jump to search

Combined display of all available logs of Cheat Engine. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
 
 
 
  • 04:54, 17 February 2021 Ajanuw (talk | contribs) created page Lua:writeToClipboard (Created page with "<p>writeToClipboard(text): Writes the given text to the clipboard</p>")
  • 04:54, 17 February 2021 Ajanuw (talk | contribs) created page Lua:readFromClipboard (Created page with "<p>readFromClipboard(): Reads the text from the clipboard</p>")
  • 02:29, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bNot (Created page with "<h2>bNot(int) : Binary not</h2> <pre> -- ~1 print( bNot(1) ) -- 2 0001 ----- 1110 </pre>")
  • 02:27, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bShr (Created page with "<h2>bShr(int, int2) : Binary shift right</h2> <pre> -- 1 >> 1 print( bShr(1,1) ) -- 0 0001 ----- 0000 </pre>")
  • 02:26, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bShl (Created page with "<h2>bShl(int, int2) : Binary shift left</h2> <pre> -- 1 << 1 print( bShl(1,1) ) -- 2 0001 ----- 0010 </pre>")
  • 02:25, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bAnd (Created page with "<h2>bAnd(int1, int2) : Binary And</h2> <pre> -- 1 & 2 print( bAnd(1,2) ) -- 0 0001 0010 ----- 0000 </pre>")
  • 02:24, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bXor (Created page with "<h2>bXor(int1, int2) : Binary Xor</h2> <pre> -- 1 ^ 2 print( bXor(1,2) ) -- 3 0001 0010 ----- 0011 </pre>")
  • 02:19, 17 February 2021 Ajanuw (talk | contribs) created page Lua:bOr (Created page with "<h2>bOr(int1, int2) : Binary Or</h2> <pre> print( bOr(1,2) ) -- 3 </pre>")
  • 06:08, 6 September 2020 Ajanuw (talk | contribs) created page Lua:executeCodeLocalEx (Created page with "<b>executeCodeLocalEx(address, {type=x,value=param1} or param1,{type=x,value=param2} or param2,...)</b> <p>Calls a function using the given callmethod and parameters</p> <p>If...")
  • 05:59, 6 September 2020 Ajanuw (talk | contribs) created page Lua:executeCodeEx (Created page with "<b>executeCodeEx(callmethod, timeout, address, {type=x,value=param1} or param1,{type=x,value=param2} or param2,...)</b> <pre> callmethod: 0=stdcall, 1=cdecl timeout: Numb...")
  • 11:41, 28 August 2020 Ajanuw (talk | contribs) created page Lua:executeCodeLocal (Created page with "<p><b>executeCodeLocal(addres, parameter OPTIONAL): address</b> - Executes a stdcall function with 1 parameter at the given address in the target process. The return value is...")
  • 11:40, 28 August 2020 Ajanuw (talk | contribs) created page Lua:executeCode (Created page with "<p><b>executeCode(address, parameter OPTIONAL, timeout OPTIONAL) : address</b> - Executes a stdcall function with 1 parameter at the given address in the target process and w...")
  • 07:15, 28 August 2020 Ajanuw (talk | contribs) created page User:Ajanuw (Created page with "<p>My commonly used lua plugins: https://github.com/januwA/ce-plugins</p>")
  • 02:55, 28 August 2020 Ajanuw (talk | contribs) created page Lua:createMemoryStream (Created page with "<h3>Example 1</h3> <pre> m = createMemoryStream() m.Size = 8 m.Position = 0 print("addr: ", m.Memory) writeIntegerLocal(m.Memory, 1) print( readIntegerLocal(m.Memory) ) -- 1...")
  • 01:08, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getScreenWidth (Created page with "<p> <b>getScreenWidth()</b>: Returns the screen width </p> <pre> print(getScreenWidth()) </pre>")
  • 01:07, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getScreenHeight (Created page with "<p> <b>getScreenHeight()</b>: Returns the screen height </p> <pre> print(getScreenHeight()) </pre>")
  • 01:01, 28 August 2020 Ajanuw (talk | contribs) created page Lua:sendMessage (Created page with "<p> <b>sendMessage(hwnd, msg, wparam, lparam)</b>: result - Sends a message to a window. Those that wish to use it, should know how to use it (and fill in the msg id's yoursel...")
  • 00:41, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getForegroundWindow (Created page with "<p> <b>getForegroundWindow()</b> - windowhandle : Returns the windowhandle of the topmost window </p> <pre> print( getWindowCaption( getForegroundWindow() ) ) </pre>")
  • 00:37, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getWindowProcessID (Created page with "<p><b>getWindowProcessID(windowhandle)<\b>: processid - Returns the processid of the process this window belongs to</p> <pre> local hwnd = findWindow("WTWindow", "Game") local...")
  • 00:34, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getWindowClassName (Created page with "<p><b>getWindowClassName(windowhandle)</b>: string - Returns the classname of the window</p> <pre> local hwnd = findWindow("WTWindow", "Game") print( getWindowClassName(hwnd)...")
  • 00:33, 28 August 2020 Ajanuw (talk | contribs) created page Lua:getWindowCaption (Created page with "<p><b>getWindowCaption(windowhandle)</b> : string - Returns the caption of the window</p> <p></p> <pre> local hwnd = findWindow("WTWindow", "Game") print( getWindowCaption(hwn...")
  • 00:29, 28 August 2020 Ajanuw (talk | contribs) created page Lua:findWindow (Created page with "<p><b>findWindow(classname OPTIONAL, caption OPTIONAL)</b>: windowhandle - Finds a window with the given classname and/or windowname</p> <p>https://docs.microsoft.com/en-us/wi...")
  • 00:21, 28 August 2020 Ajanuw (talk | contribs) created page Lua:mouse event (Created page with "<div> The Windows' API "mouse_event". https://msdn.microsoft.com/en-us/library/windows/desktop/ms646260(v=vs.85).aspx </div> <pre> setMousePos(659,573) mouse_event(MOUSEEV...")
  • 10:30, 21 August 2020 Ajanuw (talk | contribs) created page Lua:getPropertyList (Created page with "getPropertyList(class) : Returns a stringlist object containing all the published properties of the specified class (free the list when done) (Note, not all classed with prope...")
  • 09:29, 21 August 2020 Ajanuw (talk | contribs) created page Lua:convertKeyComboToString (Created page with "<pre> print(convertKeyComboToString(17, 65)) -- Ctrl+A print(convertKeyComboToString({17, 66})) -- Ctrl+B </pre>")
  • 09:27, 21 August 2020 Ajanuw (talk | contribs) created page Lua:shortCutToText (Created page with "<pre> print(shortCutToText(65)) -- A print(shortCutToText(38)) -- Up print(shortCutToText(40)) -- Down print(shortCutToText(37)) -- Left print(shortCutToText(39)) -- Right </pre>")
  • 09:25, 21 August 2020 Ajanuw (talk | contribs) created page Lua:textToShortCut (Created page with "<pre> print(textToShortCut("A")) -- 65 print(textToShortCut("up")) -- 38 print(textToShortCut("down")) -- 40 print(textToShortCut("left")) -- 37 print(textToShortCut("right"))...")
  • 06:28, 21 August 2020 Ajanuw (talk | contribs) created page Lua:getFileList (Created page with "getFileList(Path:string, searchMask:string OPTIONAL, SearchSubDirs: boolean OPTIONAL, DirAttrib: integer OPTIONAL): Returns an indexed table with filenames <pre> r = getFileLi...")
  • 06:17, 21 August 2020 Ajanuw (talk | contribs) created page Lua:getDirectoryList (Created page with "r = getDirectoryList("C:\\CE\\autorun", true) require 'pl.pretty'.dump(r) { "C:\\CE\\autorun\\ce-plugins", "C:\\CE\\autorun\\ceshare", "C:\\CE\\autorun\\dlls", "C:\\...")
  • 03:44, 21 June 2020 User account Ajanuw (talk | contribs) was created