Mserver
From GMod Wiki
Revision as of 11:00, 16 November 2011 by [RV] TJjokerR (Talk | contribs)
This page has been nominated for deletion. Deletion is due within approximately 30 days from nomination, unless the deletion has been disputed on the talk page. See more pages nominated for deletion here. Reason for deletion: Not what Garry wants the wiki to be used for Last Edit was made on 11/16/2011 |
Go to: Server Hosting |
mServer (Article follows under version 3)
(NOTE: mServer download and support is no longer available) mServer allows you to easily create your own dedicated server via mostly/completely interface instead of command line etc. mServer has many features such as:
- Server auto-rebooter - reboots your server at a specified time.
- Server auto-restarter - reboots the server when it crashes.
- Web panel - for managing your server over the internet, this is useful if you have admins and wish to allow them some control.
- Addons manager - easily install addons for your server with no more then three clicks.
- Server.cfg editor/generator - allows you to generate/modify a server configuration file for your server.
- Users Editor - add and delete administrator's on the server (user.txt file generator).
- Content installer - install content for your server such as TF2, DoD: S, CS:S and more.
- Global bans list - a list full of convicted mingebags.
- Updater - update your server and the hldsupdatetool from one click.
- Help centre - a help website for creating a server of which has video tutorials, text tutorials and more.
- ULX Motd (Message of the day) editor/generator - allows you to create an motd for ulx from pre-made templates.
- Cmdline Editor - create cmdlines for your server and easily change the default of which your server uses to boot with.
- And more.
mServer is a freeware project by Ratboy at FortexHotel. mServer has been created to help the people who are new to servers or for people who need to easily manage their server. The project even has an API of which allows programmers to create their own addon programs to interface with mServer.
A snippet of code of which is using VB.NET and the mServer API
Public Sub start_server() Dim mserver_directory = "C:\garrysmod" Dim mserver As New mserver_api.Boot mserver.server_start(mserver_directory) End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click cmdline_default("Freespace") End Sub Public Sub cmdline_default(ByVal name As String) Dim mserver_directory = "C:\garrysmod" Dim mserver As New mserver_api.Cmdline mserver.default_cmd(mserver_directory, name) End Sub
More API examples can be found on the mServer help centre which can be accessed on the main menu of mServer.