local ffi = require('ffi')
local hook = require('hooks')
function main()
while not isSampAvailable() do wait(0) end
CChatAddEntry = hook.jmp.new("void(__thiscall*)(void *this, int nType, const char *Source, const char *a4, int32_t textColor, int32_t prefixColor)", CChatAddEntry, getModuleHandle('samp.dll') + 0x64010, 5) -- r3
wait(-1)
end
function CChatAddEntry(this, nType, Source, a4, textColor, prefixColor)
if ffi.string(Source):find('Audio stream:') then
return
end
return CChatAddEntry(this, nType, Source, a4, textColor, prefixColor)
end