Exportálni függvényt lehet.
local tabla = {
[\"host\"] = \"127.0.0.1\",
[\"user\"] = \"Ween\"
}
function teszt()
return tabla
end
addEventHandler(\"onClientKey\", root, function(button, press)
if button == \"o\" and press then
outputChatBox(\"Hoszt: \" .. exports.resource:teszt().host .. \", Felhasználó: \" .. exports.resource:teszt().user)
end
end)