--/xyi 'радиус'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('xyi', function(rd)
if #rd == 0 then
return sampAddChatMessage('Вы не написали радиус',0xFF0000) end
if rd:find('%d+') then
if tonumber(rd) >= 0 then
for i = 0,1000 do
_, ped = sampGetCharHandleBySampPlayerId(i)
if _ then
x1, y1, z1 = getCharCoordinates(playerPed)
x2, y2, z2 = getCharCoordinates(ped)
if getDistanceBetweenCoords3d(x1,y1,z1, x2,y2,z2) <= tonumber(rd) then
sampSendChat('/faminvite '..i)
end
end
end
else
sampAddChatMessage('Ты дурачек?', 0xFF0000)
end
else
sampAddChatMessage('Введен текст либо символ',0xFF0000)
end
end)
wait(-1)
end