23 lines
425 B
Lua
23 lines
425 B
Lua
function onRadioStart()
|
|
|
|
end
|
|
|
|
function onRadioEnd()
|
|
|
|
end
|
|
|
|
function skipRadioChecks()
|
|
local state = LocalPlayer.state
|
|
return state["inFFA"] or state["inLobby"]
|
|
end
|
|
|
|
AddEventHandler("SaltyChat_VoiceRangeChanged", function(r, i, l)
|
|
print("Voice range changed:", r, i, l)
|
|
end)
|
|
|
|
RegisterCommand("testvoicerange", function()
|
|
local vr = exports["saltychat"]:GetVoiceRange()
|
|
|
|
print(vr)
|
|
end)
|