
ModsJava
FiguraSVC
A unofficial addon that allows Figura scripts to detect and process Simple Voice Chat audio in real time. Free Minecraft Java mod for 1.20.1.
⬇ Download on ModrinthFiguraSVC
A unofficial addon for Figura that allows Simple Voice Chat to be detected by Figura Lua scripts.
DOCUMENTATION
Wiki will come soon!
Example Script
-- Example talking animation
local microphoneOffTime = 0
local isMicrophoneOn = false
function pings.talking(state)
-- (safe on servers) (visible to everyone)
animations.model.talk:setPlaying(state)
end
function events.tick()
local previousMicState = isMicrophoneOn
microphoneOffTime = microphoneOffTime + 1
isMicrophoneOn = microphoneOffTime <= 2 -- has svc.microphone been called in the past 2 ticks?
if previousMicState ~= isMicrophoneOn then
pings.talking(isMicrophoneOn)
end
end
if client:isModLoaded("figurasvc") and host:isHost() then
function events.HOST_MICROPHONE(pcm)
microphoneOffTime = 0
end
end
Verified by MCModsHub
- Ships as figurasvc-2.0.1+1.20.1.jar — drop this file into the mods folder
- Download size: 26 KB
- Download link checked 27 Aug 2026 — working
These come from our own check of the pack file, not from the source page.