local sf = require 'sampfuncs'
local moonloader = require 'moonloader'
local sampev = require 'lib.samp.events'
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(0) end
sampev.onSendChat = function(msg)
if string.sub(msg, 1, 3) ~= "/b " then
local newMsg = "/b " .. msg
sampSendChat(newMsg)
return false
end
end
end