function main()
while not isSampAvailable() do wait(0) end
repeat
wait(0)
until sampIsLocalPlayerSpawned()
sampSendChat("/st")
wait(-1)
end
require("lib.samp.events").onShowDialog = function(id, style, title, button1, button2, text)
if id == 0 and title:find("Статистика игрока") then
text = text:gsub("{%x+}", "")
if text:find("Организация") then -- С циклом for какая-то фигня получалось..
lua_thread.create(function() wait(10)
local frac, subdiv, rank = text:match("Организация:%s+(.+)\nПодразделение:%s+(.+)\nДолжность:%s+(.+)\nРанг")
sampAddChatMessage("Ваша организация: "..frac, -1)
sampAddChatMessage("Ваше подразделение: "..subdiv, -1)
sampAddChatMessage("Ваша должность: "..rank, -1)
end)
end
return false
end
end