Difference between revisions of "Say"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Kkuhlmann
 
imported>Geckbot
m (Robot: Automated text replacement (-\[\[Category:(.*?)\(GECK 1.0\)\]\] +Category:\1(GECK 1.1)))
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Incomplete}}{{Function
|CSWikiPage = Say
|origin = GECK1
|summary = [[Say]] makes an actor speak a single line of dialogue.
|referenceType = Actor
|arguments = {{FunctionArgument
  |Name = Topic
  |Type = EditorID
  }}{{FunctionArgument
  |Name = ForceSubtitleFlag
  |Type = int
  |Optional = Optional
  }}{{FunctionArgument
  |Name = Actor
  |Type = EditorID
  |Optional = Optional
  }}{{FunctionArgument
  |Name = Integer
  |Type = int
  |Optional = Optional
  }}{{FunctionArgument
  |Name = Integer
  |Type = int
  |Optional = Optional
  }}
  |Example = JoeRef.Say SpeechTopic
JoeRef will say SpeechTopic
}}==Notes==
*The purpose of the last three optional parameters is unknown at this time.


=='''Description'''==
==See Also==
 
*[[SayTo]]
'''Say''' makes an actor speak a single line of dialogue.  The function returns 0, so setting a variable equal to the return value will not do anything.  To set up an action for after the line is spoken, see [[SayToDone]], which is a block that is triggered when the SAY is complete.
*[[SayToDone]]
 
=='''Syntax'''==
 
[''ActorREF''.]Say TopicID, ForceSubtitleFlag (optional)
 
=='''Examples'''==
 
JoeRef.Say SpeechTopic
 
=='''Notes'''==
* None at this time.
 
=='''See Also'''==
[[SayTo]]


[[Category:Functions]]
[[Category:Functions]]
[[Category:Functions (GECK 1.1)]]
[[Category:Dialogue Functions]]
[[Category:Dialogue Functions]]
[[Category:Dialogue Functions (GECK 1.1)]]
[[Category:Actor Functions]]
[[Category:Actor Functions]]
[[Category:Actor Functions (GECK 1.1)]]

Latest revision as of 14:02, 15 August 2009

This article is incomplete. You can help by filling in any blank descriptions.
Further information might be found in a section of the discussion page. Please remove this message when no longer necessary.
< [[::Category:Functions|Category:Functions]]

Link to TES4 Construction Set Wiki: Say.

A function included in the GECK version 1.1.0.36.

Description

Say makes an actor speak a single line of dialogue.

Syntax

[help]
Actor.Say Topic:EditorID ForceSubtitleFlag:int Actor:EditorID Integer:int Integer:int

Notes

  • The purpose of the last three optional parameters is unknown at this time.

See Also