User contributions
Jump to navigation
Jump to search
- 02:34, 26 May 2021 (diff | hist) (0) Assembler (→Opcodes) (current)
- 02:33, 26 May 2021 (diff | hist) (+183) Assembler (→Opcodes)
- 04:54, 17 February 2021 (diff | hist) (+70) N Lua:writeToClipboard (Created page with "<p>writeToClipboard(text): Writes the given text to the clipboard</p>") (current)
- 04:54, 17 February 2021 (diff | hist) (+62) N Lua:readFromClipboard (Created page with "<p>readFromClipboard(): Reads the text from the clipboard</p>") (current)
- 02:29, 17 February 2021 (diff | hist) (+1) Lua:bNot
- 02:29, 17 February 2021 (diff | hist) (+97) N 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 (diff | hist) (+111) N 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 (diff | hist) (+110) N 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 (diff | hist) (+107) N 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 (diff | hist) (+107) N 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:23, 17 February 2021 (diff | hist) (+31) Lua:bOr
- 02:19, 17 February 2021 (diff | hist) (+74) N Lua:bOr (Created page with "<h2>bOr(int1, int2) : Binary Or</h2> <pre> print( bOr(1,2) ) -- 3 </pre>")
- 06:08, 6 September 2020 (diff | hist) (+500) N 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...") (current)
- 06:06, 6 September 2020 (diff | hist) (+50) Lua (→Miscellaneous)
- 05:59, 6 September 2020 (diff | hist) (+965) N 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...") (current)
- 05:54, 6 September 2020 (diff | hist) (+39) Lua (→Miscellaneous)
- 11:41, 28 August 2020 (diff | hist) (+222) N 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...") (current)
- 11:40, 28 August 2020 (diff | hist) (+263) N 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...") (current)
- 07:15, 28 August 2020 (diff | hist) (+73) N User:Ajanuw (Created page with "<p>My commonly used lua plugins: https://github.com/januwA/ce-plugins</p>") (current)
- 03:49, 28 August 2020 (diff | hist) (+8) Lua:createMemoryStream (current)
- 03:49, 28 August 2020 (diff | hist) (+314) Lua:createMemoryStream
- 03:01, 28 August 2020 (diff | hist) (+68) Lua:createMemoryStream
- 02:56, 28 August 2020 (diff | hist) (+43) Lua:createMemoryStream
- 02:55, 28 August 2020 (diff | hist) (+565) N 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...")
- 02:51, 28 August 2020 (diff | hist) (+49) Lua (→Memory)
- 01:08, 28 August 2020 (diff | hist) (+96) N Lua:getScreenWidth (Created page with "<p> <b>getScreenWidth()</b>: Returns the screen width </p> <pre> print(getScreenWidth()) </pre>") (current)
- 01:07, 28 August 2020 (diff | hist) (+98) N Lua:getScreenHeight (Created page with "<p> <b>getScreenHeight()</b>: Returns the screen height </p> <pre> print(getScreenHeight()) </pre>") (current)
- 01:05, 28 August 2020 (diff | hist) (+57) Lua:targetIs64Bit (current)
- 01:03, 28 August 2020 (diff | hist) (+60) Lua:cheatEngineIs64Bit (current)
- 01:01, 28 August 2020 (diff | hist) (+535) N 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...") (current)
- 00:41, 28 August 2020 (diff | hist) (+165) N Lua:getForegroundWindow (Created page with "<p> <b>getForegroundWindow()</b> - windowhandle : Returns the windowhandle of the topmost window </p> <pre> print( getWindowCaption( getForegroundWindow() ) ) </pre>") (current)
- 00:38, 28 August 2020 (diff | hist) (+3) Lua:getWindowProcessID (current)
- 00:37, 28 August 2020 (diff | hist) (+255) N 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 (diff | hist) (+195) N 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)...") (current)
- 00:33, 28 August 2020 (diff | hist) (+194) N 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...") (current)
- 00:29, 28 August 2020 (diff | hist) (+278) N 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 (diff | hist) (+242) N 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...") (current)
- 10:30, 21 August 2020 (diff | hist) (+321) N 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 (diff | hist) (+113) N Lua:convertKeyComboToString (Created page with "<pre> print(convertKeyComboToString(17, 65)) -- Ctrl+A print(convertKeyComboToString({17, 66})) -- Ctrl+B </pre>") (current)
- 09:27, 21 August 2020 (diff | hist) (+178) N 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>") (current)
- 09:25, 21 August 2020 (diff | hist) (+188) N 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"))...") (current)
- 06:28, 21 August 2020 (diff | hist) (+469) N 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...") (current)
- 06:27, 21 August 2020 (diff | hist) (+106) Lua:getDirectoryList (current)
- 06:22, 21 August 2020 (diff | hist) (-33) Lua:getDirectoryList
- 06:20, 21 August 2020 (diff | hist) (+75) Lua:getDirectoryList
- 06:17, 21 August 2020 (diff | hist) (+776) N 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:\\...")
- 22:52, 18 July 2020 (diff | hist) (+3) m Tutorials:Lua:ObjectOriented (→Calling Notation) (current)
- 14:56, 18 July 2020 (diff | hist) (0) m Auto Assembler Example 3 (→LUA) (current)