помогите реализовать это

harryys

Новичок
Автор темы
9
0
Версия MoonLoader
.026-beta
Код:
local on = require "lib.samp.events" -- подк библии
local audio = loadAudioStream("moonloader/megaphone.mp3") -- Ищет музыку с названием xyna.mp3 в директории moonloder

function on.onServerMessage(clr, sms) -- Функция ловли сообщ от сервера
    if sms:find('Водитель,') then -- если в чате найде сообщ 'qwe' то
        setAudioStreamState(audio, 1) --воспроизводится аудио
    end
end

Нашел такой код на бластхаке, когда в чат пишешь определенный текст, воспроизводится файл mp3. Мне нужно что бы после отправки команды /m (и далее любой тект от игрока) воспроизводилось аудио. Можете помочь реализовать ?
 

Akionka

akionka.lua
Проверенный
742
500
Lua:
local on = require "lib.samp.events" -- подк библии
local audio = loadAudioStream("moonloader/megaphone.mp3") -- Ищет музыку с названием xyna.mp3 в директории moonloder

function on.onSendChat(message) -- Функция ловли сообщ от сервера
    local text = message:match('^/m (.+)$')
    if text then
        setAudioStreamState(audio, 1) --воспроизводится аудио
    end
end
 

harryys

Новичок
Автор темы
9
0
Lua:
local on = require "lib.samp.events" -- подк библии
local audio = loadAudioStream("moonloader/megaphone.mp3") -- Ищет музыку с названием xyna.mp3 в директории moonloder

function on.onSendChat(message) -- Функция ловли сообщ от сервера
    local text = message:match('^/m (.+)$')
    if text then
        setAudioStreamState(audio, 1) --воспроизводится аудио
    end
end
Почему то не работает
17:35:16.679613] (system) Session started.
[17:35:16.682627] (debug) Module handle: 6AE60000

MoonLoader v.026.4-beta loaded.
Developers: FYP, hnnssy, EvgeN 1137

Copyright (c) 2016, BlastHack Team
https://www.blast.hk/moonloader/

[17:35:16.682627] (info) Working directory: D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader
[17:35:16.683648] (debug) FP Control: 0009001F
[17:35:16.683648] (debug) Game: GTA SA 1.0.0.0 US
[17:35:16.683648] (system) Installing pre-game hooks...
[17:35:17.051737] (system) Hooks installed.
[17:35:27.790267] (debug) Initializing opcode handler table
[17:35:27.810262] (debug) package.path = D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?\init.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?\init.lua;.\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?\init.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?\init.luac;.\?.luac
[17:35:27.810262] (debug) package.cpath = D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.dll;
[17:35:27.814268] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AirBrake.v7.lua'...
[17:35:27.858274] (debug) New script: 07CA93A4
[17:35:28.068271] (system) AirBrake.v7: Loaded successfully.
[17:35:28.068271] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AutoReboot.lua'...
[17:35:28.068271] (debug) New script: 07CA8F0C
[17:35:28.072282] (system) ML-AutoReboot: Loaded successfully.
[17:35:28.072282] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\BufferCleaner.lua'...
[17:35:28.072282] (debug) New script: 0D3FFDD4
[17:35:28.086283] (system) BufferCleaner.lua: Loaded successfully.
[17:35:28.086283] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\Chat MImGui 7.0.lua'...
[17:35:28.086283] (debug) New script: 0D3FFAC4
[17:35:28.306297] (system) Chat MImGui: Loaded successfully.
[17:35:28.306297] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\check-moonloader-updates.lua'...
[17:35:28.306297] (debug) New script: 0D3FFF5C
[17:35:28.319298] (system) Check MoonLoader Updates: Loaded successfully.
[17:35:28.319298] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\dmx.lua'...
[17:35:28.319298] (debug) New script: 0D4000E4
[17:35:28.358300] (system) dmx.lua: Loaded successfully.
[17:35:28.358300] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\doorcollision.lua'...
[17:35:28.358300] (debug) New script: 0D40026C
[17:35:28.378301] (system) col nas ports de veiculos: Loaded successfully.
[17:35:28.378301] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fogdist.lua'...
[17:35:28.378301] (debug) New script: 0D4011BC
[17:35:28.398302] (system) fogdist.lua: Loaded successfully.
[17:35:28.398302] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fyo-notepad.lua'...
[17:35:28.399302] (debug) New script: 0D40057C
[17:35:28.606316] (system) fyo-notepad.lua: Loaded successfully.
[17:35:28.606316] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\hitinformer.luac'...
[17:35:28.606316] (debug) New script: 0D3FF7B4
[17:35:28.713306] (system) Absolute Damage Informer: Loaded successfully.
[17:35:28.713306] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\HP-speed-radar-1.5rel.luac'...
[17:35:28.713306] (debug) New script: 0D3FF93C
[17:35:28.791325] (system) HP Radar: Loaded successfully.
[17:35:28.791325] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\megaphone.lua'...
[17:35:28.791325] (debug) New script: 0D4003F4
[17:35:28.819368] (system) megaphone.lua: Loaded successfully.
[17:35:28.819368] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\optimized.lua'...
[17:35:28.819368] (debug) New script: 0D400704
[17:35:28.821398] (system) optimized.lua: Loaded successfully.
[17:35:28.822395] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\PDcoordination.lua'...
[17:35:28.822395] (debug) New script: 0D401344
[17:35:28.876391] (system) PDcoordination.lua: Loaded successfully.
[17:35:28.876391] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\reload_all.lua'...
[17:35:28.876391] (debug) New script: 0D40088C
[17:35:28.884333] (system) ML-ReloadAll: Loaded successfully.
[17:35:28.884333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SF Integration.lua'...
[17:35:28.884333] (debug) New script: 0D3FFC4C
[17:35:28.902333] (system) SF Integration: Loaded successfully.
[17:35:28.902333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SniperFix.lua'...
[17:35:28.902333] (debug) New script: 0D4014CC
[17:35:28.923335] (system) SniperFix.lua: Loaded successfully.
[17:35:28.923335] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\stroboscopes.lua'...
[17:35:28.923335] (debug) New script: 0D400A14
[17:35:28.926335] (system) STROBOSCOPES: Loaded successfully.
[17:35:28.926335] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\ttime06.lua'...
[17:35:28.926335] (debug) New script: 0D400B9C
[17:35:28.943333] (system) TextDraw Time: Loaded successfully.
[17:35:28.943333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\VehInfo.lua'...
[17:35:28.943333] (debug) New script: 0D400D24
[17:35:28.956336] (system) Vehicle Info: Loaded successfully.
[17:35:47.849401] (system) Installing post-load hooks...
[17:35:47.849401] (system) Hooks installed.
[17:35:56.541418] (script) optimized.lua: на самом деле сборку сделал Pheonixxx а скачал ты ее у лоха
[17:35:56.541418] (system) optimized.lua: Script terminated. (0D400704)
[17:36:49.907752] (system) AirBrake.v7: Script terminated. (07CA93A4)
[17:36:49.908751] (system) ML-AutoReboot: Script terminated. (07CA8F0C)
[17:36:49.909731] (system) BufferCleaner.lua: Script terminated. (0D3FFDD4)
[17:36:49.911751] (system) Chat MImGui: Script terminated. (0D3FFAC4)
[17:36:49.918716] (system) Check MoonLoader Updates: Script terminated. (0D3FFF5C)
[17:36:49.918716] (system) dmx.lua: Script terminated. (0D4000E4)
[17:36:49.920749] (system) col nas ports de veiculos: Script terminated. (0D40026C)
[17:36:49.922716] (system) fogdist.lua: Script terminated. (0D4011BC)
[17:36:49.923756] (system) fyo-notepad.lua: Script terminated. (0D40057C)
[17:36:49.938733] (system) Absolute Damage Informer: Script terminated. (0D3FF7B4)
[17:36:49.940752] (system) HP Radar: Script terminated. (0D3FF93C)
[17:36:49.942734] (system) megaphone.lua: Script terminated. (0D4003F4)
[17:36:49.942734] (system) PDcoordination.lua: Script terminated. (0D401344)
[17:36:49.946731] (system) ML-ReloadAll: Script terminated. (0D40088C)
[17:36:49.946731] (system) SF Integration: Script terminated. (0D3FFC4C)
[17:36:49.947732] (system) SniperFix.lua: Script terminated. (0D4014CC)
[17:36:49.948750] (system) STROBOSCOPES: Script terminated. (0D400A14)
[17:36:49.949750] (system) TextDraw Time: Script terminated. (0D400B9C)
[17:36:49.949750] (system) Vehicle Info: Script terminated. (0D400D24)
[17:36:49.950731] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AirBrake.v7.lua'...
[17:36:49.950731] (debug) New script: 0D40088C
[17:36:49.959718] (system) AirBrake.v7: Loaded successfully.
[17:36:49.959718] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AutoReboot.lua'...
[17:36:49.959718] (debug) New script: 0D4011BC
[17:36:49.961751] (system) ML-AutoReboot: Loaded successfully.
[17:36:49.961751] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\BufferCleaner.lua'...
[17:36:49.961751] (debug) New script: 0D401344
[17:36:49.963718] (system) BufferCleaner.lua: Loaded successfully.
[17:36:49.963718] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\Chat MImGui 7.0.lua'...
[17:36:49.963718] (debug) New script: 0D3FFAC4
[17:36:49.984735] (system) Chat MImGui: Loaded successfully.
[17:36:49.984735] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\check-moonloader-updates.lua'...
[17:36:49.984735] (debug) New script: 0D4014CC
[17:36:49.988810] (system) Check MoonLoader Updates: Loaded successfully.
[17:36:49.988810] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\dmx.lua'...
[17:36:49.988810] (debug) New script: 0D400A14
[17:36:49.997825] (system) dmx.lua: Loaded successfully.
[17:36:49.997825] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\doorcollision.lua'...
[17:36:49.997825] (debug) New script: 0D3FF7B4
[17:36:49.999800] (system) col nas ports de veiculos: Loaded successfully.
[17:36:49.999800] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fogdist.lua'...
[17:36:49.999800] (debug) New script: 0D400B9C
[17:36:50.001821] (system) fogdist.lua: Loaded successfully.
[17:36:50.001821] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fyo-notepad.lua'...
[17:36:50.001821] (debug) New script: 0D3FF93C
[17:36:50.010824] (system) fyo-notepad.lua: Loaded successfully.
[17:36:50.011801] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\hitinformer.luac'...
[17:36:50.011801] (debug) New script: 0D400D24
[17:36:50.030828] (system) Absolute Damage Informer: Loaded successfully.
[17:36:50.030828] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\HP-speed-radar-1.5rel.luac'...
[17:36:50.030828] (debug) New script: 0D3FFC4C
[17:36:50.042838] (system) HP Radar: Loaded successfully.
[17:36:50.042838] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\megaphone.lua'...
[17:36:50.043835] (debug) New script: 0D4000E4
[17:36:50.050838] (system) megaphone.lua: Loaded successfully.
[17:36:50.050838] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\optimized.lua'...
[17:36:50.050838] (debug) New script: 0D3FFDD4
[17:36:50.052808] (system) optimized.lua: Loaded successfully.
[17:36:50.052808] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\PDcoordination.lua'...
[17:36:50.052808] (debug) New script: 0D3FFF5C
[17:36:50.065820] (system) PDcoordination.lua: Loaded successfully.
[17:36:50.065820] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\reload_all.lua'...
[17:36:50.065820] (debug) New script: 0D40026C
[17:36:50.067775] (system) ML-ReloadAll: Loaded successfully.
[17:36:50.067775] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SF Integration.lua'...
[17:36:50.067775] (debug) New script: 0D4003F4
[17:36:50.070814] (system) SF Integration: Loaded successfully.
[17:36:50.070814] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SniperFix.lua'...
[17:36:50.071835] (debug) New script: 0D40057C
[17:36:50.079840] (system) SniperFix.lua: Loaded successfully.
[17:36:50.079840] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\stroboscopes.lua'...
[17:36:50.079840] (debug) New script: 07CA8F0C
[17:36:50.083840] (system) STROBOSCOPES: Loaded successfully.
[17:36:50.083840] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\ttime06.lua'...
[17:36:50.083840] (debug) New script: 07CA93A4
[17:36:50.086808] (system) TextDraw Time: Loaded successfully.
[17:36:50.087760] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\VehInfo.lua'...
[17:36:50.087760] (debug) New script: 1F03BC14
[17:36:50.088840] (system) Vehicle Info: Loaded successfully.
[17:36:50.097740] (script) optimized.lua: на самом деле сборку сделал Pheonixxx а скачал ты ее у лоха
[17:36:50.097740] (system) optimized.lua: Script terminated. (0D3FFDD4)
 

Akionka

akionka.lua
Проверенный
742
500
Почему то не работает
17:35:16.679613] (system) Session started.
[17:35:16.682627] (debug) Module handle: 6AE60000

MoonLoader v.026.4-beta loaded.
Developers: FYP, hnnssy, EvgeN 1137

Copyright (c) 2016, BlastHack Team

[17:35:16.682627] (info) Working directory: D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader
[17:35:16.683648] (debug) FP Control: 0009001F
[17:35:16.683648] (debug) Game: GTA SA 1.0.0.0 US
[17:35:16.683648] (system) Installing pre-game hooks...
[17:35:17.051737] (system) Hooks installed.
[17:35:27.790267] (debug) Initializing opcode handler table
[17:35:27.810262] (debug) package.path = D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?\init.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?\init.lua;.\?.lua;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?\init.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?.luac;D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\?\init.luac;.\?.luac
[17:35:27.810262] (debug) package.cpath = D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\lib\?.dll;
[17:35:27.814268] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AirBrake.v7.lua'...
[17:35:27.858274] (debug) New script: 07CA93A4
[17:35:28.068271] (system) AirBrake.v7: Loaded successfully.
[17:35:28.068271] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AutoReboot.lua'...
[17:35:28.068271] (debug) New script: 07CA8F0C
[17:35:28.072282] (system) ML-AutoReboot: Loaded successfully.
[17:35:28.072282] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\BufferCleaner.lua'...
[17:35:28.072282] (debug) New script: 0D3FFDD4
[17:35:28.086283] (system) BufferCleaner.lua: Loaded successfully.
[17:35:28.086283] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\Chat MImGui 7.0.lua'...
[17:35:28.086283] (debug) New script: 0D3FFAC4
[17:35:28.306297] (system) Chat MImGui: Loaded successfully.
[17:35:28.306297] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\check-moonloader-updates.lua'...
[17:35:28.306297] (debug) New script: 0D3FFF5C
[17:35:28.319298] (system) Check MoonLoader Updates: Loaded successfully.
[17:35:28.319298] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\dmx.lua'...
[17:35:28.319298] (debug) New script: 0D4000E4
[17:35:28.358300] (system) dmx.lua: Loaded successfully.
[17:35:28.358300] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\doorcollision.lua'...
[17:35:28.358300] (debug) New script: 0D40026C
[17:35:28.378301] (system) col nas ports de veiculos: Loaded successfully.
[17:35:28.378301] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fogdist.lua'...
[17:35:28.378301] (debug) New script: 0D4011BC
[17:35:28.398302] (system) fogdist.lua: Loaded successfully.
[17:35:28.398302] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fyo-notepad.lua'...
[17:35:28.399302] (debug) New script: 0D40057C
[17:35:28.606316] (system) fyo-notepad.lua: Loaded successfully.
[17:35:28.606316] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\hitinformer.luac'...
[17:35:28.606316] (debug) New script: 0D3FF7B4
[17:35:28.713306] (system) Absolute Damage Informer: Loaded successfully.
[17:35:28.713306] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\HP-speed-radar-1.5rel.luac'...
[17:35:28.713306] (debug) New script: 0D3FF93C
[17:35:28.791325] (system) HP Radar: Loaded successfully.
[17:35:28.791325] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\megaphone.lua'...
[17:35:28.791325] (debug) New script: 0D4003F4
[17:35:28.819368] (system) megaphone.lua: Loaded successfully.
[17:35:28.819368] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\optimized.lua'...
[17:35:28.819368] (debug) New script: 0D400704
[17:35:28.821398] (system) optimized.lua: Loaded successfully.
[17:35:28.822395] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\PDcoordination.lua'...
[17:35:28.822395] (debug) New script: 0D401344
[17:35:28.876391] (system) PDcoordination.lua: Loaded successfully.
[17:35:28.876391] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\reload_all.lua'...
[17:35:28.876391] (debug) New script: 0D40088C
[17:35:28.884333] (system) ML-ReloadAll: Loaded successfully.
[17:35:28.884333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SF Integration.lua'...
[17:35:28.884333] (debug) New script: 0D3FFC4C
[17:35:28.902333] (system) SF Integration: Loaded successfully.
[17:35:28.902333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SniperFix.lua'...
[17:35:28.902333] (debug) New script: 0D4014CC
[17:35:28.923335] (system) SniperFix.lua: Loaded successfully.
[17:35:28.923335] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\stroboscopes.lua'...
[17:35:28.923335] (debug) New script: 0D400A14
[17:35:28.926335] (system) STROBOSCOPES: Loaded successfully.
[17:35:28.926335] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\ttime06.lua'...
[17:35:28.926335] (debug) New script: 0D400B9C
[17:35:28.943333] (system) TextDraw Time: Loaded successfully.
[17:35:28.943333] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\VehInfo.lua'...
[17:35:28.943333] (debug) New script: 0D400D24
[17:35:28.956336] (system) Vehicle Info: Loaded successfully.
[17:35:47.849401] (system) Installing post-load hooks...
[17:35:47.849401] (system) Hooks installed.
[17:35:56.541418] (script) optimized.lua: на самом деле сборку сделал Pheonixxx а скачал ты ее у лоха
[17:35:56.541418] (system) optimized.lua: Script terminated. (0D400704)
[17:36:49.907752] (system) AirBrake.v7: Script terminated. (07CA93A4)
[17:36:49.908751] (system) ML-AutoReboot: Script terminated. (07CA8F0C)
[17:36:49.909731] (system) BufferCleaner.lua: Script terminated. (0D3FFDD4)
[17:36:49.911751] (system) Chat MImGui: Script terminated. (0D3FFAC4)
[17:36:49.918716] (system) Check MoonLoader Updates: Script terminated. (0D3FFF5C)
[17:36:49.918716] (system) dmx.lua: Script terminated. (0D4000E4)
[17:36:49.920749] (system) col nas ports de veiculos: Script terminated. (0D40026C)
[17:36:49.922716] (system) fogdist.lua: Script terminated. (0D4011BC)
[17:36:49.923756] (system) fyo-notepad.lua: Script terminated. (0D40057C)
[17:36:49.938733] (system) Absolute Damage Informer: Script terminated. (0D3FF7B4)
[17:36:49.940752] (system) HP Radar: Script terminated. (0D3FF93C)
[17:36:49.942734] (system) megaphone.lua: Script terminated. (0D4003F4)
[17:36:49.942734] (system) PDcoordination.lua: Script terminated. (0D401344)
[17:36:49.946731] (system) ML-ReloadAll: Script terminated. (0D40088C)
[17:36:49.946731] (system) SF Integration: Script terminated. (0D3FFC4C)
[17:36:49.947732] (system) SniperFix.lua: Script terminated. (0D4014CC)
[17:36:49.948750] (system) STROBOSCOPES: Script terminated. (0D400A14)
[17:36:49.949750] (system) TextDraw Time: Script terminated. (0D400B9C)
[17:36:49.949750] (system) Vehicle Info: Script terminated. (0D400D24)
[17:36:49.950731] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AirBrake.v7.lua'...
[17:36:49.950731] (debug) New script: 0D40088C
[17:36:49.959718] (system) AirBrake.v7: Loaded successfully.
[17:36:49.959718] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\AutoReboot.lua'...
[17:36:49.959718] (debug) New script: 0D4011BC
[17:36:49.961751] (system) ML-AutoReboot: Loaded successfully.
[17:36:49.961751] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\BufferCleaner.lua'...
[17:36:49.961751] (debug) New script: 0D401344
[17:36:49.963718] (system) BufferCleaner.lua: Loaded successfully.
[17:36:49.963718] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\Chat MImGui 7.0.lua'...
[17:36:49.963718] (debug) New script: 0D3FFAC4
[17:36:49.984735] (system) Chat MImGui: Loaded successfully.
[17:36:49.984735] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\check-moonloader-updates.lua'...
[17:36:49.984735] (debug) New script: 0D4014CC
[17:36:49.988810] (system) Check MoonLoader Updates: Loaded successfully.
[17:36:49.988810] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\dmx.lua'...
[17:36:49.988810] (debug) New script: 0D400A14
[17:36:49.997825] (system) dmx.lua: Loaded successfully.
[17:36:49.997825] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\doorcollision.lua'...
[17:36:49.997825] (debug) New script: 0D3FF7B4
[17:36:49.999800] (system) col nas ports de veiculos: Loaded successfully.
[17:36:49.999800] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fogdist.lua'...
[17:36:49.999800] (debug) New script: 0D400B9C
[17:36:50.001821] (system) fogdist.lua: Loaded successfully.
[17:36:50.001821] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\fyo-notepad.lua'...
[17:36:50.001821] (debug) New script: 0D3FF93C
[17:36:50.010824] (system) fyo-notepad.lua: Loaded successfully.
[17:36:50.011801] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\hitinformer.luac'...
[17:36:50.011801] (debug) New script: 0D400D24
[17:36:50.030828] (system) Absolute Damage Informer: Loaded successfully.
[17:36:50.030828] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\HP-speed-radar-1.5rel.luac'...
[17:36:50.030828] (debug) New script: 0D3FFC4C
[17:36:50.042838] (system) HP Radar: Loaded successfully.
[17:36:50.042838] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\megaphone.lua'...
[17:36:50.043835] (debug) New script: 0D4000E4
[17:36:50.050838] (system) megaphone.lua: Loaded successfully.
[17:36:50.050838] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\optimized.lua'...
[17:36:50.050838] (debug) New script: 0D3FFDD4
[17:36:50.052808] (system) optimized.lua: Loaded successfully.
[17:36:50.052808] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\PDcoordination.lua'...
[17:36:50.052808] (debug) New script: 0D3FFF5C
[17:36:50.065820] (system) PDcoordination.lua: Loaded successfully.
[17:36:50.065820] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\reload_all.lua'...
[17:36:50.065820] (debug) New script: 0D40026C
[17:36:50.067775] (system) ML-ReloadAll: Loaded successfully.
[17:36:50.067775] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SF Integration.lua'...
[17:36:50.067775] (debug) New script: 0D4003F4
[17:36:50.070814] (system) SF Integration: Loaded successfully.
[17:36:50.070814] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\SniperFix.lua'...
[17:36:50.071835] (debug) New script: 0D40057C
[17:36:50.079840] (system) SniperFix.lua: Loaded successfully.
[17:36:50.079840] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\stroboscopes.lua'...
[17:36:50.079840] (debug) New script: 07CA8F0C
[17:36:50.083840] (system) STROBOSCOPES: Loaded successfully.
[17:36:50.083840] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\ttime06.lua'...
[17:36:50.083840] (debug) New script: 07CA93A4
[17:36:50.086808] (system) TextDraw Time: Loaded successfully.
[17:36:50.087760] (system) Loading script 'D:\GAME\POLICE SBORKA by The Vladdux\POLICE SBORKA by The Vladdux\moonloader\VehInfo.lua'...
[17:36:50.087760] (debug) New script: 1F03BC14
[17:36:50.088840] (system) Vehicle Info: Loaded successfully.
[17:36:50.097740] (script) optimized.lua: на самом деле сборку сделал Pheonixxx а скачал ты ее у лоха
[17:36:50.097740] (system) optimized.lua: Script terminated. (0D3FFDD4)
кодировка файла какая

а блин поменяй onSendChat на
onSendCommand

вот так работает 100%:
local on = require "lib.samp.events"

function on.onSendCommand(message)
  if not message:find('^/m (.+)$') then return end
  local audio = loadAudioStream(getWorkingDirectory().."/megaphone.mp3")
  setAudioStreamState(audio, 1)
end

за что жук
 
Последнее редактирование:
  • Bug
Реакции: Lance_Sterling

harryys

Новичок
Автор темы
9
0
кодировка файла какая

а блин поменяй onSendChat на
onSendCommand

вот так работает 100%:
local on = require "lib.samp.events"

function on.onSendCommand(message)
  if not message:find('^/m (.+)$') then return end
  local audio = loadAudioStream(getWorkingDirectory().."/megaphone.mp3")
  setAudioStreamState(audio, 1)
end

за что жук
Спасибо, работает
 
  • Эм
Реакции: Akionka