[Help] Need help with a rehash and resigner and a save modder...

Shadowfita Jun 20, 2012

  1. Sh

    Shadowfita Newbie
    155/188

    Joined:
    Jun 2, 2012
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    Console:
    Xbox
    okay well i thought i would try making a trials evolution money changer and a rehash and resigner but i failed...

    First of all the money changes until you run the save on the xbox, it resets to its original state.

    And as for the rehash and resigner it says unable to read beyond the end of the stream...

    Can anyone help?

    thanks in advance.
     
  2. madasahat

    madasahat Official XPG Spastic
    155/188

    Joined:
    Jul 21, 2009
    Messages:
    6,068
    Likes Received:
    557
    Trophy Points:
    155
    Gender:
    Male
    Location:
    LUFC
    Console:
    Computer
    Maybe post your code so the devs on jere can look at it

    Sent from my GT-I9100 using Tapatalk 2
     
  3. Sh

    Shadowfita Newbie
    0/47

    Joined:
    Jun 2, 2012
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    Console:
    Xbox
    Alrighty for the uh trials evolution editor its...

    Code:
    Public Class Trials_Evolution_Editor
        Dim Money As String
        Dim Filepath As String
        Dim OFD As New OpenFileDialog
        Dim Filepath2 As String
        Private Sub ButtonX1_Click(sender As System.Object, e As System.EventArgs) Handles ButtonX1.Click
    	    Dim Open As New OpenFileDialog
    	    Open.Title = "Open Trials Evolution GPD"
    	    Open.ShowDialog()
    	    Filepath = Open.FileName
    	    ReadFile()
        End Sub
        Private Sub ReadFile()
    	    Try
    		    Dim Reader As New PackageIO.Reader(Filepath, PackageIO.Endian.Big)
    		    Reader.Position = 31133
    		    Money = Reader.Position
    		    TextBoxX1.Text = Reader.ReadInt32
    	    Catch ex As Exception
    		    MsgBox(ErrorToString)
    	    End Try
        End Sub
        Private Sub WriteFile()
    	    Try
    		    Dim Writer As New PackageIO.Writer(Filepath, PackageIO.Endian.Big)
    		    Writer.Position = Money
    		    Writer.WriteInt32(TextBoxX2.Text)
    		    MsgBox("Successfully Modded, Inject the GPD into your profile then rehash and reisgn your profile.")
    	    Catch ex As Exception
    		    MsgBox(ErrorToString)
    	    End Try
        End Sub
        Private Sub ButtonX2_Click(sender As System.Object, e As System.EventArgs) Handles ButtonX2.Click
    	    WriteFile()
        End Sub
    


    for the rehash and resigner...

    Code:
    Private Sub ButtonX3_Click(sender As System.Object, e As System.EventArgs) Handles ButtonX3.Click
    	    OFD.ShowDialog()
    	    Filepath2 = OFD.FileName
    	    Dim STFS As New Package(Filepath2)
    	    TextBoxX3.Text = STFS.ProfileID
    	    TextBoxX4.Text = STFS.ConsoleID
    	    TextBoxX5.Text = STFS.DeviceID
        End Sub
        Private Sub ButtonX4_Click(sender As System.Object, e As System.EventArgs) Handles ButtonX4.Click
    	    Try
    		    Dim STFS As New STFSPackage(Filepath2, Nothing)
    		    STFS.FlushPackage(New RSAParams(Application.StartupPath + "\KV.bin"))
    		    MessageBox.Show("Rehashed and Resigned")
    	    Catch ex As Exception
    		    MessageBox.Show(ex.Message)
    	    End Try
        End Sub
    
     
  4. Sh

    Shadowfita Newbie
    0/47

    Joined:
    Jun 2, 2012
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    Console:
    Xbox
    Never mind its my editor the rehash and resigner works fine.

    any help?
     

Share This Page

Close