Dark Hex How do I cheat?
Reputation: 0
Joined: 13 Apr 2026 Posts: 3
|
Posted: Mon May 04, 2026 2:42 pm Post subject: How to run Cheat Engine Without window (windowsHide) |
|
|
im using Lua Engine as API for my cheat program and that all i need so i tried to hide the window
MainForm.Visible = false
MainForm.Hide()
but the CE keep popping up for sec (cuz the GUI load before the lua Engine)
so there is any way to run Lua Engine with out the gui or runing the CE with out GUI?
im using Js to run the CE
const ceProcess = spawn(`start /min "" ${cePath}`, [], {
detached: true,
stdio: 'ignore',
windowsHide: true,
shell: true
});
windowsHide: true , dosent have any effect
|
|