-
Notifications
You must be signed in to change notification settings - Fork 68
Standard stats setup
This is a brief overview of how you can setup a stats website for your multi1v1 server. There are other ways you can display and store stats - but this guide is intended for those not interesting in developing their own code to do so.
As such, it assumes the usage of:
- MySQL for storing stats
- The provided stats web interface
- The provided stats viewer plugin
You could make other choices for the above 3 options while using the multi1v1 plugin, but it would require custom development.
You need a MySQL server running somewhere. Many web hosting companies provided managed services that include a MySQL server. If you are willing to do some light-command line work, you could get a cheap VPS from a company like Digital Ocean and install MySQL on it. From that you can create a database, create a user, and grant permissions to the user on the database.
If you are using a remote server as your MySQL server, make sure you remote connections are allowed. (by default they aren't, usually you can just edit the bind-address
ip in /etc/mysql/my.cnf
to do so)
Once your database is set up, you must add a new entry on the CS:GO server to addons/sourcemod/configs/databases.cfg
with the name "multi1v1".
Note: if you only want the stats and no website, you could stop here and be done.
coming soon...
coming soon...