опкод не работает в качестве проверкиНарод помогите 3 часа не могу сделать скрипт ,который будет по нажатию клавиши загружать и воспроизводить звук загруженный в папку клео буду благодарен ,если поможете
{$CLEO .cs}
if
0@ = Audiostream.Load("cleo\MP3\1.MP3")
я бы сделал так
Код:
{$CLEO .cs}
{$INCLUDE SF}
while not SAMP.Available()
wait 100
end
0@ = Audiostream.Load("cleo\MP3\1.MP3")
0AB9: get_audio_stream_state 0@ store_to 1@
if 1@ == 3 // resume
then
0AD1: show_formatted_text_highpriority "mp3 not found" time 2000
end
while true
wait 0
if 0AB0: key_pressed 50
then
Audiostream.PerformAction(0@, play) // 0 stop; 1 play; 2 pause; 3 resume
repeat
wait 0
until 0AB0: key_pressed 50
end
end