Search found 491 matches
- Thu Dec 05, 2024 8:08 pm
- Forum: Cheat Engine Lua Scripting
- Topic: Get ID or Index of current Memory Record
- Replies: 9
- Views: 8654
Re: Get ID or Index of current Memory Record
Here's one way you can do it: local function getSelectedRecordIDs() local tmp = {} for i = 0, AddressList.Count - 1 do if AddressList[i].Selected then table.insert(tmp, AddressList[i].ID) end end return tmp end local function getSelectedRecordID() local selectedRecord = AddressList.SelectedRecord lo...
- Sun Nov 03, 2024 11:43 pm
- Forum: Single Player Cheat Requests
- Topic: [REQUEST] The Last Man Survivor (Steam Version)
- Replies: 3
- Views: 699
- Sun Nov 03, 2024 11:43 pm
- Forum: Tables
- Topic: [Steam] The Last Man Survivor
- Replies: 1
- Views: 651
[Steam] The Last Man Survivor
https://store.steampowered.com/app/2250080/The_Last_Man_Survivor/ Options: Toggle God Mode Mining Resource Modifier These cheats may or may not work for you. I can't guarantee it will work for everybody. The most common issues people run into if the cheats don't work, or activate for you, is because...
- Sat Oct 05, 2024 1:04 pm
- Forum: Tables
- Topic: God of War Ragnarök
- Replies: 80
- Views: 44749
Re: God of War Ragnarök
I'm pretty sure he meant the gear spawner (which is the main feature that isn't yet available on other trainers yet), the table linked on here doesn't have that option. You have to pay for his patreon to get the build with said feature. That said, there's no reason to be snarky. Just to clarify, I’...
- Thu Sep 26, 2024 8:48 pm
- Forum: Tables
- Topic: God of War Ragnarök
- Replies: 80
- Views: 44749
Re: God of War Ragnarök
It is a resource, not equipment.DarknessYGO wrote: ↑Thu Sep 26, 2024 7:38 pmI put the cheat to get Black Bear armor, but it doesn't show how it works to put on armor
- Mon Sep 23, 2024 3:58 pm
- Forum: Tables
- Topic: God of War Ragnarök
- Replies: 80
- Views: 44749
Re: God of War Ragnarök
Shame the best part,is patreon only.... Well, it's not Patreon-only. Hence why you see the thread with a download to the table here. That said, if you have nothing else to add to the discussion then I suggest you refrain from posting such comments because it bears no relevance to the topic. Moreove...
- Mon Sep 02, 2024 4:06 pm
- Forum: Cheat Engine
- Topic: Direct Process Linked CE
- Replies: 1
- Views: 2348
Re: Direct Process Linked CE
Use a script:
Code: Select all
[ENABLE]
{$LUA}
if syntaxcheck then return end
local speedToSetTo = 2.0
openProcess('<enter_process_name_here>.exe')
speedhack_setSpeed(speedToSetTo)
{$ASM}
[DISABLE]
{$LUA}
if syntaxcheck then return end
speedhack_setSpeed(1.0)
- 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: 2732
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...
- Sun Mar 31, 2024 9:15 pm
- Forum: Cheat Engine
- Topic: Having trouble finalizing a cheat from two consistent pointers
- Replies: 9
- Views: 4152
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...
- Sat Mar 30, 2024 1:33 am
- Forum: Cheat Engine
- Topic: Having trouble finalizing a cheat from two consistent pointers
- Replies: 9
- Views: 4152
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: ...
- Thu Mar 28, 2024 5:21 pm
- Forum: Cheat Engine
- Topic: Having trouble finalizing a cheat from two consistent pointers
- Replies: 9
- Views: 4152
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 ...
- Sun Mar 17, 2024 12:44 pm
- Forum: Single Player Cheat Requests
- Topic: [REQUEST] Castle Strike
- Replies: 1
- Views: 688
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 -...
- Sat Mar 16, 2024 11:27 pm
- Forum: Single Player Cheat Requests
- Topic: Spider-Man 2002 Movie Game Enable Cheat Characters
- Replies: 2
- Views: 864
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...
- Fri Feb 23, 2024 3:52 pm
- Forum: Cheat Engine
- Topic: Help create a script to find game instance
- Replies: 5
- Views: 5492
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 ...
- Fri Jan 19, 2024 8:18 am
- Forum: Cheat Engine
- Topic: [HELP] Updating scripts with OPCODE scans
- Replies: 1
- Views: 3552
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 ??