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).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 23:34, 11 September 2020 User account JonHalpern1427 (talk | contribs) was created
- 19:03, 11 September 2020 User account Rizki (talk | contribs) was created
- 06:08, 10 September 2020 User account HildegardBucher (talk | contribs) was created
- 03:23, 10 September 2020 User account LetaHqw4839 (talk | contribs) was created
- 00:40, 10 September 2020 User account CarltonCate7580 (talk | contribs) was created
- 17:38, 9 September 2020 User account DenisHepler478 (talk | contribs) was created
- 13:59, 9 September 2020 User account Riji (talk | contribs) was created
- 07:01, 9 September 2020 User account Kaluo (talk | contribs) was created
- 17:48, 8 September 2020 User account Alis959 (talk | contribs) was created
- 23:26, 7 September 2020 User account Duongtran88 (talk | contribs) was created
- 15:28, 7 September 2020 User account Noob (talk | contribs) was created
- 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...")
- 19:02, 5 September 2020 User account Transient (talk | contribs) was created
- 11:40, 2 September 2020 User account DannielleHarmer (talk | contribs) was created
- 07:46, 31 August 2020 Dark Byte (talk | contribs) deleted page User:MargheritaGough
- 07:45, 31 August 2020 Dark Byte (talk | contribs) blocked MargheritaGough (talk | contribs) with an expiration time of indefinite (account creation disabled)
- 20:39, 30 August 2020 User account Ross8924769 (talk | contribs) was created
- 17:23, 30 August 2020 User account Daniele25N (talk | contribs) was created
- 00:57, 30 August 2020 User account WilhelminaSloane (talk | contribs) was created
- 23:09, 29 August 2020 User account CoralSteiner (talk | contribs) was created
- 15:17, 29 August 2020 MargheritaGough (talk | contribs) created page User:MargheritaGough (Created page with "I'm Bridgett and I live in a seaside city in northern Denmark, Boeslunde. I'm 39 and I'm will soon finish my study at Earth Sciences.<br><br>Feel free to surf to my site - [ht...")
- 15:15, 29 August 2020 User account MargheritaGough (talk | contribs) was created
- 14:59, 29 August 2020 User account TemekaPenington (talk | contribs) was created
- 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...")
- 17:05, 27 August 2020 User account Superhackerpro2020 (talk | contribs) was created
- 10:19, 27 August 2020 Dark Byte (talk | contribs) deleted page User:RonnySweatman
- 10:17, 27 August 2020 Dark Byte (talk | contribs) blocked RonnySweatman (talk | contribs) with an expiration time of indefinite (account creation disabled)
- 23:51, 26 August 2020 User account KalaMellor48887 (talk | contribs) was created
- 15:35, 26 August 2020 User account EmoryWant68424 (talk | contribs) was created
- 15:33, 26 August 2020 User account MellisaBvl (talk | contribs) was created
- 09:21, 26 August 2020 RonnySweatman (talk | contribs) created page User:RonnySweatman (Created page with "Linwood Forth is the name I really to be called with and Enjoy it. Filing is what I do in my day job and I'm doing beneficial financially. To play natural stone is something s...")
- 06:35, 22 August 2020 User account RonnySweatman (talk | contribs) was created
- 01:55, 22 August 2020 User account DRPDonny125993 (talk | contribs) was created
- 14:08, 21 August 2020 Dark Byte (talk | contribs) deleted page User:SherrillHathaway
- 14:08, 21 August 2020 Dark Byte (talk | contribs) deleted page User:BIGDino485626567
- 14:08, 21 August 2020 Dark Byte (talk | contribs) deleted page User:ZADElena430
- 14:08, 21 August 2020 Dark Byte (talk | contribs) deleted page User:Madeleine6526