Page 9 of 17

Re: Fallout 4 w/Advance Mode now Available...

Posted: Wed Nov 28, 2018 10:13 pm
by ItsTheLovelyDude
MealReadytoEat wrote:
Xalace wrote:
MealReadytoEat wrote:couple of things to remember...
The number of ammo/items adds to current value and are not float values this is why you would get negative values, and "the data that you want to "write" must be reversed"

example of # of item codes
open windows calculator click view them programmer
click dec and put in 1000000 now click hex and you get F4240

000F4240 reversed 40420F00

code(fake)
80010004 44332211
28000000 40420F00
writes 0x00101234 000F4240

///////////////////////////////
player exp/move/reload these are float values and the data you write doesn't have to be reversed

In your save let say you have this 0x0012345 0000c842
and you want to change from 100 to 500 the code would be
2012345 43FA0000 because the float values are reversed in the save already so putting it in normal will reverse it in save wizard
All data that you "write" in save wizard is reversed by the program.(endian)

//////////////////////////
Item codes from ps4 to pc and back you have to add the "4"
and a 3 byte search may help as 0041F66A in the save may be
0141F66A /3f41F66A /0041F66A over many areas and could explain why the number of ammo/stemps are spawning in odd places



10mm ammo pc 0001F276
10 mm ammo ps4 0041F276

Alien Blaster Round pc 001025AA
Alien Blaster Round ps4 005025AA
Thank you for clearing up some info on the numbers. Also kn an earler post of mine for stimpack would i add 004 to the id for ps4?

*** I need help converting a code for stimpak

Stimpak id = 23736

80010004 00421b3b
88010004 xxxxxxxx = 00423736
2800000a 49742400

So how do i make stimpak id into xxxxxxxx when there is only 5 numbers? Or do i put 004 infront making it 00423736?***

Yes you got it 00423736
Stimpak would be 00423736
if this 00023736 change to 00423736
if this 0001F66A (45rounds) 0005F66A
if 000 becomes 004
if 001 becomes 005 just add 4 to the third digit for items from pc to ps4
ItsTheLovelyDude wrote:
mater1983 wrote::( :( :( :( :( :(
just want to figure out the level up codes
why is it giving me issues. ugh!
I'm still trying too. This is the most annoying code, well for us for some reason..
upload a decrypted save and ill take a look at it
It's a Quicksave and i'm level 1. Saved right when you first meet dogmeat.
My Save: http://bit.ly/2Pagxim

Re: Fallout 4 w/Advance Mode now Available...

Posted: Wed Nov 28, 2018 10:36 pm
by MealReadytoEat
The starting point of the code was searching for "Character_FirstPersonBase"
and your save is "RaiderProject"

try this
80010008 7250726F
6A656374 00000000
88010003 4002C900
28000003 xxxxxxxx

Re: Fallout 4 w/Advance Mode now Available...

Posted: Wed Nov 28, 2018 11:09 pm
by ItsTheLovelyDude
MealReadytoEat wrote:The starting point of the code was searching for "Character_FirstPersonBase"
and your save is "RaiderProject"

try this
80010008 7250726F
6A656374 00000000
88010003 4002C900
28000003 xxxxxxxx
Alright i'll try it out. And what does that mean? Why is mine "RaiderProject"?

Re: Fallout 4 w/Advance Mode now Available...

Posted: Wed Nov 28, 2018 11:55 pm
by mater1983
any luck?

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 12:18 am
by ItsTheLovelyDude
mater1983 wrote:any luck?
It finally worked! Thank You! @MealReadytoEat! Still would like to know what the whole "Character_FirstPersonBase" and "RaiderProject" means.

Here's the steps to do it right for the points to work properly.

1 - Use this first to level up to 50. (Use all the points it gives you until you have no more. Save your game and do step 2)

80010008 7250726F
6A656374 00000000
88010003 4002C900
28000003 47BF6880

2 - Next use this second to level up to 200. (Use all the points it gives you until you have no more. Save your game and do step 3)

80010008 7250726F
6A656374 00000000
88010003 4002C900
28000003 49B939F8

3 - Finally use this last and use all the points to get the remaining perks. And that's it you are all set!

80010008 7250726F
6A656374 00000000
88010003 4002C900
28000003 4A742400

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 12:44 am
by Xalace
MealReadytoEat wrote:
Xalace wrote:
MealReadytoEat wrote:couple of things to remember...
The number of ammo/items adds to current value and are not float values this is why you would get negative values, and "the data that you want to "write" must be reversed"

example of # of item codes
open windows calculator click view them programmer
click dec and put in 1000000 now click hex and you get F4240

000F4240 reversed 40420F00

code(fake)
80010004 44332211
28000000 40420F00
writes 0x00101234 000F4240

///////////////////////////////
player exp/move/reload these are float values and the data you write doesn't have to be reversed

In your save let say you have this 0x0012345 0000c842
and you want to change from 100 to 500 the code would be
2012345 43FA0000 because the float values are reversed in the save already so putting it in normal will reverse it in save wizard
All data that you "write" in save wizard is reversed by the program.(endian)

//////////////////////////
Item codes from ps4 to pc and back you have to add the "4"
and a 3 byte search may help as 0041F66A in the save may be
0141F66A /3f41F66A /0041F66A over many areas and could explain why the number of ammo/stemps are spawning in odd places



10mm ammo pc 0001F276
10 mm ammo ps4 0041F276

Alien Blaster Round pc 001025AA
Alien Blaster Round ps4 005025AA
Thank you for clearing up some info on the numbers. Also kn an earler post of mine for stimpack would i add 004 to the id for ps4?

*** I need help converting a code for stimpak

Stimpak id = 23736

80010004 00421b3b
88010004 xxxxxxxx = 00423736
2800000a 49742400

So how do i make stimpak id into xxxxxxxx when there is only 5 numbers? Or do i put 004 infront making it 00423736?***

Yes you got it 00423736
Stimpak would be 00423736
if this 00023736 change to 00423736
if this 0001F66A (45rounds) 0005F66A
if 000 becomes 004
if 001 becomes 005 just add 4 to the third digit for items from pc to ps4
i was able to get my stimpak code to work. however i am still having trouble with over half my crafting materials not working this is the list i cant get to work

Steel 000731A4
Wood 000731A3
Concrete 00106D99
Plastic 0006907F
Aluminum 0006907A
Circuitry 0006907B
Copper 0006907C
Crystal 0006907D
Fiber Optics 00069087
Gears 0006907E
Glass 00069085
Lead 000AEC63
Screw 00069081
Spring 00069082
Cloth 000AEC5F
Cork 000AEC60
Fiberglass 000AEC61
Gold 000AEC62
Nuclear Material 00069086
Leather 000AEC64

this is the code i am using

Aluminum
80010004 00421B3B
88010004 0046907A
2800000A 49742400


here is a link to my current manual save fallout 4 GOTY
https://www.dropbox.com/s/0tkz6aw5gurdf ... 7.zip?dl=0

any help on how to make the right codes would be helpful. thx

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 12:47 am
by 100favors
ItsTheLovelyDude wrote:
100favors wrote:The levelup code doesnt work anymore it only works once, i tried all different save file i even loaded the save wer you about to get out from the vault, but no luck :/
What do you mean only works once?
The first time i used lvl50 code it works, then i try lvl200 but nothing happens.. i guess i messed up something so i loaded back again the last quick save that i used before and the lvl50 doesnt work anymore, and thats it. I tried all different save, loading back and fort usb drive lol but the ammo works with no problem.

Also the fast hp regen and quick reload isnt working, but the 10k AP works fine.

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 12:51 am
by ItsTheLovelyDude
100favors wrote:
ItsTheLovelyDude wrote:
100favors wrote:The levelup code doesnt work anymore it only works once, i tried all different save file i even loaded the save wer you about to get out from the vault, but no luck :/
What do you mean only works once?
The first time i used lvl50 code it works, then i try lvl200 but nothing happens.. i guess i messed up something so i loaded back again the last quick save that i used before and the lvl50 doesnt work anymore, and thats it. I tried all different save, loading back and fort usb drive lol but the ammo works with no problem.

Also the fast hp regen and quick reload isnt working, but the 10k AP works fine.
I had to make a new game. I quicksaved right when I meet dogmeat in the gas station and that’s where I started doing the EXP cheats when I was level 1. You should try that.

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 12:56 am
by 100favors
ItsTheLovelyDude wrote:
100favors wrote:
ItsTheLovelyDude wrote:
100favors wrote:The levelup code doesnt work anymore it only works once, i tried all different save file i even loaded the save wer you about to get out from the vault, but no luck :/
What do you mean only works once?
The first time i used lvl50 code it works, then i try lvl200 but nothing happens.. i guess i messed up something so i loaded back again the last quick save that i used before and the lvl50 doesnt work anymore, and thats it. I tried all different save, loading back and fort usb drive lol but the ammo works with no problem.

Also the fast hp regen and quick reload isnt working, but the 10k AP works fine.
I had to make a new game. I quicksaved right when I meet dogmeat in the gas station and that’s where I started doing the EXP cheats when I was level 1. You should try that.
Can i try that new 3 steps you just posted before?

Re: Fallout 4 w/Advance Mode now Available...

Posted: Thu Nov 29, 2018 1:00 am
by ItsTheLovelyDude
100favors wrote:
ItsTheLovelyDude wrote:
100favors wrote:
ItsTheLovelyDude wrote:
100favors wrote:The levelup code doesnt work anymore it only works once, i tried all different save file i even loaded the save wer you about to get out from the vault, but no luck :/
What do you mean only works once?
The first time i used lvl50 code it works, then i try lvl200 but nothing happens.. i guess i messed up something so i loaded back again the last quick save that i used before and the lvl50 doesnt work anymore, and thats it. I tried all different save, loading back and fort usb drive lol but the ammo works with no problem.

Also the fast hp regen and quick reload isnt working, but the 10k AP works fine.
I had to make a new game. I quicksaved right when I meet dogmeat in the gas station and that’s where I started doing the EXP cheats when I was level 1. You should try that.
Can i try that new 3 steps you just posted before?
Go ahead and see if it works for you. Better if you try doing it at level 1 and when you first meet dogmeat.