по команде должен быть звук, но его нет. все что требуется включено, файл со звуком загружается
Lua:
local sampev = require 'lib.samp.events'
function main()
while not isSampAvailable() do wait(0) end
passedSound = loadAudioStream('moonloader/resource/audio/passed.mp3')
sampRegisterChatCommand('passed', function()
releaseAudioStream(passedSound)
printStyledString('mission passed!~w~~n~+respect', 1000, 1)
end)
while true do
wait(0)
end
end