local tmusor = {2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 2107, 2108, 2109, 2110, 2111}
local telshit = {2077, 2081, 2089, 2090, 2093, 2094, 2100, 2101, 2106, 2107}
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('musor', function()
lua_thread.create(function()
for k, v in ipairs(tmusor) do
sampSendClickTextdraw(v)
wait(150)
end
end)
end)
sampRegisterChatCommand('elshit', function()
lua_thread.create(function()
for k, v in ipairs(telshit) do
sampSendClickTextdraw(v)
wait(150)
end
end)
end)
wait(-1)
end