Search found 170 matches

by Eric
Thu Jan 26, 2023 6:19 am
Forum: Cheat Engine
Topic: [bug?] Custom syntax highlighting colors keeps resetting
Replies: 3
Views: 2400

Re: [bug?] Custom syntax highlighting colors keeps resetting

depends on the bugreports for the last beta and then approval time from the advertisers.

soon
by Eric
Sat Jan 07, 2023 1:37 pm
Forum: Cheat Engine
Topic: Ignore exception
Replies: 8
Views: 3814

Re: Ignore exception

do you have an example sourcecode because I can not reproduce it with `RaiseException(DBG_PRINTEXCEPTION_WIDE_C/*0x4001000A*/, 0, 4, args);` not even the windows debugger interface triggers this one but you can ignore exceptions. in memview go to debug and set break on unexpected exceptions to never...
by Eric
Wed Oct 26, 2022 2:17 pm
Forum: Cheat Engine Lua Scripting
Topic: Get Auto Assemble Edit Form
Replies: 8
Views: 6718

Re: Get Auto Assemble Edit Form

there's the CE sourcecode. You can ready through the .lfm and get the name property of the control you need
by Eric
Mon Oct 24, 2022 8:01 pm
Forum: Cheat Engine Lua Scripting
Topic: Get Auto Assemble Edit Form
Replies: 8
Views: 6718

Re: Get Auto Assemble Edit Form

Lefixer seems to be on CE 7.4.1 which is the only version where AutoInject1 is at that position
It's better to get the name of the control, e.g:

Code: Select all

aa=getMemoryViewForm().AutoInject1
aa.doClick()
by Eric
Mon Aug 22, 2022 9:35 pm
Forum: Cheat Engine
Topic: Turn off Mono and the game crash
Replies: 3
Views: 1853

Re: Turn off Mono and the game crash

Are you on mac or windows ?

Does it still crash when you attach using the lua command LaunchMonoDataCollector(false) and then disconnect ?
what happens if you do LaunchMonoDataCollector(true) and then disconnect ?
by Eric
Wed Aug 10, 2022 10:40 am
Forum: App Discussions
Topic: Cheat Engine Download/Information
Replies: 143
Views: 445380

Re: Cheat Engine Download/Information

all what i get is error and virus warning on downloading = no download at all......... The virus is Cheat Engine itself, not the ads: https://www.youtube.com/watch?v=v7QsS5qp0og I do not support previous versions. If there is an issue, I will fix it in the current version. Going to older versions j...
by Eric
Tue Aug 09, 2022 7:58 pm
Forum: App Discussions
Topic: Cheat Engine Download/Information
Replies: 143
Views: 445380

Re: Cheat Engine Download/Information

Archerodees wrote:
Sun Aug 07, 2022 3:37 pm
Thanks. One last question, I read the public version doesn't allow you to install where you want to, does the patreon download allow you to do that?
yup, just install it wherever
predatory cashgrabbing
If you click on decline, I don't get a single cent.
by Eric
Thu Jul 21, 2022 7:09 pm
Forum: Cheat Engine
Topic: Suggestion and request.
Replies: 2
Views: 1081

Re: Suggestion and request.

i'm not sure if stn did, but I have and it's most of the time just a waste of time, and other times you're going to end up with a locked GUI where you can't close windows if the timer is too low (yes, this is why ) You could create a thread in the target process that constantly writes it, but it's b...
by Eric
Tue Jul 19, 2022 7:21 am
Forum: Cheat Engine
Topic: Can't seem to install CE anymore
Replies: 3
Views: 1752

Re: Can't seem to install CE anymore

This decade old solution still works: uninstall that anti virus and restart windows to make sure it's really gone
by Eric
Tue Mar 15, 2022 6:05 pm
Forum: Cheat Engine
Topic: Helping me to get beyond x255 multiplier with mul
Replies: 18
Views: 3086

Re: Helping me to get beyond x255 multiplier with mul

yes, and also save rdx as imul will change that register as well
by Eric
Tue Mar 15, 2022 3:03 pm
Forum: Cheat Engine
Topic: Helping me to get beyond x255 multiplier with mul
Replies: 18
Views: 3086

Re: Helping me to get beyond x255 multiplier with mul

I tried to put animamult: here but upon doing so that script would be a tad buggy I can "activate the cheat" but I can not use the registersymbol animamult and it won't be marked as activated on the table so you can activate the script, but it won't be marked in the table ? also why can't you use r...
by Eric
Sat Feb 12, 2022 7:18 pm
Forum: Cheat Engine
Topic: can i delete ceregreset.exe
Replies: 6
Views: 5251

Re: can i delete ceregreset.exe

You can delete it. You just need to use windows regedit to delete the cheat engine registry yourself when you have to. (e.g when the window positions get out of your desktop range and their positions get saved) Here's the sourcecode: https://github.com/cheat-engine/cheat-engine/blob/master/Cheat%20E...
by Eric
Sun Dec 19, 2021 8:38 am
Forum: General Gamehacking
Topic: Finding any other way to split the player from the AI in RTS Games
Replies: 1
Views: 6387

Re: Finding any other way to split the player from the AI in RTS Games

Try the commonality scanner enter the base addresses of all enemy and all yours and let it scan then check the results for things you can use you can also start the scanner from the "find out what addresses this code accesses" use it on the code that accesses health then rightclick your units and ma...
by Eric
Wed Dec 01, 2021 2:36 pm
Forum: Cheat Engine Lua Scripting
Topic: registerLuaFunctionHighlight
Replies: 4
Views: 6618

Re: registerLuaFunctionHighlight

it says functionname, not function

You use it like this:

Code: Select all

function myfunction()
end
registerLuaFunctionHighlight('myfunction')
from then on when you type myfunction in lua it will get highlighted as a function
by Eric
Tue Nov 30, 2021 1:29 pm
Forum: Cheat Engine
Topic: Can you please check my pointer script why it's crashing
Replies: 9
Views: 10870

Re: Can you please check my pointer script why it's crashing

or: [ENABLE] alloc(newmem,2048) label(returnhere) label(originalcode) label(exit) label(invalid) globalalloc(_health,4) newmem: push eax {$try} mov eax,["game.exe"+00C23CA0] // main pointer test eax,eax je invalid mov eax , [eax+0] // first offset 0 test eax,eax je invalid mov eax , [eax+40] // seco...