
Originally Posted by
brucelot
Can anyone release a 32 bit version of this?
Re-compile as 32bit in Visual Basic 2010 c#.
- - - Updated - - -

Originally Posted by
Glee
How do I get the Uptime and Users online, Room loaded in the about command?
Simple, edit the code and find:
!! UPTIME !!
Add in there:
Code:
TimeSpan Uptime = DateTime.Now - SilverwaveEnvironment.ServerStarted;
And in the string add:
Code:
Uptime: " + Uptime.Minutes + " minutes, " + Uptime.Hours + " hours and " + Uptime.Days + " day(s).
!! USERS ONLINE - AND ROOMS LOADED !!
Find:
Add in the string:
Code:
" + SilverwaveEnvironment.GetGame().GetClientManager().ClientCount + " members online and " + SilverwaveEnvironment.GetGame().GetRoomManager().LoadedRoomsCount + " rooms loaded
:) Should be easy. And don't forget to recompile.
- - - Updated - - -

Originally Posted by
Nathandj
Which cms can I use it with?
Everything which basiclly loads the client.. Doesn't matter, you will see if the CMS is supported and recognized with the Database.
I do not recommend it, but you can use RevCMS.