View Single Post
Skyy
AlliedModders Donor
Join Date: Jan 2010
Location: Toronto, Canada
Old 03-22-2024 , 14:52   Re: [L4D2] RPGMaker v3.4.5.3c - Updated 3/16/2024
Reply With Quote #4

Quote:
Originally Posted by kazumakiryu View Post
please add support of local server
Hello, thank-you for your interest in RPGMaker.

RPGMaker2 can run on localhost, but it must still connect to a MySQL server, though that server can also be hosted locally. You'll want to google how to setup a MySQL server locally. If you're using LINUX, it's as easy as installing LAMP.

To setup the databases.cfg to work with a localhost server, simply set the server to "localhost" eg:
Code:
	"rum_rpg"
	{
		"driver"            "default"
		"host"				"localhost"
		"database"			"RPGMaker"
		"user"				"<user>"
		"pass"				"<password>"
		"port"				"3306"
	}
Skyy is offline