Как сделать отыгровку оружия

NikitaSokol

Активный
Автор темы
206
63
Версия MoonLoader
.026-beta
Как сделать отыгровку оружия
 
Решение
Lua:
-- В бесконечный цикл
if lastgun ~= getCurrentCharWeapon(PLAYER_PED) then
    local gun = getCurrentCharWeapon(PLAYER_PED)
    if gun == 24 then
        sampSendChat("/me достал Desert Eagle")
    elseif gun == 29 then
        sampSendChat("/me достал MP5")
    elseif gun == 25 then
        sampSendChat("/me достал Shotgun")
    elseif gun == 31 then
        sampSendChat("/me достал М4")
    end
    lastgun = gun
end

Dmitriy Makarov

25.05.2021
Проверенный
2,500
1,132
Lua:
-- В бесконечный цикл
if lastgun ~= getCurrentCharWeapon(PLAYER_PED) then
    local gun = getCurrentCharWeapon(PLAYER_PED)
    if gun == 24 then
        sampSendChat("/me достал Desert Eagle")
    elseif gun == 29 then
        sampSendChat("/me достал MP5")
    elseif gun == 25 then
        sampSendChat("/me достал Shotgun")
    elseif gun == 31 then
        sampSendChat("/me достал М4")
    end
    lastgun = gun
end
 
  • Нравится
Реакции: NikitaSokol