kbAddTopic: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. ArmA2 classification)
(Fill some details (based on topic 74022))
Line 15: Line 15:
____________________________________________________________________________________________
____________________________________________________________________________________________


| person '''kbAddTopic''' [name, filename, (task type)] |= Syntax
| person '''kbAddTopic''' [name, filename, (task type, (player event handler))] |= Syntax


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


|p2= [name, filename, {task type)]: [[Array]] |= Parameter 2
|p2= [name, filename, (task type, (player event handler))]: [[Array]] |= Parameter 2
 
|p3= name: [[String]] - |= Parameter 3
 
|p4= filename: [[String]] - bikb filename. |= Parameter 4
 
|p5= task type: [[String]] - Optional. |= Parameter 5
 
|p6= player event handler: [[Code]] or [[String]] - Optional. New to Arma2.
 
The event handler receives parameters:
 
<b>_sentenceId:</b> the sentence as defined in the .bikb file
 
<b>_topic:</b> topic name registered via kbAddTopic
 
<b>_this:</b> the person that was talked to (receiver)
 
<b>_from:</b> the person that talked to the receiver and triggered the script
 
|= Parameter 6


| [[Nothing]] |= Return value
| [[Nothing]] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
|x1= <pre>player kbAddtopic["myTest", "myTest.bikb", "", {call compile preprocessFileLineNumbers "myTest.sqf"}];</pre>
 
| [[kbRemoveTopic]], [[kbHasTopic]], [[kbTell]], [[FSM]] |= See also


}}
}}

Revision as of 05:31, 18 August 2009

Template:future-use


-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

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

Syntax

Syntax:
person kbAddTopic [name, filename, (task type, (player event handler))]
Parameters:
person: Object
[name, filename, (task type, (player event handler))]: Array
name: String -
filename: String - bikb filename.
task type: String - Optional.
player event handler: Code or String - Optional. New to Arma2. The event handler receives parameters: _sentenceId: the sentence as defined in the .bikb file _topic: topic name 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", "", {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