function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('b', function(text) if #text>=1 then sampSendChat('/fb '..text) end end)
sampRegisterChatCommand('fb', function(text) if #text>=1 then sampSendChat('/b '..text) end end)
sampRegisterChatCommand('u', function(text) if #text>=1 then sampSendChat('/ub '..text) end end)
sampRegisterChatCommand('ub', function(text) if #text>=1 then sampSendChat('/u '..text) end end)
while true do
wait(-1)
end
end