• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Release] Saga_Legacy w/client fix

Newbie Spellweaver
Joined
Nov 4, 2005
Messages
66
Reaction score
3
I have found the solution to increase allowed clients on Legacy posted below:
In visual studio c#, open SagaLogin (Visual C# Project file should be in the SagaLogin Folder),
once open double click LoginClient.cs and look for the statements below:
TimeSpan span = server.lastPong - server.lastPing;
if (span.TotalMilliseconds < 50)
cInfo.ping = CharServer.Status.OK;
else if (span.TotalMilliseconds < 300)
cInfo.ping = CharServer.Status.CROWDED;
else if (span.TotalMilliseconds >= 300)
cInfo.ping = CharServer.Status.OVERLOADED;
#if Preview_Version
if (LoginClientManager.Instance.clients.Count > 15)
cInfo.ping = CharServer.Status.OVERLOADED;
#endif
And make it look like this:
TimeSpan span = server.lastPong - server.lastPing;
if (span.TotalMilliseconds < 50)
cInfo.ping = CharServer.Status.OK;
else if (span.TotalMilliseconds < 300)
cInfo.ping = CharServer.Status.CROWDED;
else if (span.TotalMilliseconds >= 300)
cInfo.ping = CharServer.Status.OVERLOADED;
else if (LoginClientManager.Instance.clients.Count > 15)
cInfo.ping = CharServer.Status.OVERLOADED;
:?:
Make sure you do this (add--> else if(LoginClientManager.Instance.clients.Count > 15)) if you do not you will get errors
Now you server should support 100+ clients

Remember to recompile everything (login, gateway, and map)

This is my set up (not included in files, sorry you'll have to figure this out on your own)
hint:: look in scripts folder :wink:
Cattleya (Job Changer) Working
bgondron - [Release] Saga_Legacy w/client fix - RaGEZONE Forums

Stat Reseter that I personally scripted
bgondron - [Release] Saga_Legacy w/client fix - RaGEZONE Forums

Blacksmith (all auges included in his shop) Working
other blacksmiths work also
bgondron - [Release] Saga_Legacy w/client fix - RaGEZONE Forums

Christmas Tree that I personally scripted to give out Antlers and Rudolph Nose
bgondron - [Release] Saga_Legacy w/client fix - RaGEZONE Forums
 
Last edited:
Newbie Spellweaver
Joined
Jun 9, 2008
Messages
79
Reaction score
0




Arrangements like this will please help:blushing::blushing::blushing:
 
Junior Spellweaver
Joined
Nov 8, 2008
Messages
155
Reaction score
0
thx sir... good thread! i will try for test!
 
Skilled Illusionist
Joined
Sep 15, 2005
Messages
301
Reaction score
3
how to set save time server? cant save last minutes play..
 
Newbie Spellweaver
Joined
Jun 9, 2008
Messages
79
Reaction score
0




please help me take a long time for this mistake and that is by db

forgive my use English translator
 
Newbie Spellweaver
Joined
Jan 31, 2008
Messages
5
Reaction score
0
The links for download are down, upload those in other miror please.
 
Skilled Illusionist
Joined
Sep 15, 2005
Messages
301
Reaction score
3
Need Update this server. Its cant make party or invites as friend in game.. T__T
 
Newbie Spellweaver
Joined
Jan 25, 2009
Messages
5
Reaction score
1
yeah the link is down... :( how sad.. i want to try..
 
Skilled Illusionist
Joined
Jun 23, 2008
Messages
319
Reaction score
10
Here You Go.
 
Newbie Spellweaver
Joined
Jun 18, 2008
Messages
19
Reaction score
0
thanks darnals

Anybody know how to configure the saga legacy?:?::?::?::?::?:
 
Newbie Spellweaver
Joined
Nov 26, 2004
Messages
6
Reaction score
0
u forgot the sagalogin.sql on your release..:tongue:
and the sagalogin.sql on the nitros release dont have GM tab.
Some one can make a sagalogin.sql for this release whit gm tab:?:

Edit. never mind i found gm lvl on char table in database.

Edit 2. Can u tell me how to make the saga legacy_SV 2008.sln for compilation on ur release.
 
Last edited:
Back
Top