-
-
Notifications
You must be signed in to change notification settings - Fork 9
mssql database
mtanksl edited this page Jul 11, 2025
·
3 revisions
Edit the \mtanksl.OpenTibia.GameData\data\server\config.lua file to set the database type to mssql. Then set the host, user, password and name. Or use custom connection string setting overrideconnectionstring property with string value.
The DDL file is in \mtanksl.OpenTibia.Data.MsSql\structure.sql.
server = {
...
database = {
type = "mssql",
...
host = ".\\SQL2017",
port = 1433,
user = "sa",
password = "",
name = "mtots"
}
}