View previous topic :: View next topic |
Author |
Message |
PADRINO How do I cheat?
Reputation: 0
Joined: 20 Mar 2016 Posts: 2
|
|
Back to top |
|
 |
ParkourPenguin I post too much
Reputation: 152
Joined: 06 Jul 2014 Posts: 4701
|
Posted: Sun Mar 20, 2016 9:44 am Post subject: |
|
|
Use enumModules(processid OPTIONAL) to get a list of all the modules in a process and see if they have pepflashplayer32.dll or some other dll file used by flash games in them. Loop through getProcesslist() to get PIDs of all processes used by browsers.
_________________
I don't know where I'm going, but I'll figure it out when I get there. |
|
Back to top |
|
 |
PADRINO How do I cheat?
Reputation: 0
Joined: 20 Mar 2016 Posts: 2
|
Posted: Sun Mar 20, 2016 10:26 am Post subject: i have only this in my lua script |
|
|
Code: | function getPids()
local SL=createStringlist()
getProcesslist(SL)
local tempPIDtable={}
for i=0,strings_getCount(SL)-1 do
local entry = strings_getString(SL,i)
local processname = entry:sub(10,255)
local PID = tonumber('0x'..entry:sub(1,Cool)
if processname == "chrome.exe" then
if alreadycheckedPIDS[PID]~=true then
table.insert(tempPIDtable,PID)
end
end
end
object_destroy(SL)
return tempPIDtable
end
function checkProcess(sender)
timer_setEnabled(sender,false)
alreadycheckedPIDS[getOpenedProcessID()]=true
if checkProcessMajor() then
timer_setEnabled(openNextProcTimer,false)
alreadycheckedPIDS={}
enableHacks()
else
timer_setEnabled(openNextProcTimer,true)
end
end
checkProcessTimer = createTimer(nil,false)
timer_setInterval(checkProcessTimer, 100)
timer_onTimer(checkProcessTimer, checkProcess)
function onOpenProcess()
if success == 1 then return end
timer_setEnabled(checkProcessTimer,true)
end |
Last edited by PADRINO on Sun Mar 20, 2016 1:32 pm; edited 1 time in total |
|
Back to top |
|
 |
Fluffer_Nutter Advanced Cheater
Reputation: 0
Joined: 26 Feb 2015 Posts: 67
|
Posted: Sun Mar 20, 2016 1:00 pm Post subject: |
|
|
The picture you are looking at is built in C# and a C++ dll file. But if it is still coded the same way what is does is looks for a code we know never changes. So this trainer is made for WarCommander. We search for a code that never changes in the SWF file. Then we pull the main browsers and search for that code. If the code is found it will hook the browser. If it is not found.. well then it wont hook.
Do the same thing with CE. The reason you need to do a code search while hook is if you have youtube open in IE and game in Chrome it might hook IE.
Best of luck.
|
|
Back to top |
|
 |
|