Page 1 of 2
REQ:THE BONFIRE 2 please
Posted: Sun Aug 23, 2020 12:59 pm
by danielyee
hi all and grand creator table,hi
i would like to ask if sir can do a table for this game
MINIMUM:
OS: Windows Vista/7/8/10
Processor: 2 Ghz
Memory: 2 GB RAM
Graphics: 1 GB VRAM
Storage: 500 MB available space
Sound Card: Any
pc game
req
1:full god mode
2:full resources
3:full abilities point
tq sir
Re: REQ:THE BONFIRE 2 please
Posted: Sun Aug 23, 2020 2:03 pm
by rohindanil
+1
Re: REQ:THE BONFIRE 2 please
Posted: Sun Aug 23, 2020 3:00 pm
by uBaHFaKoF
+
Re: REQ:THE BONFIRE 2 please
Posted: Mon Aug 24, 2020 1:21 pm
by krmit
+1
Inf.HP for units
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 2:54 am
by Pally
+1

Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 10:27 am
by baramburum
+204
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 11:23 am
by imjustmaxie
Found this thread, tried to find some stuff.
Temporary cheat table for you guys.
- Health Options (WIP)
- Time Pointers
- Max Resource
- Instant Build/Upgrade
- Easy Build
This is for the Steam version.
Note:
I don't do request unless I wanted to.
And also, I didn't buy this game. I rely on available clean Steam files.
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 12:30 pm
by danielyee
A very thanks to you sir..appreciated
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 2:31 pm
by krmit
@imjustmaxie
Thanks for the table.
Btw "Easy kills" option works for enemies too -_-
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 2:34 pm
by imjustmaxie
krmit wrote: ↑Tue Aug 25, 2020 2:31 pm
@imjustmaxie
Thanks for the table.
Btw "Easy kills" option works for enemies too -_-
Yeah, I noticed I made a wrong offset compare.
Probably later, if I didn't forget it.

Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 2:44 pm
by krmit
@imjustmaxie
And "Inf.HP" option not always work, even for same unit.
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 3:11 pm
by caliber1942
imjustmaxie wrote: ↑Tue Aug 25, 2020 11:23 am
Found this thread, tried to find some stuff.
Temporary cheat table for you guys.
- Health Options (WIP)
- Time Pointers
- Max Resource
- Instant Build/Upgrade
- Easy Build
This is for the Steam version.
Note:
I don't do request unless I wanted to.
And also, I didn't buy this game. I rely on available clean Steam files.
hmm....
- Instant Build/Upgrade
- Easy Build
FAST BUILD
==============
BuildingInstance:UpdateConstruction+d3 - 49 63 87 F8000000 - movsxd rax,dword ptr [r15+000000F8]
EASY CONSTRUCTION
==================
BuildingInstance:HasEnoughResourcesToStartConstruction - 55 - push rbp
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 3:19 pm
by danielyee
hi sir ..god mode always not working sir
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 4:19 pm
by monteuv
Hello sir! Thank you so much. Health options are not working

.
Inf health doesn't work
Easy kills --> applies to monsters so you get oneshoted lol
Re: REQ:THE BONFIRE 2 please
Posted: Tue Aug 25, 2020 4:41 pm
by imjustmaxie
caliber1942 wrote: ↑Tue Aug 25, 2020 3:11 pm
imjustmaxie wrote: ↑Tue Aug 25, 2020 11:23 am
Found this thread, tried to find some stuff.
Temporary cheat table for you guys.
- Health Options (WIP)
- Time Pointers
- Max Resource
- Instant Build/Upgrade
- Easy Build
This is for the Steam version.
Note:
I don't do request unless I wanted to.
And also, I didn't buy this game. I rely on available clean Steam files.
hmm....
- Instant Build/Upgrade
- Easy Build
FAST BUILD
==============
BuildingInstance:UpdateConstruction+d3 - 49 63 87 F8000000 - movsxd rax,dword ptr [r15+000000F8]
EASY CONSTRUCTION
==================
BuildingInstance:HasEnoughResourcesToStartConstruction - 55 - push rbp
Yes, that's the instruction that I base my scripts for both.
Because [r15+F8] is holding the current value for the current construction value, so i move the final construction offset value of [r15+FC] to [r15+F8].
I could use:
Code: Select all
fild dword ptr [r15+FC]
fistp dword ptr [r15+F8]
or even
Code: Select all
push rax
mov rax,[r15+FC]
mov [r15+F8],rax
pop rax
but I use the first one because it saves two lines, no need to push or pop a register.
And the easy construction? That's a bool flag. Nothing wrong with using mov al,1 and ret to set the flag.