Tutorials Navigation
{Tut} How to Use X360 Extractor Function VB
Tutorial Name: {Tut} How to Use X360 Extractor Function VB
Category: PC Tutorials
Submitted By: Sega
Date Added:
Comments: 0
Views: 1,528
Related Forum: PC Building Forum
Share:
I will teach you how to extract a file from a file. For example extracting the Account file from your profile. In this tutorial I'll be using a PGR3 gamesave.
Step 1:
Add 1 Button and Name it Open
Step 2:
Above Public Class Form1 add this code:
Imports X360.STFS
Imports X360.IO
Then under Public Class Form1 add this code:
Dim Filepath As String
Dim stfs As STFSPackage
Dim item As FileEntry
Step 3:
Double click the open button and add this code:
Dim ofd As New System.Windows.Forms.OpenFileDialog()
ofd.Filter = "profile.sav (*.*)|*.*"
ofd.Title = "profie.sav"
ofd.ShowDialog()
stfs = New STFSPackage(ofd.FileName, Nothing)
item = stfs.GetFile("profile.save")
item.Extract(System.IO.Path.GetTempPath & "\profile.save")
Me.Filepath = System.IO.Path.GetTempPath & "\profile.save"
Me.Filepath = System.IO.Path.GetTempPath & "\profile.save"
Now the ofd.Filter = "profile.sav (*.*)|*.*" just change the profile.sav to whatever the first file is named. Do the same for the ofd.Title = "profile.sav"
For item = stfs.GetFile("profile.save") you have to change it to the EXACT name of the file you wanted extracted from the file you opened.
You MUST change everything that says \profile.save to the file you want extracted.
For Me.Filepath = System.IO.Path.GetTempPath this extracts the save to a temporary file location so you will have to change this to location you want it extracted to.
You're Done!
Ratings
Comments
Related Tutorials
- 01. Emulating Xbox 360 on PC for Running COD4 With Mods(3,502)
- 02. How to: Matrix Numbers | Batch File(1,908)
- 03. How to Password Protect Files on Windows(859)
- 04. How to play Socom 2/3/ and Combined Assault on PC(6,738)
- 05. Modern Warfare 2 Vac Ban Bypass Tutorial(6,154)
- 06. How to embed an image on TheTechGame(3,100)
- 07. [PC] NIOH 2 OTHER USER SAVE RESIGN(13,007)
- 08. Host bot lobbies! Full Tutorial!(11,311)
- 09. Unban yourself [Plutonium BO2](14,247)
- 10. Fall Guys - How to Change Your Name Color on Fall Guys(8,390)
- 11. Best Crosshair Settings for Valorant(6,530)
- 12. Othercide The Surgeon Boss Guide(2,544)
- 13. Othercide Remembrances Unlock Guide(4,470)
- 14. Othercide Beginners Tips and Tricks(2,712)
- 15. How to Fix Grounded Crashes, Loading Time, Low FPS and Other(4,848)
"{Tut} How to Use X360 Extractor Function VB" :: Login/Create an Account :: 0 comments