Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #1  
Old 10-24-2019, 03:28 PM
GigaSausage GigaSausage is offline
Large Bat


Join Date: Oct 2019
Posts: 13
Default Game Patcher

I created this application so that i can switch easily back and forth between different versions of the file.. blue/green .. etc

your safe browser extension will have a fit with this file, but its fine. Once you download it your virus software will pass it.

Enjoy!

P99 Patcher
Reply With Quote
  #2  
Old 10-25-2019, 09:43 AM
GigaSausage GigaSausage is offline
Large Bat


Join Date: Oct 2019
Posts: 13
Default

Patched to green live perfectly this morning to create my character. I love how easy this is to use. not a lot of overhead, just a simple game patch loader.
Reply With Quote
  #3  
Old 10-25-2019, 10:11 AM
Necroitis Necroitis is offline
Decaying Skeleton


Join Date: Nov 2017
Posts: 3
Default

will this correct the "your spell file is outdated" message? I logged in to create a character and above the toon it has this message.
Reply With Quote
  #4  
Old 10-25-2019, 10:13 AM
Baler Baler is offline
Planar Protector

Baler's Avatar

Join Date: Mar 2014
Posts: 9,521
Default

Use at your own risk
Not officially sponsored by P99
__________________
Reply With Quote
  #5  
Old 10-25-2019, 10:44 AM
GigaSausage GigaSausage is offline
Large Bat


Join Date: Oct 2019
Posts: 13
Default

Quote:
Originally Posted by Baler [You must be logged in to view images. Log in or Register.]
Use at your own risk
Not officially sponsored by P99

yes.. use at your own risk. I programmed it, so I know it is safe. if you don't feel comfortable don't use.

This will patch up the entire file. so if you have anything out of sync this will true it all up to the zip file you are patching to.
Reply With Quote
  #6  
Old 10-25-2019, 11:58 AM
Bache Bache is offline
Orc


Join Date: Nov 2018
Posts: 39
Default

Thank you sir I will try this to fix my issue !
Reply With Quote
  #7  
Old 10-25-2019, 11:59 AM
Baler Baler is offline
Planar Protector

Baler's Avatar

Join Date: Mar 2014
Posts: 9,521
Default

Is there a source for this?
__________________
Reply With Quote
  #8  
Old 10-25-2019, 12:39 PM
GigaSausage GigaSausage is offline
Large Bat


Join Date: Oct 2019
Posts: 13
Default

Quote:
Originally Posted by Baler [You must be logged in to view images. Log in or Register.]
Is there a source for this?
sure.. i don't mind sharing .. its pretty simple..

Private Sub btn_Update_Click(sender As Object, e As EventArgs) Handles btn_Update.Click

On Error GoTo ErrorHandler ' Enable error-handling routine.

If Len(txt_Path.Text) = 0 Or Len(txt_Game_File_Path.Text) = 0 Then
'do nothing
Else
Using archive As ZipArchive = ZipFile.OpenRead(txt_Path.Text)

For Each entry As ZipArchiveEntry In archive.Entries
entry.ExtractToFile(Path.Combine(txt_Game_File_Pat h.Text, entry.FullName), True)
Next
End Using

On Error Resume Next

sys_label.Visible = True


End If

Exit Sub
ErrorHandler: ' Error-handling routine.
Select Case Err.Number ' Evaluate error number.
Case 6 ' Divide by zero error
MsgBox("You attempted to divide by zero!")
' Insert code to handle this error
Case Else
' Insert code to handle other situations here...
End Select
Resume Next ' Resume execution at the statement immediately
' following the statement where the error occurred.



End Sub
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:50 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.