Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Shell("SFrame.exe /auth_ip: 127.0.0.1 /locale:ASCII /country:US /cash /commercial_shop", vbNormalFocus)
End Sub
Dim p1 As New System.Net.IPEndPoint(System.Net.IPAddress.Parse("IP"), PORT)
Dim client1 As New System.Net.Sockets.TcpClient
Try
client1.Connect(p1)
'this happens if it connects successfully, like blabla label1.text = "online"
Catch ex As Exception
'this happens if its offline, like blabla label1.text = "offline"
End Try
client1.Close()
Just insert the IP of your game server and the port which its using... in my case its:
Quote:
Dim p1 As New System.Net.IPEndPoint(System.Net.IPAddress.Parse(" 127.0.0.1"), 4512)
Dim client1 As New System.Net.Sockets.TcpClient
Try
client1.Connect(p1)
Label1.Text = "online"
Label1.ForeColor = Color.Lime
Catch ex As Exception
Label1.Text = " offline"
Label1.ForeColor = Color.Red
End Try
client1.Close()
Put the whole code in the form load event, and when you launch your program it should check if the game server is running or not.
How create a trainer in cheat engine, and how to create autoassemble scripts [16 June 06/17/2012 - Facebook - 3 Replies Many people asked me that...
Maybe some of these people are from here.. or maybe not..
Anyway.. heres 25 minutes video ;D which should help?
How create a trainer in cheat engine, and how to create autoassemble scripts - YouTube
And yea..
I noticed that there 360p and 720p only.. no idea where the 460p gone... :x
put 720p and full screen, otherwise in normal size its looks crappy
Create Rappelz Launcher with VB 2010? 07/03/2011 - Rappelz - 6 Replies Anyone has a Tutorial how to Create A Rappelz Launcher for P-Server with VB 2010`?
Request: Korean Launcher, Help Files + German Launcher 03/26/2011 - Rappelz - 16 Replies General overview on how to obtain them (download abc, go to xyz, etc.) or the actual files would be fantastic.
Thanks for viewing. :p
Reasons:
US launcher is fuckin' ugly. US help files are awful. Korean Rappelz (normal and KTS) have the best help files on any server, and I'd love to translate them and release them.
[Q] Create auto update on launcher 08/24/2010 - CO2 Private Server - 1 Replies I started learn c# and I build simple launcher, I want to do auto update
I try searched on google but didnt find ...