kbAddTopic: Difference between revisions
Jump to navigation
Jump to search
m (Text replace - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}} {{uc:{{PAGENAME}}}}") |
m (Text replace - "{{uc:{{PAGENAME}}}}" to "{{uc:{{PAGENAME}}}} {{uc:{{PAGENAME}}}}") |
||
Line 61: | Line 61: | ||
<h3 style="display:none">Bottom Section</h3> | <h3 style="display:none">Bottom Section</h3> | ||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] |
Revision as of 11:56, 25 March 2013
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
- .bikb extension is by convention only. I can be anything.
- There is no default extension.
- Even tho bikb's are standard class text they cannot be raPified.