How to create voice controls in GlovePie for first person ( fps ) games
Here's how to create some basic scripts in GlovePie for voice commands that will control first person games like Team Fortress 2.
This video was made by the charity SpecialEffect, who help people with disabilities to play and enjoy video games.
Example script:
if said("forward") then Keyboard.w = true
endif
if said("stop") then
Keyboard.w = false
Keyboard.s = false
Keyboard.a = false
Keyboard.d = false
Keyboard.p = false
Keyboard.q = false
Keyboard.g = false
Keyboard.space = false
endif
if said("lucy") then Keyboard.a = true
endif
if said("back") then Keyboard.s = true
endif
if said("romeo") then Keyboard.d = true
endif
keyboard.space=keepdown(microphone.said("jump"),0.25)
keyboard.leftcontrol=keepdown(microphone.said("duck"),0.25)
keyboard.r=keepdown(microphone.said("reload"),0.25)
keyboard.q=keepdown(microphone.said("change"),0.25)
Other Videos By SpecialEffect
Other Statistics
Team Fortress 2 Statistics For SpecialEffect
SpecialEffect currently has 8,547 views spread across 1 video for Team Fortress 2. His channel published less than an hour of Team Fortress 2 content, making up less than 0.18% of the total overall content on SpecialEffect's YouTube channel.