What can you expect from it?
- I will finish this Project. I will promise.
- Stable Engine (Error, Freeze and Deadlock free).
- NEW! Free to use
- Coded in C# using Breakz0ne's skills.
- ECE Secured.
- Sessions (Socket) perfectly handle them.
- CMS system coded in PHP.
- Connection between CMS & Emulator.
- Userfriendly Interface (Could be disabled) screen: http://www.iaza.com/work/120105C/iaza14498185857200.png
Information 'Auto updates'
Does automaticly handles SQL queries to update your database.
Does automaticly handles the Emulator version and Client updates.
Information 'Games pack'
Includes all games: Banzai, Freeze, all Tagging games, Puzzlebox, (Snowstorm later)
Information 'Live support'
Our team will help you with setting up your hotel and keep them running in time of your licence.
Information 'Strong security'
Defends your Hotel/ Emulator against:
- Denial of Service (Emulator port)
- Emulator Command line Locker.
- Password protected User interface.
Information extras:
You will receive an bonus by purchasing all packages:
- Receive a complete pack of custom commands (Emulator and users ingame).
- Receive a Remote control panel (Windows Form).
Code snippets:
Code:
public static void AppendLine(string Line, params object[] Parameters)
{
lock (Lock)
{
using (var Writer = TextWriter.Synchronized(Console.Out))
{
Writer.WriteLine(GetLine(Line), Parameters);
}
if (Console.ForegroundColor != ConsoleColor.White)
{
LinesLeft--;
if (LinesLeft <= 0)
{
Console.ForegroundColor = ConsoleColor.White;
}
}
}
}