kbAddTopic: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (VBS2 scripting category removal)
m (TopicName to be consistent with kbTell)
Line 14: Line 14:
____________________________________________________________________________________________
____________________________________________________________________________________________


| person '''kbAddTopic''' [name, filename.bikb, (filename.fsm, (event_handler))] |= Syntax
| person '''kbAddTopic''' [TopicName, filename.bikb, (filename.fsm, (event_handler))] |= Syntax


|p1= person: [[Object]] |= Parameter 1
|p1= person: [[Object]] |= Parameter 1


|p2= [name, filename.bikb, (filename.fsm, (event_handler))]: [[Array]] |= Parameter 2
|p2= [TopicName, filename.bikb, (filename.fsm, (event_handler))]: [[Array]] |= Parameter 2


|p3= name: [[String]] - |= Parameter 3
|p3= TopicName: [[String]] - |= Parameter 3


|p4= filename.bikb: [[String]] - Must exist. bikb file name. |= Parameter 4
|p4= filename.bikb: [[String]] - Must exist. bikb file name. |= Parameter 4
Line 32: Line 32:
<b>_sentenceId:</b> the sentence as defined in the .bikb file
<b>_sentenceId:</b> the sentence as defined in the .bikb file


<b>_topic:</b> topic name registered via kbAddTopic
<b>_topic:</b> TopicName registered via kbAddTopic


<b>_this:</b> the person that was talked to (receiver)
<b>_this:</b> the person that was talked to (receiver)

Revision as of 03:58, 12 September 2011


Hover & click on the images for description

Description

Description:
Register conversation topic to given person.
Groups:
Uncategorised

Syntax

Syntax:
person kbAddTopic [TopicName, filename.bikb, (filename.fsm, (event_handler))]
Parameters:
person: Object
[TopicName, filename.bikb, (filename.fsm, (event_handler))]: Array
TopicName: String -
filename.bikb: String - Must exist. bikb file name.
filename.fsm: String - Optional. Can be empty string. fsm file name
event_handler: Code or String - Optional. New to Arma2. The event handler receives parameters: _sentenceId: the sentence as defined in the .bikb file _topic: TopicName registered via kbAddTopic _this: the person that was talked to (receiver) _from: the person that talked to the receiver and triggered the script
Return Value:
Nothing

Examples

Example 1:
player kbAddtopic["myTest", "myTest.bikb", "myTest.fsm", {call compile preprocessFileLineNumbers "myTest.sqf"}];

Additional Information

See also:
kbRemoveTopickbHasTopickbTellFSM

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section