Как всунуть функцию в чекбокс

aondec

Участник
Автор темы
49
3
Версия MoonLoader
Другое
Помогите, я новичек в создании луа.
Буду благодарен.
Функция:
function onReceiveRpc(rpcId)
if enabled and rpcId == 71 then return false end
end

Чекбокс:
if imgui.Checkbox(u8'NoEjectVehicle', checkboxone) then
sampSendChat("/njc")
end
 

VanoKLR

Известный
852
465
Помогите, я новичек в создании луа.
Буду благодарен.
Функция:
function onReceiveRpc(rpcId)
if enabled and rpcId == 71 then return false end
end

Чекбокс:
if imgui.Checkbox(u8'NoEjectVehicle', checkboxone) then
sampSendChat("/njc")
end
Код:
if imgui.Checkbox("name", bool) then
    enable = not enable
end
 

aondec

Участник
Автор темы
49
3

Вложения

  • Screenshot_4.png
    Screenshot_4.png
    3.2 KB · Просмотры: 14
  • Клоун
  • Грустно
Реакции: cloudflare и MLycoris

aondec

Участник
Автор темы
49
3
Lua:
RPC = {[71] = 'RemovePlayerFromVehicle'}

if imgui.Checkbox(u8'NoEjectVehicle', checkboxone) then
    sampSendChat('/njc')
end

function onReceiveRpc(id, bitStream)
    if checkboxone then
        if RPC[id] then
            return false
        end
    end
end
куда вписывать RPC = {[71] = 'RemovePlayerFromVehicle'}
 

aondec

Участник
Автор темы
49
3
  • Нравится
Реакции: cloudflare