HOW TO - Multi 1v1

Post Reply
User avatar
mennes
Compulsive poster
Compulsive poster
Posts: 73
https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
Joined: Sat Nov 08, 2014 1:08 pm
Location: Michigan

HOW TO - Multi 1v1

Post by mennes »

Seeing a ton of people asking the same question, hopefully this post gets placed somewhere where people kind find it easily.

Software I suggest having on hand is filezilla and Notepad++

Im a step-by-step kinda guy, so here it is
  1. Go Here and download both "multi1v1_1.0.2.zip" and "multi1v1_web_1.0.2.zip" at the bottom of the first post
  2. Go Here to view the OFFICIAL instructions

    Once you get to where you need to set up stats, you NEED a webserver. If you ordered a cs:go server you should have one provided. *Stats are not needed
  3. Go to your website control panel and click databases
  4. Next to "Add a new database:" type "Multi1v1" and click submit changes
  5. Once the page has refreshed, make sure to allow external connections (only needed for the multi1v1 database, I do this to keep my other databases secure)
  6. Follow the wiki page link provided in the instructions
This is how my csgo/addons/sourcemod/configs/database.cfg file looks (sort of):

Code: Select all

"Databases"
{
	"driver_default"		"mysql"
	
	// When specifying "host", you may use an IP address, a hostname, or a socket file path
	
	"default"
	{
		"driver"			"mysql"
		"host"				"34thgamingdivision.com"
		"database"			"defaultvps_multi1v1"
		"user"				"myusername"
		"pass"				"mypassword"
		//"timeout"			"0"
		"port"			    "3306"
	}
	
	"storage-local"
	{
		"driver"			"sqlite"
		"database"			"sourcemod-local"
	}

	"clientprefs"
	{
		"driver"			"mysql"
		"host"				"34thgamingdivision.com"
		"database"			"defaultvps_multi1v1"
		"user"				"myusername"
		"pass"				"mypassword"
		//"timeout"			"0"
		"port"			    "3306"
	}
	
	"multi1v1"
	{
	    "driver"			"mysql"
		"host"				"34thgamingdivision.com"
		"database"			"defaultvps_multi1v1"
		"user"				"myusername"
		"pass"				"mypassword"
		//"timeout"			"0"
		"port"			    "3306"
	}
}

If you have any questions, feel free to reply to this so i can add to it!
Feel free to contact me on discordd @ Mennes34
Post Reply