[REQUEST] Heads Will Roll: Reforged

Ask about cheats/tables for single player games here
Post Reply
Dusty
What is cheating?
What is cheating?
Posts: 2
Joined: Sun Oct 08, 2023 9:09 pm
Reputation: 1

[REQUEST] Heads Will Roll: Reforged

Post by Dusty »

Game Name: Heads Will Roll: Reforged
Game Engine: Ren'Py
Game Version: 1.03
Options Required: Health, Gold, Attribute/Skill Points
Steam Website:
Other Info: None.

linfang5
What is cheating?
What is cheating?
Posts: 1
Joined: Tue May 30, 2023 8:25 am
Reputation: 0

Re: [REQUEST] Heads Will Roll: Reforged

Post by linfang5 »

+1

iivanov
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Apr 19, 2017 9:03 am
Reputation: 0

Re: [REQUEST] Heads Will Roll: Reforged

Post by iivanov »

+1

Khanzada
Noobzor
Noobzor
Posts: 5
Joined: Sun Nov 13, 2022 7:17 pm
Reputation: 0

Re: [REQUEST] Heads Will Roll: Reforged

Post by Khanzada »

+1

SometimesIPonder
What is cheating?
What is cheating?
Posts: 3
Joined: Sun May 07, 2023 11:03 pm
Reputation: 7

Re: [REQUEST] Heads Will Roll: Reforged

Post by SometimesIPonder »

It is renpy, so just go to 00console.rpy and enable config.console = False to config.console = True
then in order to find the variables just type in dir() but before doing that make sure you type in long as renpy usually enables short mode as default this will allow you to see all the variables. Good Luck in find the one you want...

Just to clarify in order to go to 00console.rpy
you need to go to your steam game folder --> renpy --> common --> 00console.repy (open with any editor, I used notes)
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
between here are some variables you can use

Code: Select all

player_strength = 7 (your choice)
player_agility = 7 (your choice)
player_(any stat) = 7 (your choice)
player_gold = 1000 (your choice)
player_virtue = 100 (your choice)
player_strength = 7 (your choice)
player_agility = 7 (your choice)
player_(any stat) = 7 (your choice)
player_gold = 1000 (your choice)
player_virtue = 100 (your choice)
player_stamina = ?(your choice)
player_inventory_space = ?(your choice)
player_intelligence = ?(your choice)
player_fatigue_pool = 0(your choice but just make it 0)
time_left = ?(your choice)
you can use player_health = ?(your choice) in battle likewise player_stamina = ?(your choice)

HERES A BIG ONE (IMO)
player_inventory_space = ?(your choice)

I noticed that sometimes player stats are only visual, I will check into that.

No wonder I couldn't find craftmanship its called player_intelligence
LOL this developer.

to increase/decrease your amount of time it is called time_left = ?(your choice)
to increase/decrease your fatigue it is called player_fatigue_pool = 0(your choice but just make it 0)

This is all you pretty much need for this game
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

alternatively if none of these work
you can go here --> [Link]
to edit your save file which in steam game folder --> game --> save
although I have not tried this method so I do not know if it will work

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Anyway I'm going to see if I can make a savefile where everything is boosted and allow downloads.

Do note that if you use the console commands for any stats, strength, endurance, etc.. reload your save so that it takes effect.
You Do Not Have To Do This For player_inventory_space = (number)
Although sometimes you just have to navigate through the menu

BraiQ
Noobzor
Noobzor
Posts: 8
Joined: Tue Nov 02, 2021 6:53 pm
Reputation: 1

Re: [REQUEST] Heads Will Roll: Reforged

Post by BraiQ »

can confirm that saveeditonline.com works 100%

keelah
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Oct 15, 2023 9:38 am
Reputation: 0

Re: [REQUEST] Heads Will Roll: Reforged

Post by keelah »

SometimesIPonder wrote:
Thu Oct 12, 2023 7:59 pm
then in order to find the variables just type in dir()
how do i do that above i cant figurre it out what do you mean by long?
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

happybrother
Cheater
Cheater
Posts: 32
Joined: Mon May 08, 2017 2:37 pm
Reputation: 15

Re: [REQUEST] Heads Will Roll: Reforged

Post by happybrother »

Speaking about console commands
there are more like

Weapons:
player_inventory.add(WEAPON_NAME)
Trinkets:
player_inventory.add_trinket(TRINKET_NAME)
Crafting items:
player_inventory.add_special(CRAFTING_ITEM_NAME)

So if you also have the "Hadley quest" trinket problem you can add a Plague Mask or Medical Treatise, equip and then go there.
player_inventory.add_trinket(plague_mask)
this says "none" but go to Inventory and it's there.

Some names of items: buckler, messer, warhammer, brigandine, mail_armor, bevor, blackjack

kazumakun
What is cheating?
What is cheating?
Posts: 1
Joined: Tue Nov 21, 2023 3:08 am
Reputation: 0

Re: [REQUEST] Heads Will Roll: Reforged

Post by kazumakun »

Just to add to the discussion, since the Ren'Py is based on Python, you can use basic Python code here to narrow down results

For example, the following returns the variables related to player skill:

Code: Select all

[x for x in dir() if 'player' in x and 'skill' in x]
You can chain the search criteria as much as you with using "and". "or" and parenthesis grouping are also valid here.

You may need to enter "long" beforehand in case your output is too long and gets truncated.

Also before you change any values, it's good idea to test it's current value to make sure what you edit is correct.
To do so, simply type out the variable you want to change and enter (without equal sign etc.)

For example,

Code: Select all

player_crossbow_skill          # display your current crossbow skill
player_crossbow_skill = 10     # sets your crossbow skill to 10

Post Reply

Who is online

Users browsing this forum: No registered users