events

xavier_v

Участник
Автор темы
76
3
Версия MoonLoader
.026-beta
как сделать так, чтобы что-то произошло, при взятие оружие в руки
 
Решение
Lua:
local weapons = require('game.weapons')
local bool = false
local LastWeapon = 0

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        if bool then
            if getCurrentCharWeapon(PLAYER_PED) ~= LastWeapon then
                LastWeapon = getCurrentCharWeapon(PLAYER_PED)
                sampSendChat('/me взял в руки '..weapons.get_name(LastWeapon))
            end
        end
    end
end

-- в imgui.OnDrawFrame()

if imgui.ToggleButton(--[[что-то там]]) then bool = not bool end

chapo

чопа сребдс // @moujeek
Модератор
8,860
11,544
Lua:
local weapons = require('game.weapons')
local LastWeapon = 0

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        if getCurrentCharWeapon(PLAYER_PED) ~= LastWeapon then
            LastWeapon = getCurrentCharWeapon(PLAYER_PED)
            sampSendChat('/me взял в руки '..weapons.get_name(LastWeapon))
        end
    end
end
 
  • Нравится
Реакции: xavier_v

xavier_v

Участник
Автор темы
76
3
Как сделать, чтобы эта функция работала, только если она включена?
NrXLHED8y10.jpg

chapo


imgui.ToggleButton
 
Последнее редактирование:

whyega52

Гений, миллионер, плейбой, долбаеб
Модератор
2,778
2,598
Lua:
local weapons = require('game.weapons')
local bool = false
local LastWeapon = 0

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        if bool then
            if getCurrentCharWeapon(PLAYER_PED) ~= LastWeapon then
                LastWeapon = getCurrentCharWeapon(PLAYER_PED)
                sampSendChat('/me взял в руки '..weapons.get_name(LastWeapon))
            end
        end
    end
end

-- в imgui.OnDrawFrame()

if imgui.ToggleButton(--[[что-то там]]) then bool = not bool end
 
  • Нравится
Реакции: xavier_v