blancharke
Member
- Joined
- Jan 15, 2010
- Messages
- 225
- Reaction score
- 4
They new questbehaviour for this didnt work. Allways gave error
So I looked at the code and saw this line
But it should have been
So here is the working questbehaviour. All credits go to the maker of these magnificent behaviours.
Code:
Could not find attribute: NpcIds in TalkToAndListenToStory custom behavior!
So I looked at the code and saw this line
Code:
if (Args.ContainsKey("NpcIds"))
{
foreach (string s in Args["NpcIds"].Split(' '))
But it should have been
Code:
if (Args.ContainsKey("NpcId"))
{
foreach (string s in Args["NpcId"].Split(' '))
So here is the working questbehaviour. All credits go to the maker of these magnificent behaviours.