-
Автор темы
- #1
Всем здравствуйте, возникла проблема с тем что не воспроизводится звук при выстреле, если кто поможет за ранее спасибо.
Sound:
local csgo_weapons = require("neverlose/csgo_weapons")
local select_tab = ui.create("Main", "Select Sound Version")
local enable = select_tab:switch("Enable")
local sound_volume = select_tab:slider("Sound Volume", 0, 100, 50)
local function get_weapon()
local local_player = entity.get_local_player()
local weapon_ent = entity.get_player_weapon(local_player)
if weapon_ent == nil then return end
local weapon = csgo_weapons(weapon_ent)
return weapon.name
end
events.aim_fire:set(function(e)
local me = entity.get_local_player()
if not me or not me:is_alive() then return end
if enable:get() then
local cur_weapon = get_weapon():gsub("%s+", "") or nil
local cur_vol = (" " ..sound_volume:get()/100)
utils.console_exec("playvol weapon_sound/"..cur_weapon..cur_vol)
end
end)