I recently got ez inv for my darkrp server and it seems to be having issues saving user's inventories. It has MySQL support, but I'm not sure how to make the MySQL database or hook it up to gmod.
I noticed on my server's autoinstallers you can get MySQLOO. What is that? Something that let's you connect to external databases? Anyways here's the config. Could anyone explain how to get this working?
Code: Select all
EZI.sql = {
mysql = true, // Are you using MySQL on your server? if so enable this.
ip = "127.0.0.1", // IP of your MySQL server, it is recommended to have it hosted on your game server.
username = "username", // Username of the MySQL account you wish to use.
password = "password", // Password of the MySQL account you wish to use. !Keep this Secure!
invtable = "invtable", // Table you're using on your MySQL server
port = 3306 // Port of your MySQL server, default is 3306.
}