Amit eddig írt, hogy nem tudja betölteni a modult megoldódott, viszont még mindig fent áll a következő hiba:
[12:43:46] ERROR: mysql/connection.lua:20: attempt to call global \'mysql_connect
\' (a nil value)
A script ezen része pedig így néz ki:
function connectToDatabase(res)
MySQLConnection = mysql_connect(hostname, username, password, database, port)
if (not MySQLConnection) then
if (res == getThisResource()) then
cancelEvent(true, \"Cannot connect to the database.\")
end
return nil
end
return nil
end
addEventHandler(\"onResourceStart\", getResourceRootElement(getThisResource()), connectToDatabase, false)