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

Начинающий
Статус
Оффлайн
Регистрация
29 Дек 2021
Сообщения
5
Реакции[?]
0
Поинты[?]
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
 
ойойойоойой яйца из трусов вывалились
Пользователь
Статус
Оффлайн
Регистрация
10 Мар 2019
Сообщения
112
Реакции[?]
60
Поинты[?]
7K
Эксперт
Статус
Оффлайн
Регистрация
10 Фев 2021
Сообщения
1,740
Реакции[?]
559
Поинты[?]
2K
Код:
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
 
Начинающий
Статус
Оффлайн
Регистрация
29 Дек 2021
Сообщения
5
Реакции[?]
0
Поинты[?]
0
Сверху Снизу