Welcome!

Join our community of MMORPG enthusiasts and private server developers! By registering, you'll gain access to in-depth discussions on source codes, binaries, and the latest developments in MMORPG server files. Collaborate with like-minded individuals, explore tutorials, and share insights on building and optimizing private servers. Join us today and unlock the full potential of MMORPG server development!

Join Today!

Simple Login Source for ODIN Files

Junior Spellweaver
Joined
Sep 20, 2009
Messages
101
Reaction score
29
Ok uhm i built a basic launcher for Odin Files in C#.

It manage the token stuff and user authentication.

ITS NOT SECURE !!!! There is no anti sql inject and stuff, you guys need to do it by yourself.

And there is no WCF transport security. You need to use some sort of certificate for it or a custom authentication.

In that package is the launcher & server. You need to define IP's & MSSQL connect string in the config files.

The fiesta server ip is in the Client.cs class.

MD5 password is needed no salt.

uhm...if u go live with this you should do the client connection in code not with config file.

Config file on server side is just fine cuz normally no one will see it...

This login system is designed for the OdinRest Server & Database.
The connection string is in LoginServer.exe.config.

Code:
<add name="connstring" connectionString="Server=127.0.0.1;Database=Account;User Id=sa;Password=123456789;"/>

change it to w/e you use


could happen that a reference is missing. the dll is located in the debug folder.

Visual Studio 2012 .NET 4.0

View attachment LoginSample.zip
 
Last edited:
Back