This commit is contained in:
visionmercer 2026-06-24 12:40:02 +02:00
commit bd11dfb7ca

View file

@ -60,6 +60,8 @@ if ipc_status = 0 then
cmd_msg = "REPEAT" cmd_msg = "REPEAT"
case "--repeat-1" case "--repeat-1"
cmd_msg = "REPEAT1" cmd_msg = "REPEAT1"
case "--nyan"
cmd_msg = "NYAN"
Case "--add" Case "--add"
For i = 2 To _commandcount For i = 2 To _commandcount
cmd_msg = "ADD:" + _cwd$ + slash + command$(i) cmd_msg = "ADD:" + _cwd$ + slash + command$(i)
@ -234,6 +236,8 @@ while keyin<>27
repeat=1 repeat=1
elseif client_cmd = "SHUFFLE" then elseif client_cmd = "SHUFFLE" then
keyin=asc("s") keyin=asc("s")
elseif client_cmd = "NYAN" then
nyan = not nyan
elseif left$(client_cmd, 4) = "VOL:" then elseif left$(client_cmd, 4) = "VOL:" then
volume = val(mid$(client_cmd, 5)) / 100 volume = val(mid$(client_cmd, 5)) / 100
if volume > 1 then volume = 1 if volume > 1 then volume = 1