Skip to content

Instantly share code, notes, and snippets.

@robb83
robb83 / archean.autocraft.xc
Last active July 6, 2024 10:10
Archean - Auto Crafter Script
; COMPUTER PORTS
var $container = 0
var $crafter = 1
var $recipes : text
storage var $resources : text
var $items : text
var $selected_category = ""
var $selected_page = 0
@robb83
robb83 / ce_hook_network.lua
Last active June 13, 2022 07:47
Cheat Engine Scripts
-- Simple network hook script
addressOfSend = getAddress("WS2_32.send")
addressOfGetStatus1 = getAddress("Kernel32.GetQueuedCompletionStatus")
addressOfGetStatus2 = getAddress("Kernel32.GetQueuedCompletionStatusEx")
addressOfCreateIoCompletionPort = getAddress("Kernel32.CreateIoCompletionPort")
print(string.format("WS2_32.send = %x, Kernel32.GetQueuedCompletionStatus = %x, Kernel32.GetQueuedCompletionStatusEx = %x, Kernel32.CreateIoCompletionPort = %x", addressOfSend, addressOfGetStatus1, addressOfGetStatus2, addressOfCreateIoCompletionPort))
debug_removeBreakpoint(addressOfSend)
debug_removeBreakpoint(addressOfGetStatus1)
debug_removeBreakpoint(addressOfGetStatus2)