You are viewing our Forum Archives. To view or take place in current topics click here.
Skyrim save converter
Posted:
Skyrim save converterPosted:
Status: Offline
Joined: Oct 12, 201113Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201113Year 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:
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 :
Download:
Hope you guys enjoy the Smexy GUI, and the about button :trollin:
No trolls
Thanks
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:
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:
Hope you guys enjoy the Smexy GUI, and the about button :trollin:
No trolls
Thanks
#2. Posted:
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!
- 0useful
- 1not useful
#3. Posted:
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
Im surprised this hasn't been done before with a simple VB code to rename the file
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Oct 12, 201113Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201113Year Member
Posts: 349
Reputation Power: 20
thanks, ya i got really bored, hope you guys enjoy!
- 0useful
- 0not useful
#5. Posted:
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
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Oct 12, 201113Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201113Year 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:
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Jul 11, 201014Year Member
Posts: 602
Reputation Power: 25
Status: Offline
Joined: Jul 11, 201014Year 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
- 0useful
- 0not useful
#8. Posted:
Status: Offline
Joined: Oct 12, 201113Year Member
Posts: 349
Reputation Power: 20
Status: Offline
Joined: Oct 12, 201113Year 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
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.