Difference between revisions of "Lua:SmartSpeak"

From Fortress Forever Wiki
Jump to navigationJump to search
(New page: {{Infobox manual/Header}} ==SmartSpeak== Plays one vox sentence for a specified player, another for that player's teammates, and another for the other team(s). ===Usage=== <pre>SmartSpeak...)
(No difference)

Revision as of 14:12, 11 May 2009


SmartSpeak

Plays one vox sentence for a specified player, another for that player's teammates, and another for the other team(s).

Usage

SmartSpeak(player, "CTF_YOUGOTFLAG", "CTF_GOTFLAG", "CTF_LOSTFLAG")

Input

  • player(CFFPlayer) A player (such as the one who just grabbed a flag)
  • playerspeak(string) Sentence to play for the player
  • teamspeak(string) Sentence to play for the player's team
  • otherteamspeak(string) Sentence to play for the other team(s)

Use entries from FortressForever\scripts\sentences.txt.

Output

Returns: nothing

Example

SmartSpeak(player, "CTF_YOUGOTFLAG", "CTF_GOTFLAG", "CTF_LOSTFLAG")
--"you have the enemy flag"/"Your team has the enemy flag"/"The enemy has your flag"