EOSERV Forum > Lounge > Endless Online Launcher - Made By Haze (V2 OUT NOW!)
Topic is locked.
Page: << 1 2 >>
Endless Online Launcher - Made By Haze (V2 OUT NOW!)
Author Message
Post #88312 Endless Online Launcher - Made By Haze (V2 OUT NOW!)

I decided to make an Endless Online Launcher like sordies.

I made the program in Visual Basic 2008 Express Edition.

You can use the launcher in your server to make it look more professional.

 

How to use

1. First just download the exe here. [856 KB].

2. Now you should have an icon on your desktop called "Endless Online - Launcher V.2". Run It.

Make sure everything works. (Play, Credits, Etc.)

4. Have Fun.

 

How to add it with your server

1. Download the exe here. [856 KB]

2. Now you should have a folder in you C:\ drive called Endless Online. Open It.

3. Now delete the Files folder, then replace it with yours. (Remember to rename it to Files after you replace it.)

4. Now run the Endless Online Launcher on your desktop. Click Play.

5. In the new version (V2) your going to need to keep it in the "Files" fodler because if you don't it cannot read the config.ini file for the settings.

ScreenShots

Credits

Sordie - I used her Endless Online Icon.

---
...
13 years, 42 weeks ago
Post #88313 Re: Endless Online Launcher - Made By Haze

Nice I'm gonna try it and btw FIRST POST Ftw!

13 years, 42 weeks ago
Post #88314 Re: Endless Online Launcher - Made By Haze
Henrym posted: (16th Jul 2011 09:59 pm)

Nice I'm gonna try it and btw FIRST POST Ftw!



Hope you like it :)
---
...
13 years, 42 weeks ago
Post #88337 Re: Endless Online Launcher - Made By Haze

now what would be good is if you gave it the option of auto patching ;) that'd be a good key feature all MMO clients need ;p

---
If money doesn't grow on trees, then why do banks have branches?
13 years, 42 weeks ago
Post #88343 Re: Endless Online Launcher - Made By Haze
DanScott posted: (17th Jul 2011 12:19 am)

now what would be good is if you gave it the option of auto patching ;) that'd be a good key feature all MMO clients need ;p

 

I'm trying to learn how to do that. I'm going to see if i can make it check for the files through wi-fi. (Ex. It checks the server hosters File folder and checks for new items, if new items spoted it will prompt the user to update or it will probably just do it for you.)

---
...
13 years, 42 weeks ago
Post #88447 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

Umm, I downloaded it and the config and play buttons will not work. It says it cannot find a file or something.

---
You're all fags.
13 years, 42 weeks ago
Post #88451 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

Nice Release!

13 years, 42 weeks ago
Post #88453 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

I would give you a +1 but I don't want to install .NET framework just to check it out and I can't really + someone if I cannot test the application.

It looks good from the screenshot though :)

---
I am an alien and not crazy!
13 years, 42 weeks ago
Post #88455 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

Instead of the grey background, resize the EO client background and place it back there :P itll look alot better .(:

---
Andrewbob - I would be on the fucking copter of rofls

Programmer, Web Developer, and Graphics Designer
13 years, 42 weeks ago
Post #88520 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)


@Wild - I don't think a V.3 will be coming out soo i don't know about the whple GUI change.

@Desmond - I didn't make it just for a +1, but i would be honored if you tried it out, i'm a big fan of your work.

---
...
13 years, 42 weeks ago
Post #88521 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)
Haze posted: (18th Jul 2011 12:12 am)


@Wild - I don't think a V.3 will be coming out soo i don't know about the whple GUI change.

@Desmond - I didn't make it just for a +1, but i would be honored if you tried it out, i'm a big fan of your work.

:P btw for the patcher you will have to use WebClient and check for a version txt file, use a streamreader to read it. If their clients version isnt that version that it updates. The WebClient Feature stinks though because i tried tons of ways to use it and it never works.

---
Andrewbob - I would be on the fucking copter of rofls

Programmer, Web Developer, and Graphics Designer
13 years, 42 weeks ago
Post #88523 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)
Wildsurvival posted: (18th Jul 2011 12:17 am)

Haze posted: (18th Jul 2011 12:12 am)


@Wild - I don't think a V.3 will be coming out soo i don't know about the whple GUI change.

@Desmond - I didn't make it just for a +1, but i would be honored if you tried it out, i'm a big fan of your work.

:P btw for the patcher you will have to use WebClient and check for a version txt file, use a streamreader to read it. If their clients version isnt that version that it updates. The WebClient Feature stinks though because i tried tons of ways to use it and it never works.


Lol i was just messing around in VB and decided to make this. In my honest opinion it's a pretty stupid program and should be fixed up abit but i don't have the time nor the interest.

Ps: I was going to add an updater..

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim request As System.Net.HttpWebRequest = System.Net.HttpWebRequest.Create("Server Hosters WebServer URL")
        Dim response As System.Net.HttpWebResponse = request.GetResponse()

        Dim sr As System.IO.StreamReader = New System.IO.StreamReader(response.GetResponseStream())

        Dim newestversion As String = sr.ReadToEnd
        Dim currentversion As String = Application.ProductVersion

        If newestversion.Contains(currentversion) Then
            MessageBox.Show("Your client is up to date.")
        Else
            MessageBox.Show("Newer version is available.")
        End If
    End Sub
End Class

---
...
13 years, 42 weeks ago
Post #88524 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

Yeah then you could do 

Application.ProductVersion = newestversion 

if it lets you set it. Then you could download the newest version from the url. 

Heres mine but the downloading file keeps triggering exceptions.

http://www.youtube.com/watch?v=-fGitzMQyQs

---
Andrewbob - I would be on the fucking copter of rofls

Programmer, Web Developer, and Graphics Designer
13 years, 42 weeks ago
Post #88550 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)
Wildsurvival posted: (18th Jul 2011 12:26 am)

Yeah then you could do 

Application.ProductVersion = newestversion 

if it lets you set it. Then you could download the newest version from the url. 

Heres mine but the downloading file keeps triggering exceptions.

http://www.youtube.com/watch?v=-fGitzMQyQs



Looks nice, i like the GUI more than mines lol.
---
...
13 years, 42 weeks ago
Post #88551 Re: Endless Online Launcher - Made By Haze (V2 OUT NOW!)

i coudl always help you make a nice gui haze ^.^

---
~~ When life give you pasta, you eat it ~~
13 years, 42 weeks ago
Page: << 1 2 >>
Topic is locked.
EOSERV Forum > Lounge > Endless Online Launcher - Made By Haze (V2 OUT NOW!)