Page 1 of 1

[REQUEST] Heads Will Roll: Reforged

Posted: Sun Oct 08, 2023 9:14 pm
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.

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Mon Oct 09, 2023 2:56 pm
by linfang5
+1

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Thu Oct 12, 2023 7:08 pm
by iivanov
+1

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Thu Oct 12, 2023 7:24 pm
by Khanzada
+1

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Thu Oct 12, 2023 7:59 pm
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

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Sat Oct 14, 2023 9:48 am
by BraiQ
can confirm that saveeditonline.com works 100%

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Sun Oct 15, 2023 9:40 am
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?
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Sun Oct 15, 2023 10:03 pm
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

Re: [REQUEST] Heads Will Roll: Reforged

Posted: Tue Nov 21, 2023 3:15 am
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