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

Cant seem to get Cava's questing profile to work

clear your quest log (ingame) and tell me if that makes any difference
 
clear your quest log (ingame) and tell me if that makes any difference

no its a problem with
HasQuest() and IsObjectiveComplete() at same line
i changed all but for some reason didnt change that only works if we use 2 diferentes lines:
if i use this line:
<If Condition="HasQuest() &amp;&amp; !IsQuestCompleted()" > works nice and well
<If Condition="HasQuest() &amp;&amp; IsQuestCompleted()" > works nice and well
<If Condition="HasQuest() &amp;&amp; ANY CONDITION_HERE_BUT_NOT_IsObjectiveComplete" > works nice and well
<If Condition="HasQuest() &amp;&amp; IsObjectiveComplete()" > Stucks

bypass the problem with
<If Condition="HasQuest()">
<If Condition="IsObjectiveComplete()">
..stuff here..
</If>
</If>

for some reason didnt change that line "mea culpa" its fixed now, just upload you svn
 
Back
Top