You are viewing our Forum Archives. To view or take place in current topics click here.
Skyrim save converter
Posted:

Skyrim save converterPosted:

PHP_Pro
  • Ladder Climber
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Ya lol, i know that you only have to change the file extension, i got super bored today, and needed sometin to do.
i made this for myself, and anyone else who wants it.
it opens the save, tells you what type it is (PC or Xbox), and converts it between the two
click on the "About" button for a good laugh :trollin:

Pictures:

[ Register or Signin to view external links. ]


Virus Scan and Code:

[ Register or Signin to view external links. ]

And the 1 Detection is a False - Positive, that particular anti virus detects about any application that can read or write files as a trojan.
if you don't believe me , here is the entire code of the program for you to analyze, assuming you know vb.net :


Imports System.IO
Public Class Form1

    Public Sub GButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GButton1.Click
        ofd.ShowDialog()
        TextBox1.Text = ofd.FileName.ToString()
        If ofd.FileName.EndsWith("exs") Then
            Label4.Text = "Xbox Save"
        End If
        If ofd.FileName.EndsWith("ess") Then
            Label4.Text = "PC Save"
        End If
    End Sub

    Private Sub GButton2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GButton2.Click
        Try
            If TextBox1.Text = "" Then
                MsgBox("Please Select a save First!")
            Else
                svd.FileName = Mid(ofd.SafeFileName, 1, Len(ofd.SafeFileName) - 4)
                svd.Filter = "PC Save (*.ess)|*.ess|Xbox Save (*.exs*)|*.exs"
                svd.ShowDialog()
                FileCopy(ofd.FileName, svd.FileName)
            End If
        Catch ex As Exception
            MsgBox(ErrorToString)
        End Try
    End Sub
    Private Sub GButton3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GButton3.Click
        Me.Close()
    End Sub

    Private Sub GButton4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GButton4.Click
        About.Show()
    End Sub
End Class



Download:

[ Register or Signin to view external links. ]


Hope you guys enjoy the Smexy GUI, and the about button :trollin:
No trolls
Thanks
#2. Posted:
itsumaku12
  • Resident Elite
Status: Offline
Joined: May 05, 201014Year Member
Posts: 239
Reputation Power: 11
Status: Offline
Joined: May 05, 201014Year Member
Posts: 239
Reputation Power: 11
Great Shit Right There!
#3. Posted:
Ledgielad
  • TTG Senior
Status: Offline
Joined: Mar 28, 201113Year Member
Posts: 1,271
Reputation Power: 52
Status: Offline
Joined: Mar 28, 201113Year Member
Posts: 1,271
Reputation Power: 52
Aha good job

Im surprised this hasn't been done before with a simple VB code to rename the file
#4. Posted:
PHP_Pro
  • Ladder Climber
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
thanks, ya i got really bored, hope you guys enjoy!
#5. Posted:
hobopower70
  • New Member
Status: Offline
Joined: Apr 24, 201113Year Member
Posts: 18
Reputation Power: 0
Status: Offline
Joined: Apr 24, 201113Year Member
Posts: 18
Reputation Power: 0
um what is the point of this it takes like two seconds to switch the file type
#6. Posted:
PHP_Pro
  • Ladder Climber
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
hobopower70 wrote um what is the point of this it takes like two seconds to switch the file type


Did you not read my post?

:facepalm: :facepalm: :facepalm:
#7. Posted:
Goth_Wolf
  • Prospect
Status: Offline
Joined: Jul 11, 201013Year Member
Posts: 602
Reputation Power: 25
Status: Offline
Joined: Jul 11, 201013Year Member
Posts: 602
Reputation Power: 25
[font=candara:2ca91bb655]I'm not lazy but good job, now what would be really interesting to see would be something that takes the .exs extracts the Savegame.dat and at the same times extracts it as Savegame.ess
#8. Posted:
PHP_Pro
  • Ladder Climber
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201112Year Member
Posts: 349
Reputation Power: 20
Goth_Wolf wrote [font=candara:12c7e1cf44]I'm not lazy but good job, now what would be really interesting to see would be something that takes the .exs extracts the Savegame.dat and at the same times extracts it as Savegame.ess


Nice idea, i might look into that
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.