Подпишитесь на наш Telegram-канал, чтобы всегда быть в курсе важных обновлений! Перейти

Вопрос Get your own secondary weapons, grenades, etc. name

  • Автор темы Автор темы Serein
  • Дата начала Дата начала
Начинающий
Начинающий
Статус
Оффлайн
Регистрация
29 Дек 2021
Сообщения
5
Реакции
0
In lua, I know how to get the name of the weapon in my hand, but I want to know how to get the name of the secondary weapon and the grenade carried, this problem has troubled me for a long time
 
Код:
Expand Collapse Copy
Cheat.RegisterCallback("draw",function()
    local lc = EntityList.GetLocalPlayer()
    if not lc then return end
    if not lc:GetProp("m_iHealth")==0 then return end
    local lcwep = lc:GetProp("m_hMyWeapons")
    print(unpack(lcwep))
end)
gives table of indexes
 
Код:
Expand Collapse Copy
Cheat.RegisterCallback("draw",function()
    local lc = EntityList.GetLocalPlayer()
    if not lc then return end
    if not lc:GetProp("m_iHealth")==0 then return end
    local lcwep = lc:GetProp("m_hMyWeapons")
    print(unpack(lcwep))
end)
gives table of indexes
thank u very much
 
Назад
Сверху Снизу