Example’s for Module’s
Witch should be in your:: Garrysmod/Garrymod/lua/includes/modules
gm_tmysql.dll
libmysql.dll Should be YOURNAME/Garrysmod Folder There were hl2 is.
Here is an example how you connect your server to your Database…
I’ll recommend db4free.net, it’s free and very good. If the place you’re host doesn’t support Database’s
[lua]–[[
Name: “sv_configuration.lua”.
Product: “Cider (Roleplay)”.
–]]
cider.configuration[“MySQL Host”] = “db4free.net”; – The host that your MySQL database is located.
cider.configuration[“MySQL Username”] = “gameguysz”; – The username that you log into MySQL with.
cider.configuration[“MySQL Password”] = “gameguyszcupcake”; – The password that you log into MySQL with.
cider.configuration[“MySQL Database”] = “gameguyszcider”; – The name of the database that we’ll be using.
cider.configuration[“MySQL Table”] = “players”; – The name of the table where the player data is stored.[/lua]
You don’t need Player’s to anything
I don’t have any idea how to connect ulx with that, this is just and example.