Yeah, ill let you know! That will be great to see game translated on many languages.Quote:
Ohh good job. ;) If u need some help with translate game to polish tell me ;)
-----Little technical News :pimp:------
Disclaimer: Read this if you understands programming things hehe.
So, little explains, why it takes so much time.
Server coded with perfomance & stability in mind. We oriented to commercial quaility, not just "emulator". Known fact, 100% emulators released here, partially works, but - non-thread safe, non stable, not high perfomanced (singleton server). Yeah, their respectful authors put alot of work on it, but those software still just emule. And that so far from really good server app.
Just for example, databases. For prevent lose any data in any cause (and prevent DB overloaded) we are using our own low-level libraries(that enchance C# NET features).
Just look at this:
Code:
using System.Collections.Generic; using System.IO; using System.Reflection; using System.Threading; using Castle.ActiveRecord; using Castle.ActiveRecord.Framework; using Castle.ActiveRecord.Framework.Config; using NHibernate.Cfg; using NHibernate.Dialect; using NHibernate.Engine; using ServerLib.Util; using ServerLib.Util.Collections; using ServerLib.Util.Strings; using ServerLib.Util.DB; using ServerLib.Util.DB.DataInterpolate; using ServerLib.Util.ThreadingParallel; using ServerLib.Util.ORMIntercom;
Most developers, making just MySQL.Data based MySQL connector for DB, and manual written queries to database. Nothing else.
Our platform, allow todo many things, ones of them:
Parallel-Queue for synchronized queries to database.
Timed Save & Safe(lagless) saving user data.
Manipulate a huge amounts of data without MySQL overloading.
All of this takes alot of time, becouse we do all things - complex, safe & stable with perfomance in mind. We dont looking for easy way - "work please! only work until next server restart!", we do a really solutions.
Yeah, agreed - that takes so much time... but try to look on the future!
We want our players play game! Yeah, players should play. They shouldn't cares about technical side of game (Why i cant connect? Why i am lose items after server crash? Why so hard lags? Why %reason% happens?). Players should cares about game things only. Thats what we want, and what we are working for.:handsdown: