What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

[FYI] <CustomBehavior> calling convention has changed with HB-2.0.0.3626

chinajade

Community Developer
Joined
Jul 20, 2010
Messages
17,540
Reaction score
172
With the 2.0.0.3626 drop, Honorbuddy &lt;CustomBehavior&gt; has changed how it takes arguments.

The old calling convention was...
Code:
&lt;CustomBehavior QuestId="quest_id"
                File="file_providing_behavior" 
                Arguments="value1, value2, valueN" /&gt;
The new calling convention is...
Code:
&lt;CustomBehavior QuestId="quest_id"
                File="file_providing_behavior" 
                Arg1="value1" Arg2="value2" ArgN="valueN" /&gt;

The Wiki pages have been updated to reflect this change:
  • [wiki]Honorbuddy Profile Tag: CustomBehavior[/wiki]
  • [wiki]Honorbuddy Custom Behavior: InteractWith[/wiki]
  • [wiki]Honorbuddy Custom Behavior: TalkToAndListenToStory[/wiki]

If you've written any Custom Behaviors, you must shift them over to the new calling convention to have them operate correctly.

cheers,
Chinajade
 
Last edited:
Back
Top