Re: [Release] C# ConnectServer Source
Another Great release, thank you :)
Re: [Release] C# ConnectServer Source
If Anyone Needs:
MIRROR LINK
Re: [Release] C# ConnectServer Source
Quote:
Originally Posted by
Shagoon
thanks for the mirror
Re: [Release] C# ConnectServer Source
Quote:
Originally Posted by
Shagoon
Tanks :) so fast :p
Re: [Release] C# ConnectServer Source
Man, I was looking upon it, I started learning the C# basics and my first project will be a MU Emulator (Obviously when I learn more complex things), the first time I saw your project in VirtualMU I start being your fan! ^^
Re: [Release] C# ConnectServer Source
SHAGOON always is first with mirrors! :)
Re: [Release] C# ConnectServer Source
Woot, very nice piece of emu :D
Re: [Release] C# ConnectServer Source
Re: [Release] C# ConnectServer Source
well, a connect server isn't an "emu", but anyways... i'll use it on the project
Re: [Release] C# ConnectServer Source
Perfect, grateful Wolf.
Now I am going to my tests
Re: [Release] C# ConnectServer Source
Re: [Release] C# ConnectServer Source
very hackish :\ still can be interesting for those who want to learn the very basics of mu protocol.
Re: [Release] C# ConnectServer Source
Re: [Release] C# ConnectServer Source
Re: [Release] C# ConnectServer Source
looking good. I`m sure i will test it
Re: [Release] C# ConnectServer Source
Quote:
Originally Posted by
sontung306
Can't open !
use visual C# express 2008 to open it
Re: [Release] C# ConnectServer Source
I have a recomendation for your project
Everyone ever involved on server maintenance and deployment is used to have "Services" running.
Those Services have some advantages:
- windows resources priority
- security (login account) can be especified
- what to do in case of services shoot down
- system login of each event
- RPC (windows security protected)
and a very long list of extra positive things so developers use to release mission critical and long term server based tools compiled as "windows services".
So why not you?
The main problem will be "support" on how to install and remove a windows service, but install/uninstall classes can be coded inside the exe so people can attach/dettach the service from the OS as a optional feature.
U whant me to help with this?... just let me know
Re: [Release] C# ConnectServer Source
wolfulus can you DC a client from the CS if you want to ?
Re: [Release] C# ConnectServer Source
Quote:
Originally Posted by
sandbird
wolfulus can you DC a client from the CS if you want to ?
if you code it, yes you can, but the current code is a console application, without interface... just a tray icon, with a "hided" console window...
Quote:
Originally Posted by
FT1FT1
I have a recomendation for your project
Everyone ever involved on server maintenance and deployment is used to have "Services" running.
Those Services have some advantages:
- windows resources priority
- security (login account) can be especified
- what to do in case of services shoot down
- system login of each event
- RPC (windows security protected)
and a very long list of extra positive things so developers use to release mission critical and long term server based tools compiled as "windows services".
So why not you?
The main problem will be "support" on how to install and remove a windows service, but install/uninstall classes can be coded inside the exe so people can attach/dettach the service from the OS as a optional feature.
U whant me to help with this?... just let me know
maybe on future updates... i'm not thinking about these things now, just wanting to get it fully functional :]
yeah, bad english, i know, sorry ;D
Re: [Release] C# ConnectServer Source
Another advice:
Working with a fixed count of connection slots is not resource wise.
if you are going to work that way you must at least let the server manager to chose how many connections allow as a parameter so your line:
Code:
private DtClient[] Clients = new DtClient[100];
become:
Code:
private DtClient[] Clients = new DtClient[globalVariableMaxConnections];
I will recommend the use of thread pools instead of fixed count
Re: [Release] C# ConnectServer Source
Another Project Started by me one year ago coded in C++ if your wanna try here is SVN Repository https://opensvn.csie.org/DareEMU/
Re: [Release] C# ConnectServer Source
Re: C# ConnectServer Source