How to make a simple gamesave editor[TuT]

Jet2020 Feb 22, 2012

  1. Je

    Jet2020 HeXtra Creator XPG Developer
    185/188

    Joined:
    Feb 13, 2012
    Messages:
    146
    Likes Received:
    24
    Trophy Points:
    0
    Console:
    Xbox
    you will need to download
    HeX Editor - Google It
    PackageIO.dll - Google It
    VisualBasics - Google It

    & Learn a bit more coding this is a simple way to learn

    Code:
    Imports PackageIO
    Public Class Form1
    	Dim FilePath As String
    	Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    		Dim Open As New OpenFileDialog
    		Open.Title = "Open An Xbox 360 Gamesave"
    		Open.ShowDialog()
    		FilePath = Open.FileName
    		ReadFile()
    	End Sub
    	Private Sub ReadFile()
    		Dim Reader As New PackageIO.Reader(FilePath, PackageIO.Endian.Big)
    		Reader.Position = &HF3E83 'This is where you add hex values you want to edit
    		TextBox1.Text = Reader.ReadInt32
    	  
    	End Sub
    	Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    		Dim Writer As New PackageIO.Writer(FilePath, PackageIO.Endian.Big)
    		Writer.Position = &HF3E83 'this is where it you edit it
    		Writer.WriteInt32(TextBox1.Text)
    	  
    		MsgBox("Gamesave successfully modded!")
    	End Sub
    
    	End Sub
    End Class
    

    Must keep the &H(Offset Values) go there and then put it there

    but search a game save you had say you had 1000points

    search on the Hex Editor using
    Integer Numbers

    Then change the two drop menus to 32 bit double word (LongInt)
    and the bottom one to BigEndian(Motorola, Sparc, ...)

    And then put what ever the values of your points put in the textbox and then click search and will take you to the offset and then look on the bottom left of HexEditor and then will have "offset:(what ever the offset is) then put that offset into the code


    Please leave anyquistions if you need anyhelp
     
  2. As

    Ashamanii Guest

    Saying "google it" doesn't make it exactly attractive, nor does just pasting a code. Nobody learns much from it.
    When explaining something, the most common thing to do is assume that the person you are explaining it knows nothing of the topic. And at least explaining what every piece of code does and/or doesn't. Unless you are giving an advanced tut, where the one you are explaining it to should know the basic stuff. But then you still need to explain the more advanced stuff.

    Also shouldn't this be under programming tuts?
     
  3. Je

    Jet2020 HeXtra Creator XPG Developer
    0/47

    Joined:
    Feb 13, 2012
    Messages:
    146
    Likes Received:
    24
    Trophy Points:
    0
    Console:
    Xbox
    sorry bro

    i think you will find this is my code out of my program, ive been doing this for ages now and i hate it when people comment like this.

    i dont have the time to upload as im going offline soon + its not hard to do and i said leave quistions for them to be answered so how can i help you?

    :hoe:
     
  4. e12aser

    e12aser Newbie
    0/47

    Joined:
    May 6, 2012
    Messages:
    17
    Likes Received:
    3
    Trophy Points:
    0
    Gender:
    Male
    Console:
    Xbox
    hey aFter i create the game save . how to i get the .exe file for i can upload it for others to use

    like extract it
     
  5. Tony B

    Tony B Ťサ∑ ㄕ◊к∑㎡◊и Lifetime Gold
    185/188

    Joined:
    May 21, 2012
    Messages:
    3,291
    Likes Received:
    717
    Trophy Points:
    185
    Gender:
    Male
    Console:
    Xbox One
    gameSAVE not .xex game
     
  6. e12aser

    e12aser Newbie
    0/47

    Joined:
    May 6, 2012
    Messages:
    17
    Likes Received:
    3
    Trophy Points:
    0
    Gender:
    Male
    Console:
    Xbox
    my bad i ment gamesave editor but its ok i just found out how to du it
     

Share This Page

Close