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

IsQuestCompleted returns true immediately after picking up quest 11253

Inferno

New Member
Joined
May 10, 2010
Messages
8
Reaction score
0
Not sure if my testing is solid enough to report it as a bug, but when I pick up the quest "Sniff Out the Enemy" when using

PHP:
		<If Condition="HasQuest(11253) &amp;&amp; IsQuestCompleted(11253)">
			<CustomBehavior File="UserDialog" Text="Quest Complete" Title="TEST" SoundCue="Asterisk" SoundCueInterval="1" StopOnContinue="false" ExpiryTime="60" />
		<Else>
			<CustomBehavior File="UserDialog" Text="Quest Not Complete" Title="TEST" SoundCue="Asterisk" SoundCueInterval="1" StopOnContinue="false" ExpiryTime="60" />
			</Else>
		</If>

To test if it has the quest and is completed, it returns complete even when the quest log says it isn't complete.

Is my logic bugged, or is it HB?
 
Does it have any objective text?

By the look of wowhead it is completed upon pickup and the item reveals the quest turn in object
 
Not sure if my testing is solid enough to report it as a bug, but when I pick up the quest "Sniff Out the Enemy" when using

PHP:
		<If Condition="HasQuest(11253) &amp;&amp; IsQuestCompleted(11253)">
			<CustomBehavior File="UserDialog" Text="Quest Complete" Title="TEST" SoundCue="Asterisk" SoundCueInterval="1" StopOnContinue="false" ExpiryTime="60" />
		<Else>
			<CustomBehavior File="UserDialog" Text="Quest Not Complete" Title="TEST" SoundCue="Asterisk" SoundCueInterval="1" StopOnContinue="false" ExpiryTime="60" />
			</Else>
		</If>

To test if it has the quest and is completed, it returns complete even when the quest log says it isn't complete.

Is my logic bugged, or is it HB?

The If tag should read...
&lt;If Condition="HasQuest(11253) &amp;amp;&amp;amp; IsQuestCompleted(11253)"&gt;

If that's not your problem, then you may have found a legitimate bug that needs to be looked into. Please submit a BugTracker if so, this is most serious.

cheers,
chinajade
 
The If tag should read...
&lt;If Condition="HasQuest(11253) &amp;amp;&amp;amp; IsQuestCompleted(11253)"&gt;

If that's not your problem, then you may have found a legitimate bug that needs to be looked into. Please submit a BugTracker if so, this is most serious.

cheers,
chinajade

actually it does say
& amp ; & amp ;​
- i can click edit and view it, but you can click quote and view it - it's the first thing i looked at ;)
 
Back
Top