How To Configure the Launcher?
there are 3 files and 1 folder inside the achieved that I Attached
*Upload Me Folder
*Config.exe
*Launcher.exe
*bg.png
Upload the folder inside the upload me to the main directory of the site so it would be yoursite.com/launcher
simply open config.exe and read it and understand
if you're gonna use the Auto Update function
change the 1.0 in the php version to 1.1 or whatever and don't forgot to change the 1.0 in the program too.
Configuring the Launcher:
Spoiler:
Just Read it and understand
this Launcher is very easy to configure if you can read it and understand :p http://i.imgur.com/RE6niv3.png
After configuring the Launcher
just give the 3 files to your players
Launcher.exe
launcher
bg.png
Sorry if I can't explain it clearly next time I'll update this thread :3
Can you share the source? :)
Thanks for sharing..
PinoyHideOut Member:thumbup:
27-04-14
SeiferXIII
Re: Game Launcher With Autoupdate
@TS
Cool design <3 so futuristic ;)
Quote:
Originally Posted by Quiirex
Fucked thing..
You must release a thing better than this first before you can post like that. oh, i really don't like your attitude, so self righteous =__='
27-04-14
UnknownGamer
Re: Game Launcher With Autoupdate
Quote:
Originally Posted by CodeXfire
Can you share the source? :)
Thanks for sharing..
PinoyHideOut Member:thumbup:
Forum name mo sa PHO? :3
rerelease ko din ang source nito :v
Simple Visual Basic lang naman ito ehh :3 ni wawait ko lang ang Order ko na Server :v
27-04-14
Quiirex
Re: Game Launcher With Autoupdate
Quote:
Originally Posted by SeiferXIII
@TS
Cool design <3 so futuristic ;)
You must release a thing better than this first before you can post like that. oh, i really don't like your attitude, so self righteous =__='
Well bro we both know that thing is fucked .. Design aren't 3D well? can you call that thing professional?
27-04-14
NubPro
Re: Game Launcher With Autoupdate
Quote:
Originally Posted by Quiirex
Well bro we both know that thing is fucked .. Design aren't 3D well? can you call that thing professional?
(Y)
Tapatalk can't like
27-04-14
SeiferXIII
Re: Game Launcher With Autoupdate
Quote:
Originally Posted by Quiirex
Well bro we both know that thing is fucked .. Design aren't 3D well? can you call that thing professional?
Make sure you contribute much more cooler release than this post before saying such things to others. I'm so irritated with your attitude.
Ika nga, don't do unto others what you don't want others do unto you.
27-04-14
NubPro
Re: Game Launcher With Autoupdate
Quote:
Originally Posted by SeiferXIII
Make sure you contribute much more cooler release than this post before saying such things to others. I'm so irritated with your attitude.
Ika nga, don't do unto others what you don't want others do unto you.
if i change version 1.0 in my php its auto downloading file and extract?
if you'd change the version in your php it will just close the client and open the default browser with the patch download link
or
you can just add the code for the downloader and extractor :3
Downloader:
Spoiler:
Code:
Imports System.Net
Public Class Form1
Dim pb As New ProgressBar
Public installer As String = Application.StartupPath + "\UGv1.4.exe"
Public link As String = "http://jeromeluisverder.com/Downloads/UGv1.4.exe" 'Latest Update
Public version As String = "1.0" 'Application Version
Private Sub client_ProgressChanged(ByVal sender As Object, ByVal e As DownloadProgressChangedEventArgs)
Dim bytesIn As Double = Double.Parse(e.BytesReceived.ToString())
Dim totalBytes As Double = Double.Parse(e.TotalBytesToReceive.ToString())
Dim percentage As Double = bytesIn / totalBytes * 100
ProgressBar1.Value = Int32.Parse(Math.Truncate(percentage).ToString())
End Sub
Private Sub client_DownloadCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs)
Process.Start(installer)
Me.Close()
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim web As New WebClient()
Dim response = web.DownloadString("http://jeromeluisverder.com/update.php") 'Put your site here
If response = version Then 'Put your programs version here.
MsgBox("Loader Is Up To date")
Me.Hide()
Form2.Show()
Else
MsgBox("Loader is Out Dated ")
Label2.Visible = False
GButton1.Visible = False
Label1.Visible = True
ProgressBar1.Visible = True
Dim client As WebClient = New WebClient
AddHandler client.DownloadProgressChanged, AddressOf client_ProgressChanged
AddHandler client.DownloadFileCompleted, AddressOf client_DownloadCompleted
client.DownloadFileAsync(New Uri(link), installer)
Label1.Text = "Downloading Updates..."
Timer1.Start()
End If
End Sub
End Class
ni copy paste ko lang sa old ko na hack loader with auto update and DLL injector using kernel32 :v
Re: [Open Source]Game Launcher With Auto Update System
Quote:
Originally Posted by MalwareBytes
if a change a patch link on the config.exe then i need to change a 1.0 to 2.0 ? sorry im noob :3
and then after that launcher auto update ?
if you're gonna make an update you should always change the php and the patch link so if you change the version on the php file and if it didn't response to the same version then it will open the new patch link
04-05-14
Johnkenz91
Re: [Open Source]Game Launcher With Auto Update System