View previous topic :: View next topic |
Author |
Message |
24quant42 Cheater
Reputation: 0
Joined: 19 Apr 2023 Posts: 31
|
Posted: Mon Jan 13, 2025 12:39 pm Post subject: Can someone write a script to turn Kernel mode |
|
|
Can someone write a script to turn on all these jackdaws at the touch of a button, otherwise I'm tired of turning it on and off every time.
Use the following CE Kernel routines instead of the original windows version:
Query memory region routines
Read/Write Process Memory (Will cause slower scans)
Open Process
Enable use of the Process Watcher
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3321
|
Posted: Mon Jan 13, 2025 12:41 pm Post subject: |
|
|
Settings should be saved. Which CE version is it?
|
|
Back to top |
|
 |
24quant42 Cheater
Reputation: 0
Joined: 19 Apr 2023 Posts: 31
|
Posted: Tue Jan 14, 2025 12:28 pm Post subject: |
|
|
Csimbi wrote: | Settings should be saved. Which CE version is it? |
7.5
you can get me script?
|
|
Back to top |
|
 |
Csimbi I post too much
Reputation: 97
Joined: 14 Jul 2007 Posts: 3321
|
Posted: Tue Jan 14, 2025 1:37 pm Post subject: |
|
|
Settings should be saved, no need to turn them one and off all the time.
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Tue Jan 14, 2025 5:45 pm Post subject: |
|
|
Code: |
dbk_initialize()
dbk_useKernelmodeOpenProcess()
dbk_useKernelmodeProcessMemoryAccess()
dbk_useKernelmodeQueryMemoryRegions()
|
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
AylinCE Grandmaster Cheater Supreme
Reputation: 37
Joined: 16 Feb 2017 Posts: 1516
|
Posted: Wed Jan 15, 2025 10:18 am Post subject: |
|
|
If this doesn't work, you can add the functions given by @DarkByte to the activation section of the code.
Superficially, you can activate and deactivate it with the "F8" key while in this state.
Code: | function dbk_saved(s)
-- settings form enabled:
sf = getSettingsForm()
--Query memory region routines
sf.cbKernelQueryMemoryRegion.State=s
--Read/Write Process Memory (Will cause slower scans)
sf.cbKernelReadWriteProcessMemory.State=s
--Open Process
sf.cbKernelOpenProcess.State=s
--Enable use of the Process Watcher
sf.cbProcessWatcher.State=s
--settings reg save:
set = getSettings()
set['Use dbk32 OpenProcess'] = s
set['Use dbk32 QueryMemoryRegionEx'] = s
set['Use dbk32 ReadWriteProcessMemory'] = s
set['Use Processwatcher'] = s
reloadSettingsFromRegistry()
end
-- true
-- dbk_saved("1")
-- false
-- dbk_saved("0")
if db_hk then db_hk.Destroy() db_hk=nil end
local stt = 0
db_hk=createHotkey(function()
sleep(200)
if stt==0 then
dbk_saved("1") stt=1
else
dbk_saved("0") stt=0
end
end, VK_F8) |
Of course, if you are not sure whether this code runs the relevant sections, I think you can ask for @DarkByte's idea or addition of a reference to this code.
_________________
|
|
Back to top |
|
 |
|