oracle database - mtanksl/OpenTibia GitHub Wiki

Introduction

Edit the \mtanksl.OpenTibia.GameData\data\server\config.lua file to set the database type to oracle. Then set the host, user and password. Or use custom connection string setting overrideconnectionstring property with string value.

The DDL file is in \mtanksl.OpenTibia.Data.Oracle\structure.sql.

Example

server = {
	...
	database = {
		type = "oracle",
		...
		host = "192.168.1.18",
		port = 1521,
		user = "system",
		password = "",
		name = "mtots"
	}
}