2012-08-04 15:54:35 +02:00
|
|
|
local currentRsa
|
2012-08-10 02:36:52 +02:00
|
|
|
local enableCreatureNameFormat = true
|
2012-07-18 01:49:21 +02:00
|
|
|
|
|
|
|
function g_game.getRsa()
|
|
|
|
return currentRsa
|
|
|
|
end
|
|
|
|
|
2012-08-10 02:36:52 +02:00
|
|
|
function g_game.isCreatureNameFormatEnabled()
|
|
|
|
return enableCreatureNameFormat
|
|
|
|
end
|
|
|
|
|
2012-07-18 01:49:21 +02:00
|
|
|
function g_game.chooseRsa(host)
|
|
|
|
if host:match('.*\.tibia\.com') or host:match('.*\.cipsoft\.com') then
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(CIPSOFT_RSA)
|
2012-07-18 01:49:21 +02:00
|
|
|
else
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(OTSERV_RSA)
|
2012-07-18 01:49:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function g_game.setRsa(rsa)
|
2012-08-04 15:54:35 +02:00
|
|
|
if currentRsa ~= rsa then
|
|
|
|
currentRsa = rsa
|
|
|
|
g_crypt.rsaSetPublicKey(currentRsa, '65537')
|
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function g_game.isOfficialTibia()
|
|
|
|
return currentRsa == CIPSOFT_RSA
|
|
|
|
end
|
|
|
|
|
|
|
|
function g_game.getOsType()
|
|
|
|
if g_game.isOfficialTibia() then
|
|
|
|
if g_app.getOs() == 'windows' then
|
|
|
|
return OsTypes.Windows
|
|
|
|
else
|
|
|
|
return OsTypes.Linux
|
|
|
|
end
|
|
|
|
else
|
|
|
|
if g_app.getOs() == 'windows' then
|
|
|
|
return OsTypes.OtclientWindows
|
|
|
|
elseif g_app.getOs() == 'mac' then
|
|
|
|
return OsTypes.OtclientMac
|
|
|
|
else
|
|
|
|
return OsTypes.OtclientLinux
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function g_game.getSupportedProtocols()
|
|
|
|
return {
|
2012-08-29 17:09:05 +02:00
|
|
|
810, 853, 854, 860, 861, 862, 870,
|
|
|
|
910, 940, 944, 953, 954, 960, 961,
|
|
|
|
963
|
2012-07-18 01:49:21 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(OTSERV_RSA)
|