while true do
wait(0)
if not sampIsDialogActive() and not sampIsChatInputActive() and not isSampfuncsConsoleActive() then
if wasKeyPressed(key.VK_J) then
sampAddChatMessage('43141254', -1)
end
end
for i = 1, 15 do
if BulletSync[i].enable == true and BulletSync[i].time >= oTime then
local sx, sy, sz = calcScreenCoors(BulletSync[i].o.x, BulletSync[i].o.y, BulletSync[i].o.z)
local fx, fy, fz = calcScreenCoors(BulletSync[i].t.x, BulletSync[i].t.y, BulletSync[i].t.z)
if sz > 1 and fz > 1 then
renderDrawLine(sx, sy, fx, fy, 1, BulletSync[i].tType == 0 and 0xFFFFFFFF or 0xFFFFC700)
renderDrawPolygon(fx, fy-1, 3, 3, 4.0, 10, BulletSync[i].tType == 0 and 0xFFFFFFFF or 0xFFFFC700)
end
end
end
imgui.Process = main_window_state.v
end
end