Tomorrow.
(and the compile it yourself version is always there)
Search found 159 matches
- Mon Feb 13, 2023 3:41 pm
- Forum: App Discussions
- Topic: Cheat Engine Download/Information
- Replies: 127
- Views: 3061761
- Tue Feb 07, 2023 9:03 am
- Forum: Cheat Engine Lua Scripting
- Topic: Add a value into the script
- Replies: 2
- Views: 1277
Re: Add a value into the script
Nerdy: Aaactually....
will result in invalid code as the value in `mov [memoryaddress],value` can only be 32-bits
you'd want to do:
or
Code: Select all
mov [rbx],(double)100
you'd want to do:
Code: Select all
mov [rbx],(double32l)100
mov [rbx+4],(double32h)100
Code: Select all
mov rax,(double)100
mov [rbx],rax
- Sat Feb 04, 2023 9:02 pm
- Forum: Cheat Engine
- Topic: Ignore exception
- Replies: 8
- Views: 984
Re: Ignore exception
it's fixed
- Sat Jan 28, 2023 11:43 pm
- Forum: Cheat Engine
- Topic: Ignore exception
- Replies: 8
- Views: 984
Re: Ignore exception
does the error occur in a newly created thread or in an old thread?
there was a bug where new threads would get the wrong context set on exception
there was a bug where new threads would get the wrong context set on exception
- Thu Jan 26, 2023 6:19 am
- Forum: Cheat Engine
- Topic: [bug?] Custom syntax highlighting colors keeps resetting
- Replies: 3
- Views: 689
Re: [bug?] Custom syntax highlighting colors keeps resetting
depends on the bugreports for the last beta and then approval time from the advertisers.
soon
soon
- Sat Jan 07, 2023 1:37 pm
- Forum: Cheat Engine
- Topic: Ignore exception
- Replies: 8
- Views: 984
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...
- Wed Oct 26, 2022 2:17 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Get Auto Assemble Edit Form
- Replies: 8
- Views: 1769
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
- Mon Oct 24, 2022 8:01 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Get Auto Assemble Edit Form
- Replies: 8
- Views: 1769
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:
It's better to get the name of the control, e.g:
Code: Select all
aa=getMemoryViewForm().AutoInject1
aa.doClick()
- Mon Aug 22, 2022 9:35 pm
- Forum: Cheat Engine
- Topic: Turn off Mono and the game crash
- Replies: 3
- Views: 1576
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
what happens if you do
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 ?- Wed Aug 10, 2022 10:40 am
- Forum: App Discussions
- Topic: Cheat Engine Download/Information
- Replies: 127
- Views: 3061761
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...
- Tue Aug 09, 2022 7:58 pm
- Forum: App Discussions
- Topic: Cheat Engine Download/Information
- Replies: 127
- Views: 3061761
Re: Cheat Engine Download/Information
yup, just install it whereverArcherodees wrote: ↑Sun Aug 07, 2022 3:37 pmThanks. 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?
If you click on decline, I don't get a single cent.predatory cashgrabbing
- Thu Jul 21, 2022 7:09 pm
- Forum: Cheat Engine
- Topic: Suggestion and request.
- Replies: 2
- Views: 865
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...
- Tue Jul 19, 2022 7:21 am
- Forum: Cheat Engine
- Topic: Can't seem to install CE anymore
- Replies: 3
- Views: 1429
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
- Tue Mar 15, 2022 6:05 pm
- Forum: Cheat Engine
- Topic: Helping me to get beyond x255 multiplier with mul
- Replies: 18
- Views: 2551
Re: Helping me to get beyond x255 multiplier with mul
yes, and also save rdx as imul will change that register as well
- Tue Mar 15, 2022 3:03 pm
- Forum: Cheat Engine
- Topic: Helping me to get beyond x255 multiplier with mul
- Replies: 18
- Views: 2551
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...