пугалка

mcskirmish

Участник
Автор темы
252
14
ищу пугалку для аризоны с маской демона чтобы при нажатии либо ближайшего игрока пугал либо по наводке. ЗАЧЕМ мне это надo? ЧТобы спиздить ресурс на шахте)))
 
Решение
Lua:
require 'moonloader'




function main()
    while not isSampAvailable() do wait(0) end
    
    while true do
        wait(0)
        local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
        if valid and doesCharExist(ped) then
            local result, id = sampGetPlayerIdByCharHandle(ped)
            if result and wasKeyPressed(82) then
                sampSendChat('/scare '..id..'')
            end
        end
    end
end

ПКМ и R

VRush

https://t.me/vrushscript
2,415
1,192
Lua:
require 'moonloader'




function main()
    while not isSampAvailable() do wait(0) end
    
    while true do
        wait(0)
        local valid, ped = getCharPlayerIsTargeting(PLAYER_HANDLE)
        if valid and doesCharExist(ped) then
            local result, id = sampGetPlayerIdByCharHandle(ped)
            if result and wasKeyPressed(82) then
                sampSendChat('/scare '..id..'')
            end
        end
    end
end

ПКМ и R