Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Trickster Server for C#

Joined
Jan 4, 2008
Messages
441
Reaction score
243
Hello my friends,

I'm giving the old server files release project Unus Trickster
for those who are interested in continuing to work.

This package will come with the database to mysql
(Yes, that's right you read, the database of this server is mysql).

For now this package contains only the LoginServer that already makes it possible to login to the client.

As I said before, this is a project that was not completely finished, then for c++ developers who are to continue this development will have to create the GameServer and whatever else is needed.

View attachment c#_Trickster_Server.rar
 

Attachments

You must be registered for see attachments list
Last edited by a moderator:
Joined
Jan 4, 2008
Messages
441
Reaction score
243
Re: Trickster Server for C++

Go to Trickster/Login Server/MySQL.cs

Find this line


//------------------------EDIT-THESE-TWO-LINES-TO-YOUR-MYSQL-CREDENTIALS!!----------------------------
public static MySqlConnection connection = new MySqlConnection("server=localhost;database=Trickster;uid=root;password=root");
public static string ConnectionString = "server=localhost;database=Trickster;uid=root;password=root";
//----------------------------------------------------------------------------------------------------

Edit

server=localhost; (mysql host)
database=Trickster; (database name)
uid=root; (mysql user)
password=root (mysql user pass)
 
Back
Top