- I made sure my file(s) follow the Submissions Guidelines
- Yes
TF2. Voice commands. A simple mod that is very heavy.
Type "voicemenu" in concole and it will open a menu that will say a line from TF2 if the character has one.
By pressing weapon buttons you choose the command.
Theres also an admin command "voicespam" that turns off spam(default if off).
If you turn this on then anyone will be able to use commands by typing in the chat and using the "voicemenu" will put a message in chat.
If you want your character to have some voice lines then you can do that.
Type "voicemenu" in concole and it will open a menu that will say a line from TF2 if the character has one.
By pressing weapon buttons you choose the command.
Theres also an admin command "voicespam" that turns off spam(default if off).
If you turn this on then anyone will be able to use commands by typing in the chat and using the "voicemenu" will put a message in chat.
If you want your character to have some voice lines then you can do that.
Example:
if not TF2_MedicVC
rawset(_G, "TF2_MedicVC", {})
end
if not TF2_BuildVC
rawset(_G, "TF2_BuildVC", {})
end
if not TF2_HelpVC
rawset(_G, "TF2_HelpVC", {})
end
if not TF2_GoodJobVC
rawset(_G, "TF2_GoodJobVC", {})
end
if not TF2_GoGoGoVC
rawset(_G, "TF2_GoGoGoVC", {})
end
TF2_MedicVC["character"] = {} //Make it so you have more lines. (must have 3)
TF2_MedicVC["character"][1] = sfx_med1
TF2_MedicVC["character"][2] = sfx_med2
TF2_MedicVC["character"][3] = sfx_med3
//Then copy paste the other tables like this. (you can check out the "Voices.lua" to see how i made it)