Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Fiesta Online
You last visited: Today at 00:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Visual Basic .php login

Discussion on Visual Basic .php login within the Fiesta Online forum part of the MMORPGs category.

Reply
 
Old   #1
 
EpicFight's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 1,697
Received Thanks: 615
Visual Basic .php login

So ich habe ich mal für euch ein login gemacht in Visual Basic^^
Patcher könnte ich euch selber mit rein coden
design habe ich weggelassen damit ihr es euch selber anpassen könnt
Damit es geht brauch man framework .net 4
die .php eben hosten und im projekt wo steht anpassen ^^




Thanks to Mr. Stu ( iStu) (ExtrinsicStudioLauncherUtility.dll von ihm)
EpicFight is offline  
Thanks
2 Users
Old 04/27/2012, 20:51   #2
 
BlackTigerx3's Avatar
 
elite*gold: 0
Join Date: Apr 2012
Posts: 61
Received Thanks: 29
Ich sag trz Danke für den Release xD

Ist sehr Hilfreich für leute die noch nicht wussten wie es Funktioniert.
BlackTigerx3 is offline  
Old 04/29/2012, 00:21   #3
 
Che's Avatar
 
elite*gold: 120
Join Date: Aug 2010
Posts: 7,450
Received Thanks: 2,755
Interessant, jedoch bereits sehr lange bekannt... Der Login-Vorgang an sich ist btw sehr unsicher, ins Spiel einloggen geht ganz einfach (und auch ohne Terra-Bibliotheken):
Code:
<clientname>.exe -i <serverip> -p <loginserver-port> -k <username>#<passwort>
also beispielsweise:
Code:
client.exe -i 127.0.0.1 -p 9010 -k Che#geheim
Das ganze kann man in so ziemlich jeder Programmiersprache ausführen, in C# wäre es zB:
Code:
[FONT=Verdana][SIZE=2][COLOR=Black]using[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black] System[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black];
[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]using[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black] System.Diagnostics[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black];
   [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]namespace patcherlogin [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]{
     [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]class CSharp_Beispiel
     [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]{
         [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]static[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black] void Main[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]([/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]string[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black][[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]] args[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black])
         [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]{
             string username = "Che"; // beispielsweise durch eine Textbox
             string passwort = "geheim"; // auch durch eine Textbox
             string arguments = "";
             arguments += "-i 127.0.0.1"; // IP
             arguments += "-p 9010"; // Port
             arguments += "-k " + username + "#" + passwort;
             Process start [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]= [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]new Process[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]([/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black])[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black];
             [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]start[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black].[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]StartInfo[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black].[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]FileName   [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]=[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black] "client.exe"[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]; // client-Datei
             [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]start[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black].[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]StartInfo[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black].[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]Arguments [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]=[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black] arguments[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black];
             [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]start[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black].[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]Start[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]([/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black])[/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black];
         [/COLOR][/SIZE][/FONT][FONT=Verdana][SIZE=2][COLOR=Black]}
     }
   }[/COLOR][/SIZE][/FONT]
Che is offline  
Old 04/29/2012, 19:26   #4
 
EpicFight's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 1,697
Received Thanks: 615
ja es gibt verschiedene wege das war eig ein beispiel

z.b.
Erst kommt das und dann erst der patcher selber
EpicFight is offline  
Reply


Similar Threads Similar Threads
[HILFE] Visual Basic Launcher Login
05/18/2012 - .NET Languages - 8 Replies
Hallo Leute! Ich habe für meinen Server einen eigenen VB Minecraft Launcher erstellt! So weit funktioniert alles bestens bis ich meine Daten eingebe und auf Login drücke... Es erscheint folgende Fehlermeldung: "Die Datei wurde nicht gefunden" Das ganze passiert in dieser Zeile: Shell(Environment.SpecialFolder.ApplicationData & "\.minecraft\bin\minecraft.jar" & benutzername.Text & " " & passwort.Text)
Visual Basic Login-Form problem!
01/23/2012 - General Coding - 12 Replies
Hallo liebe Com. Ich weiß nicht ob ich das richtige topic erwischt habe, wenn nicht bitte verschieben. Zum Thema.. Ich versuche schon seit längerem eine VB Login-Form zu erstellen die über SQL / MSQL läuft, am liebsten wäre mir über mein SQL was ich auf PC hab oder solch einer Datenbank seite. Ich hab schon das tutorial hier gesehen auf EPVP: www.elitepvpers.com/forum/epvp-coders-tutorials/58 7234-vb-2008-how-login-und-registrierung-ein-progr amm-einbauen.html
Visual Basic Mydata Error bei der Datenbank mit Login Funktion
04/17/2011 - Coding Tutorials - 3 Replies
Also die Source hat ein Error wegen diese Und das ist der Source darüber und darunter Bitte um Hilfe der Fehler wird mir angezeigt
[Visual Basic 08]Login+Register?
11/30/2010 - .NET Languages - 2 Replies
hi also ich wollte fragen wie ich eine login box mit einem register bekomme also ohne einen ftp server oder so?



All times are GMT +2. The time now is 00:39.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.