Garry's Mod Wiki

Revision Difference

GM:PlayerStartVoice#553280

<function name="PlayerStartVoice" parent="GM" type="hook"> <ishook>yes</ishook>⤶ <description>Called when a player starts using voice chat.</description> <realm>Client</realm> <args> <arg name="ply" type="Player">Player who started using voice chat.</arg> </args> <rets> <ret name="" type="boolean">Set true to hide player's `CHudVoiceStatus`.</ret> </rets> </function> <example> <description>Shows the icon when the player talks.</description> <code> local icon = Material("icon32/unmuted.png") local function iconfunc() surface.SetDrawColor(255, 255, 255) surface.SetMaterial(icon) surface.DrawTexturedRect(200, 200, 200, 200) end hook.Add("PlayerStartVoice", "ImageOnVoice", function() hook.Add("HUDPaint", "ImageOnVoice", iconfunc) end) hook.Add("PlayerEndVoice", "ImageOnVoice", function() hook.Remove("HUDPaint", "ImageOnVoice") end) </code> </example>