A Plague Tale: Requiem

Upload your cheat tables here (No requests)
User avatar
cfemen
RCE Fanatics
RCE Fanatics
Posts: 879
Joined: Fri Feb 15, 2019 5:45 pm
Reputation: 1518

A Plague Tale: Requiem

Post by cfemen »

Hey,

Attached is a table that allows to toggle 3 global cheat flags:
-God?
-Undetectable?
-Unlimited Ammo?

Set the pointers to 1 to enable!
I would not recommend to have them activated all the time, e.g the God flag will bypass any event that would kill the player!
Only use it if you need it!

If you have the Epic Store Version -> Patcher to enable the console from SunBeam

In case you have the Windows-Store or Steam Version, download the newest table and you find a Toggle Console script.
Note : don't close the console window, if you close it the game will also close, disable the script to close the console.
Note 2: if you have activated Toggle Console you might have to "search" for the console window ( e.g use alt+tab or hover over the game in the task-bar )

Yes its normal that the console log window is always empty!

Commands for the console that are tested and working fine:
pi = toggle player invincible
pu = toggle player undetectable
SC_SET_PLAYER_INVINCIBLE x = replace x with 1 to enable and 0 to disable
RestartCheckpoint = forces the game to reload last checkpoint
KillPlayer = instant kill yourself
KillNearestEnemy = kills nearest humanoid enemy ( e.g Guards )
AddBulkCraftMaterials x = fills your inventory with x-amount of all crafting materials - if you don't specify x the game will fill it up to the max.
AddBulkCraftBaseAmmo x = fills your inventory with x-amount of all throwable items ( e.g Pots and Knifes ) - if you don't specify x the game will fill it up to the max
AddBulkCraftMaterialsAndBaseAmmo = fills your inventory with all throwable items and materials to the max.
AddBulkAmmo = fills you inventory throwables to the max, it also does add elemantal ammo ( e.g Ignifier )
UnlockAllChapters = you can choose to start a game from any chapter
UnlockAllCodexEntries = does what it says - use on own risk!
UnlockAllCreationSkills = unlocks the upgrade section - use on own risk!
UnlockAll = it unlocks all ( upgrades, all weapons and crafts, codex ) - use on own risk!

If you want to add specific items look at the post from SunBeam
How to add skill experience with SC_GiveExperience -> examples by SunBeam

I've a big list list of dumped commands here on [Link], in case you are interested go ahead and try out commands yourself :)

Table is tested on the Windows-Store & EGS version!

Tables/Scripts from other Users : ndck76

BR
cfemen

//

Added a table with the Unlimited Ammo flag, thanks SunBeam!

//

Another Update: SunBeam made a Bypass Inventory Maxes script.
This allows to pick-up stuff even if the inventory is full :)

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
APlagueTaleRequiem_x64.CT
1.0.0
God & Undetectable & Unlimited Ammo
+Console Toggle Script
+Bypass Inventory Maxes
(5.46 KiB) Downloaded 11449 times
APlagueTaleRequiem_x64.CT
1.0.0
God & Undetectable & Unlimited Ammo
+Console Toggle Script
(2.62 KiB) Downloaded 855 times
APlagueTaleRequiem_x64.CT
1.0.0
God & Undetectable
+Console Toggle Script
(2.08 KiB) Downloaded 883 times
APT2_WinStore.x64.Submission.CT
1.0.0
God & Undetectable
(1.41 KiB) Downloaded 2063 times
Last edited by cfemen on Wed Oct 19, 2022 4:00 pm, edited 13 times in total.

ndck76
Expert Cheater
Expert Cheater
Posts: 712
Joined: Thu Jun 27, 2019 7:05 am
Reputation: 6

Re: A Plague Tale: Requiem

Post by ndck76 »

Just a simple scripts for Item/Ingredient. Playing on GoG version. Click on the Code: Select All and right click on the highlighted text and select copy. Then just right click and select paste it on @cfemen's table and save it.

Note: If you want to upgrade, use the 'Increase Items and ingredients' cheat. I mainly use this cheat and seldom used the other one because sometimes the items may reset itself back to 1 when moving to the next chapter.
Infinite Items/Crafting/Upgrades Cheats

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>22</ID>
      <Description>"Increasing Items &amp; Ingredients {Use this if you have only 1 quantity item in possession}"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>// Game Executable   : APlagueTaleRequiem_x64.exe
// Author            : ndck76
// Executable Version: 1.0.0.0
// Game Version      : v1.0.0.0
// Script Date       : 2022-10-18

[ENABLE]

aobscanmodule(items2,$process,8B 48 40 2B CE)
alloc(newmem,$1000,items2)

label(code)
label(return)

newmem:

code:
  mov ecx,[rax+40]
  add ecx,esi
  jmp return

items2:
  jmp newmem
return:
registersymbol(items2)

[DISABLE]

items2:
  db 8B 48 40 2B CE

unregistersymbol(*)
dealloc(*)

</AssemblerScript>
    </CheatEntry>
    <CheatEntry>
      <ID>20</ID>
      <Description>"Infinite Items &amp; Ingredients {Use this if have an items more than 2 quantity}"</Description>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>// Game Executable   : APlagueTaleRequiem_x64.exe
// Author            : ndck76
// Executable Version: 1.0.0.0
// Game Version      : v1.0.0.0
// Script Date       : 2022-10-18

[ENABLE]

aobscanmodule(items,$process,8B ** ** 2B ** 89 ** ** 48 8B ** ** ** 48 8B)
alloc(newmem,$1000,items)

label(itemsbkp)
label(return)

newmem:
  mov [rax+40],(int)11

itemsbkp:
  readmem(items,5)
  jmp return

items:
  jmp newmem
return:
registersymbol(items)
registersymbol(itemsbkp)

[DISABLE]

items:
  readmem(itemsbkp,5)

unregistersymbol(*)
dealloc(*)

</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Nice work on finding the God & Undetected cheats, Cfemen.
Last edited by ndck76 on Wed Oct 19, 2022 4:53 am, edited 3 times in total.

User avatar
cfemen
RCE Fanatics
RCE Fanatics
Posts: 879
Joined: Fri Feb 15, 2019 5:45 pm
Reputation: 1518

Re: A Plague Tale: Requiem

Post by cfemen »

ndck76 wrote:
Tue Oct 18, 2022 8:43 am
~
There is also a Console :)
Image

I also dumped the commands e.g
SC_ADDMaTERIALSFORAMMO
SC_ADDMATERIaLSFORUPGRADE
KillPlayer
UnlockAllCreationSkills
RestartCheckpoint
KillNearestEnemy
AddBulkCraftMaterials
AddBulkAmmo ( refills the inventory with throw stuff like Pots and Knifes)
+more commands :D

User avatar
SunBeam
Administration
Administration
Posts: 4796
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4418

Re: A Plague Tale: Requiem

Post by SunBeam »

^ You. Need to sleep. NAO!

cziter314
Noobzor
Noobzor
Posts: 6
Joined: Sun Feb 06, 2022 7:58 pm
Reputation: 0

Re: A Plague Tale: Requiem

Post by cziter314 »

cfemen wrote:
Tue Oct 18, 2022 9:08 am
ndck76 wrote:
Tue Oct 18, 2022 8:43 am
~
There is also a Console :)
Image

I also dumped the commands e.g
SC_ADDMaTERIALSFORAMMO
SC_ADDMATERIaLSFORUPGRADE
KillPlayer
UnlockAllCreationSkills
RestartCheckpoint
KillNearestEnemy
AddBulkCraftMaterials
AddBulkAmmo ( refills the inventory with throw stuff like Pots and Knifes)
+more commands :D
Could you please explain how to use this console?

User avatar
SunBeam
Administration
Administration
Posts: 4796
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4418

Re: A Plague Tale: Requiem

Post by SunBeam »

Here's the console enabler for Epic Games Store (removes ASLR flag as well):

Image

Download:

patch.zip
password: sunbeam
(63.97 KiB) Downloaded 1226 times

Just download, unzip, run, click PATCH and select the game executable. A backup file will be created as well, just in case you feel like restoring the original.

The console window will open up as soon as you start the game. Enjoy! :)

cfemen will post a ton of shit later on.

BR,
Sun

User avatar
AstralLuna
Novice Cheater
Novice Cheater
Posts: 24
Joined: Fri Mar 31, 2017 6:30 pm
Reputation: 0

Re: A Plague Tale: Requiem

Post by AstralLuna »

Invisible doesn't seem to work for me anymore, which is odd since it worked last night. It instead makes me invincible, so I thought maybe the flags got swapped but no such luck lol

Closel
What is cheating?
What is cheating?
Posts: 3
Joined: Fri Jan 07, 2022 11:55 am
Reputation: 0

Re: A Plague Tale: Requiem

Post by Closel »

wich version are you on @AstralLuna ?

User avatar
AstralLuna
Novice Cheater
Novice Cheater
Posts: 24
Joined: Fri Mar 31, 2017 6:30 pm
Reputation: 0

Re: A Plague Tale: Requiem

Post by AstralLuna »

Game Pass for PC version 1.2.0.0 (20221013_1051)

Edit: I restarted the game and redownloaded the table for good measure and it seems to be working again.

User avatar
Uhuru N'Uru
Cheater
Cheater
Posts: 45
Joined: Tue Jan 30, 2018 2:44 pm
Reputation: 11

Re: A Plague Tale: Requiem

Post by Uhuru N'Uru »

FYI

There's an Invincible mode in the Gameplay menu
Image

User avatar
SunBeam
Administration
Administration
Posts: 4796
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4418

Re: A Plague Tale: Requiem

Post by SunBeam »

I have no idea, to be honest, why people would want to cheat in Innocence and Requiem. This isn't some ordinary game where you'd want mindless cheating. It's story-driven. If you feel like cheating, it means you've not understood the concept of the game or simply it isn't your genre. But rather than playing soemthing else, you insist on breaking its mechanics and turning it into a ragdoll/vegetable. With invincibility on, the challenging parts of total stealth and the game's duration will vanish/shrink. Then it is still you who'll go "meh, the game was too short...". And it's not like this is AC:Valhalla with tons of RPG and grinding to get something done. Nope, it's linear. But yeah, at the end of the day, I'm gonna be the one bitched at for telling you how to play your game /sarcasm.

I started reversing the Engine back in Innocence, I learned a lot, but all that remained in a txt document, because the game was too good to make a table for. So I played it as it is, enjoying its story and having zero urge to cheat my way through. And I don't do this often with the games I play/study. That good.

Kionaru
Expert Cheater
Expert Cheater
Posts: 70
Joined: Mon Mar 29, 2021 6:43 am
Reputation: 5

Re: A Plague Tale: Requiem

Post by Kionaru »

SunBeam wrote:
Tue Oct 18, 2022 3:20 pm
Here's the console enabler for Epic Games Store (removes ASLR flag as well):

Image

Download:


patch.zip


Just download, unzip, run, click PATCH and select the game executable. A backup file will be created as well, just in case you feel like restoring the original.

The console window will open up as soon as you start the game. Enjoy! :)

cfemen will post a ton of shit later on.

BR,
Sun
can you modif it for steam version? because epic patch not work for me thank you

nos4r2
Expert Cheater
Expert Cheater
Posts: 231
Joined: Sun Oct 29, 2017 3:58 am
Reputation: 42

Re: A Plague Tale: Requiem

Post by nos4r2 »

Item cheat work great anyway to cheat skill? really hate branching skill path and miss some path because i don't play how the game intend me to

User avatar
gmendezm
Cheater
Cheater
Posts: 26
Joined: Tue Oct 18, 2022 7:13 pm
Reputation: 4

Re: A Plague Tale: Requiem

Post by gmendezm »

4 cheats:
  • God
  • Undetectable
  • Increase Items and ingredients
  • Infinite Items and Ingredients
Image
Attachments
trainer.CT
(3.02 KiB) Downloaded 1478 times

User avatar
SunBeam
Administration
Administration
Posts: 4796
Joined: Sun Feb 04, 2018 7:16 pm
Reputation: 4418

Re: A Plague Tale: Requiem

Post by SunBeam »

Kionaru wrote:
Wed Oct 19, 2022 1:44 am
can you modif it for steam version? because epic patch not work for me thank you
EDIT: cfemen posted an update of the table which will get the console open for you.

Post Reply

Who is online

Users browsing this forum: Aereous, AhrefsBot, Alrrem, Baidu [Spider], Carriva, GenieBer, Google Adsense [Bot], hardstylehitman, KarmaKoin, pangeankodok, ReplacingYou, salsalplz, sergeant0013, Shiroihane, Slayheim, Tako88, testingaccount123, Xenovier