Действие в радиусе

Yaroslav001

Известный
Автор темы
10
1
Версия MoonLoader
.026-beta
Нужно чтобы скрипт прописывал /faminvite ко всем игрокам в радиусе. Как это сделать?
 
Решение
В зоне стрима
Lua:
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
   
    sampRegisterChatCommands('xyi', function()
        for i = 0,1000 do
            local _, ped = sampGetCharHandleBySampPlayerId(i)
            if _ then
                sampSendChat('/faminvite '..i)
            end
        end
    end)
    wait(-1)
end

В радиусе
Lua:
--/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...

qdIbp

Автор темы
Проверенный
1,451
1,190
В зоне стрима
Lua:
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
   
    sampRegisterChatCommands('xyi', function()
        for i = 0,1000 do
            local _, ped = sampGetCharHandleBySampPlayerId(i)
            if _ then
                sampSendChat('/faminvite '..i)
            end
        end
    end)
    wait(-1)
end

В радиусе
Lua:
--/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

Можешь переделать под себя, я это как говношаблон сделал
 
  • Нравится
Реакции: Yaroslav001