You are viewing our Forum Archives. To view or take place in current topics click here.
#31. Posted:
XENO-INFUSION
  • Prospect
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
RonPaul wrote mediafire.com/?r56g3kv6t21za3z

That's the mediafire link, for anyone that needs it.


@OP start giving credit to the founders at 7sins.

I found this on 360Haven by pclifford
#32. Posted:
RonPaul
  • Rising Star
Status: Offline
Joined: Mar 09, 201113Year Member
Posts: 790
Reputation Power: 31
Status: Offline
Joined: Mar 09, 201113Year Member
Posts: 790
Reputation Power: 31
XENO-INFUSION wrote
RonPaul wrote mediafire.com/?r56g3kv6t21za3z

That's the mediafire link, for anyone that needs it.


@OP start giving credit to the founders at 7sins.

I found this on 360Haven by pclifford

Alright, he's from 7sins as well.
Just make sure he gets credit where credit is needed.
#33. Posted:
jscott82bx
  • New Member
Status: Offline
Joined: Jul 21, 201113Year Member
Posts: 17
Reputation Power: 0
Status: Offline
Joined: Jul 21, 201113Year Member
Posts: 17
Reputation Power: 0
Have to give credit where its due and apologize...your not one of those people that keep all the good stuff to themselves...YOU THE MAN...THANKS A MILLION WORKS WONDERFULLY
#34. Posted:
F12
  • Resident Elite
Status: Offline
Joined: Jul 08, 201212Year Member
Posts: 247
Reputation Power: 11
Status: Offline
Joined: Jul 08, 201212Year Member
Posts: 247
Reputation Power: 11
Legit thx so much for the help man
#35. Posted:
XENO-INFUSION
  • Prospect
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
F12 wrote Legit thx so much for the help man

Glad to help cheers mate
#36. Posted:
HlTMAN
  • TTG Natural
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 934
Reputation Power: 39
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 934
Reputation Power: 39
Thanks man worked great I have been messing with ammo's trying to get them to work but can't yet my eyes hurt from staining at the computer might give it ago again in a lil bit if not tonight tomarrow! If you have any idea's HMU ill give it a go! Thanks again
#37. Posted:
Ruined
  • Junior Member
Status: Offline
Joined: Dec 27, 201013Year Member
Posts: 66
Reputation Power: 2
Status: Offline
Joined: Dec 27, 201013Year Member
Posts: 66
Reputation Power: 2
-Hitman- wrote Thanks man worked great I have been messing with ammo's trying to get them to work but can't yet my eyes hurt from staining at the computer might give it ago again in a lil bit if not tonight tomarrow! If you have any idea's HMU ill give it a go! Thanks again

There are two place where you have to change to have the ammo permanent, some people already figured this out since the main tool came from [ Register or Signin to view external links. ] ....
#38. Posted:
HlTMAN
  • TTG Natural
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 934
Reputation Power: 39
Status: Offline
Joined: Jul 15, 201113Year Member
Posts: 934
Reputation Power: 39
Ruined wrote
-Hitman- wrote Thanks man worked great I have been messing with ammo's trying to get them to work but can't yet my eyes hurt from staining at the computer might give it ago again in a lil bit if not tonight tomarrow! If you have any idea's HMU ill give it a go! Thanks again

There are two place where you have to change to have the ammo permanent, some people already figured this out since the main tool came from [ Register or Signin to view external links. ] ....


Thanks I will give it another go now and let you guys know the outcome!
#39. Posted:
XENO-INFUSION
  • Prospect
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
XENO-INFUSION wrote ALL CREDIT TO pclifford of 360Haven for the file and me for the tut



As i promised


This mod tool allows you to edit the following:

-eridium

-Your level

-Skill points

-Item level eg make all your inventory level 50

-Cash

-Backpack space

-Unlock slaughter arena

I am as you are reading this am creating a youtube tutorial on how to do this subscribe to me
Thedevil5600 to be the first to watch the tutorial

NEW COMMANDS
How do I just extract the player data?
Extract the raw protocol buffer data from a save file:

python savefile.py -d your-save-game.sav player.p
Extract the data in JSON format (encoded to allow round-tripping):

python savefile.py -d -j your-save-game.sav player.json
Extract the data in JSON format, applying further protocol buffer decoding to the listed fields to show information such as money and eridium:

python savefile.py -d -j -p 6:0,8,11,13,18,19,29,30,34,38,53,54 your-save-game.sav player.json
How do I write the player data back to a new save file?
Create a new save file from protocol buffer data:

python savefile.py player.p your-new-save-game.sav
Create a new save file from the JSON data:

python savefile.py -j player.json your-new-save-game.sav
As before, to write a save file that can be read by the PC version add the --little-endian flag to one of the above, eg:

python savefile.py -j --little-endian player.json your-new-save-game.sav

UPDATE-xbox save to pc "python savefile.py -m "" --little-endian console.sav pc.sav"
-PC to Xbox save "python savefile.py -m "" pc.sav console.sav"


Iv added the command to extract your character data plus converting xbox saves to pc saves
#40. Posted:
XENO-INFUSION
  • Prospect
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
Status: Offline
Joined: Apr 12, 201113Year Member
Posts: 652
Reputation Power: 27
XENO-INFUSION wrote ALL CREDIT TO pclifford of 360Haven for the file and me for the tut



As i promised


This mod tool allows you to edit the following:

-eridium

-Your level

-Skill points

-Item level eg make all your inventory level 50

-Cash

-Backpack space

-Unlock slaughter arena

I am as you are reading this am creating a youtube tutorial on how to do this subscribe to me
Thedevil5600 to be the first to watch the tutorial

NEW COMMANDS
How do I just extract the player data?
Extract the raw protocol buffer data from a save file:

python savefile.py -d your-save-game.sav player.p
Extract the data in JSON format (encoded to allow round-tripping):

python savefile.py -d -j your-save-game.sav player.json
Extract the data in JSON format, applying further protocol buffer decoding to the listed fields to show information such as money and eridium:

python savefile.py -d -j -p 6:0,8,11,13,18,19,29,30,34,38,53,54 your-save-game.sav player.json
How do I write the player data back to a new save file?
Create a new save file from protocol buffer data:

python savefile.py player.p your-new-save-game.sav
Create a new save file from the JSON data:

python savefile.py -j player.json your-new-save-game.sav
As before, to write a save file that can be read by the PC version add the --little-endian flag to one of the above, eg:

python savefile.py -j --little-endian player.json your-new-save-game.sav

UPDATE-xbox save to pc "python savefile.py -m "" --little-endian console.sav pc.sav"
-PC to Xbox save "python savefile.py -m "" pc.sav console.sav"


iv updated the post
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.