2012-08-04 15:54:35 +02:00
|
|
|
local currentRsa
|
2012-07-18 01:49:21 +02:00
|
|
|
|
|
|
|
function g_game.getRsa()
|
|
|
|
return currentRsa
|
|
|
|
end
|
|
|
|
|
2013-10-05 02:31:44 +02:00
|
|
|
function g_game.findPlayerItem(itemId, subType)
|
|
|
|
local localPlayer = g_game.getLocalPlayer()
|
|
|
|
if localPlayer then
|
|
|
|
for slot = InventorySlotFirst, InventorySlotLast do
|
|
|
|
local item = localPlayer:getInventoryItem(slot)
|
|
|
|
if item and item:getId() == itemId and (subType == -1 or item:getSubType() == subType) then
|
|
|
|
return item
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return g_game.findItemInContainers(itemId, subType)
|
|
|
|
end
|
|
|
|
|
2012-07-18 01:49:21 +02:00
|
|
|
function g_game.chooseRsa(host)
|
2013-01-28 23:52:03 +01:00
|
|
|
if currentRsa ~= CIPSOFT_RSA and currentRsa ~= OTSERV_RSA then return end
|
2013-07-29 00:41:44 +02:00
|
|
|
if host:ends('.tibia.com') or host:ends('.cipsoft.com') then
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(CIPSOFT_RSA)
|
2013-01-17 21:24:41 +01:00
|
|
|
|
|
|
|
if g_app.getOs() == 'windows' then
|
|
|
|
g_game.setCustomOs(OsTypes.Windows)
|
|
|
|
else
|
|
|
|
g_game.setCustomOs(OsTypes.Linux)
|
|
|
|
end
|
2012-07-18 01:49:21 +02:00
|
|
|
else
|
2013-01-21 22:36:53 +01:00
|
|
|
if currentRsa == CIPSOFT_RSA then
|
|
|
|
g_game.setCustomOs(-1)
|
|
|
|
end
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(OTSERV_RSA)
|
2012-07-18 01:49:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-01-28 23:52:03 +01:00
|
|
|
function g_game.setRsa(rsa, e)
|
|
|
|
e = e or '65537'
|
|
|
|
g_crypt.rsaSetPublicKey(rsa, e)
|
|
|
|
currentRsa = rsa
|
2012-07-18 01:49:21 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function g_game.isOfficialTibia()
|
|
|
|
return currentRsa == CIPSOFT_RSA
|
|
|
|
end
|
|
|
|
|
2013-08-04 00:21:08 +02:00
|
|
|
function g_game.getSupportedClients()
|
2012-07-18 01:49:21 +02:00
|
|
|
return {
|
2013-10-04 04:09:54 +02:00
|
|
|
760, 810, 811, 840, 842, 850, 853,
|
|
|
|
854, 860, 861, 862, 870, 910, 940,
|
|
|
|
944, 953, 954, 960, 961, 963, 970,
|
|
|
|
980, 981, 982, 983, 984, 985, 986,
|
2013-11-10 23:09:46 +01:00
|
|
|
1001, 1002, 1010, 1020, 1021, 1022,
|
2012-07-18 01:49:21 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2013-08-04 00:21:08 +02:00
|
|
|
function g_game.getProtocolVersionForClient(client)
|
2012-12-28 12:05:45 +01:00
|
|
|
clients = {
|
2013-08-04 00:21:08 +02:00
|
|
|
[980] = 971,
|
|
|
|
[981] = 973,
|
|
|
|
[982] = 974,
|
|
|
|
[983] = 975,
|
|
|
|
[984] = 976,
|
|
|
|
[985] = 977,
|
|
|
|
[986] = 978,
|
|
|
|
[1001] = 979,
|
|
|
|
[1002] = 980,
|
2012-12-28 12:05:45 +01:00
|
|
|
}
|
2013-08-04 00:21:08 +02:00
|
|
|
return clients[client] or client
|
2012-12-28 12:05:45 +01:00
|
|
|
end
|
|
|
|
|
2012-08-04 15:54:35 +02:00
|
|
|
g_game.setRsa(OTSERV_RSA)
|