function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('fh', function(arg)
if #arg ~= 0 then
sampSendChat('/findihouse ' ..arg)
end
end)
sampRegisterChatCommand('fbiz', function(arg)
if #arg ~= 0 then
sampSendChat('/findibiz ' ..arg)
end
end)
wait(-1)
end