local sampev = require 'lib.samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
print('Я родился')
while true do
wait(0)
end
end
function sampev.onServerMessage(color, text)
if string.find(text, 'Строка которая пишется при покупке кара по госу', 1, true) then
sampSendChat('Марио ин зе кар')
end
end