Search found 484 matches

by LeFiXER
Sat Apr 06, 2024 10:04 pm
Forum: Cheat Engine
Topic: I want to display the value of the address specified in the description
Replies: 3
Views: 245

Re: I want to display the value of the address specified in the description

You can update the description of a memory record with Lua: local descriptionToDisplay = 'The value of address [ 00112233 ] is: ' local entry = getAddressList().getMemoryRecordByDescription('the text which is in the description section goes here') if entry then entry.Description = descriptionToDispl...
by LeFiXER
Sun Mar 31, 2024 9:15 pm
Forum: Cheat Engine
Topic: Having trouble finalizing a cheat from two consistent pointers
Replies: 9
Views: 486

Re: Having trouble finalizing a cheat from two consistent pointers

... Thanks so much LeFiXER. The above script was what I tried. I started with cheat engine a few weeks ago. And I underestimated the intricacies of scripting and the disassembler. I have no assembly knowledge. And I found the hp and inf ammo codes super quick. So I thought I could do the same and c...
by LeFiXER
Sat Mar 30, 2024 1:33 am
Forum: Cheat Engine
Topic: Having trouble finalizing a cheat from two consistent pointers
Replies: 9
Views: 486

Re: Having trouble finalizing a cheat from two consistent pointers

Here is the script Game : stdrt.exe Version: Date : 2024-03-28 Author : This script does blah blah blah } [ENABLE] aobscanmodule(INJECT,stdrt.exe,89 4E 08 5F 5E 5D 5B C3 90) // should be unique alloc(newmem,$1000) label(code) label(return) newmem: code: mov ecx,1 pop edi pop esi jmp return INJECT: ...
by LeFiXER
Thu Mar 28, 2024 5:21 pm
Forum: Cheat Engine
Topic: Having trouble finalizing a cheat from two consistent pointers
Replies: 9
Views: 486

Re: Having trouble finalizing a cheat from two consistent pointers

Select this line and click Show in disassembler: 004117A9 89 4E 08 -MOV [ESI+08],ECX Click Tools > Auto Assemble > In the new window > Template > AOB Injection. Under newmem put: mov ecx,1 Click File > Add to table. There is no need for a pointer. But if you wish to have it anyway, you can add some ...
by LeFiXER
Sun Mar 17, 2024 12:44 pm
Forum: Single Player Cheat Requests
Topic: [REQUEST] Castle Strike
Replies: 1
Views: 374

Re: [REQUEST] Castle Strike

Press the Enter key within a game and enter the respective cheat code Cheats Cheat Code | Effect -------------------------------------------------------------------------------- dutyfree | 1000 gold -------------------------------------------------------------------------------- gabriel | 1000 ore -...
by LeFiXER
Sat Mar 16, 2024 11:27 pm
Forum: Single Player Cheat Requests
Topic: Spider-Man 2002 Movie Game Enable Cheat Characters
Replies: 2
Views: 415

Re: Spider-Man 2002 Movie Game Enable Cheat Characters

I am trying to attempt to find a way to enable all the cheat characters for this game but so far i only found the Strings addresses. Not sure what to do from there. So if someone knows the whole process how to get the codes that would be very helpful. I will provide below the name of the characters...
by LeFiXER
Fri Feb 23, 2024 3:52 pm
Forum: Cheat Engine
Topic: Help create a script to find game instance
Replies: 4
Views: 1041

Re: Help create a script to find game instance

Firstly, you should make your own thread rather than hijack this one. Hell every one i made aa script that changes certain values via code injection and it works fine (dont blame me if code look clunky i made it via teplates cuz im new to aa scripts) now what i want is to easy manipulate value that ...
by LeFiXER
Fri Jan 19, 2024 8:18 am
Forum: Cheat Engine
Topic: [HELP] Updating scripts with OPCODE scans
Replies: 1
Views: 1343

Re: [HELP] Updating scripts with OPCODE scans

Why not use wildcards in your AOB?

Code: Select all

48 89 ?? ?? 48 85 FF 74 ?? 48 8B ?? 48 8B ?? ?? ?? ?? ?? 48 89 ?? ?? ?? ?? ?? 48 85 ?? 74 ?? 48 8B ??
by LeFiXER
Sat Dec 23, 2023 10:54 pm
Forum: Cheat Engine
Topic: This instruction can't be compiled[error]
Replies: 1
Views: 1942

Re: This instruction can't be compiled[error]

i need help on this please Error in line 20 (vcvtsi2ss xmm0,eax,[rsi+000005C0]) :This instruction can't be compiled im still a newbie using CE thank you :D No disrespect meant, but a newbie delving into AVX/SSE is not the wisest decision. Try this: ... mov eax,[rsi+5C0] cvtsi2ss xmm0,eax ... More i...
by LeFiXER
Sat Dec 09, 2023 11:46 pm
Forum: Single Player Cheat Requests
Topic: [Request] UNDYING
Replies: 1
Views: 404

Re: [Request] UNDYING

viewtopic.php?t=18318

First result in the search.
by LeFiXER
Sat Dec 09, 2023 3:51 pm
Forum: Tools
Topic: UNIVERSAL ADS SPEED 16x
Replies: 2
Views: 2497

Re: UNIVERSAL ADS SPEED 16x

I suppose this is useful providing adblocker doesn't prevent the ad altogether.
by LeFiXER
Sat Dec 09, 2023 1:37 pm
Forum: Tables
Topic: Tunguska: The Visitation v1.46.4 (Steam)
Replies: 42
Views: 13915

Re: Tunguska: The Visitation v1.46.4 (Steam)

It's been almost 6 months since you last replied here, any news or plans or is this abandoned? Also if you do see this 1.71-2 would be very nice, I'll wait as long as I have to. With due respect, my time is severely limited and as a result I have to prioritise what things are more important. Updati...
by LeFiXER
Thu Nov 23, 2023 9:45 pm
Forum: Single Player Cheat Requests
Topic: Cartel Tycoon 1.0.9.6363 PLEASE
Replies: 1
Views: 533

Re: Cartel Tycoon 1.0.9.6363 PLEASE

Guyroma888 wrote:
Thu Nov 23, 2023 7:32 pm
Cartel Tycoon 1.0.9.6363 PLEASE
viewtopic.php?f=2&t=6436

Once you have filled out a request properly. Members here may look into your request.
by LeFiXER
Fri Nov 03, 2023 11:08 am
Forum: Cheat Engine
Topic: infinite wood aob script Help!
Replies: 2
Views: 2091

Re: infinite wood aob script Help!

Try this: [ENABLE] aobscan(Wood,F2 49 0F 10 42 58 F2 48 0F 11 45 D8 F2 48 0F 10) // should be unique alloc(newmem,$1000,Wood) alloc(max,8) label(code) label(return) lable(max) // It's a good idea to place changes under the newmem section so that you can refer to what code is different from the origi...
by LeFiXER
Sun Oct 29, 2023 9:17 pm
Forum: Cheat Engine Lua Scripting
Topic: Script
Replies: 3
Views: 2339

Re: Script

thank you, i can run it, i don't know why..... i'm trying It's because you need to add it as a script. Click the Memory View button on the main window of Cheat Engine, In the new window that shows up click Tools on the menu and at the bottom will be Auto Assemble script. Paste the code in there, cl...