-- player_push_to_talk_slash - Implements push-to-talk "slash" key input -- (component of Chat System) -- Template attachment: player (dynamic) -- Created by: Patrick Ferland -- Created on: 06/05/2008 -- Revision History -- 06/05/2008 P.Ferland - New script -- Constants -- no constants -- Script Properties -- no properties -- Commands Define Commands() MakeInput('Press / to focus chat', '/', 'down', 'none', 'chat_system_push_to_talk_slash') MakeCommand('chat_system_push_to_talk_slash', 'Chat System: Push-to-talk') end -- Activate push-to-talk (focus chat box) Command chat_system_push_to_talk_slash() SendTo(self, 'chat_system_focus', 0) end -- Triggers -- no triggers -- Local functions -- no functions