require('samp.events').onShowDialog = function(dialogId, style, title, button1, button2, text)
local s = text:match('Ваша сытость: {FFFFFF}(.+)%.{A6A9A7}')
if s then sampAddChatMessage('Ваша сытость: '..s, -1) return false end
end
function main()
repeat wait(0) until isSampAvailable()
sampRegisterChatCommand('example', function()
sampSendChat('/satiety')
end)
wait(-1)
end