Thread Tools Display Modes
12/25/21, 02:44 AM   #1
tim99
 
tim99's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2017
Posts: 22
GetJournalQuestName(i) returns blank sometimes

Here is a screenshot, which says more than 1000 words i hope.


Have 18 Quests in Journal, showing all Quest-Names by the API, it returned "blank" for one. You can't get any informations any more for that quest, with any Quest-API out here.


You also can't share this quest any more.






I have had this in the past, it happened 2 or 3x during the current NewLifeFestival,

2x on a delve-daily quest in the last blackwood-event.



Reported by others it happens much more often to them, but have no verification for this.


You can still complete the quest ingame for yourself without any issues. You get the rewards, all fine.
You can just not share them, and i guess they break any addon which deals with quest-names.

Last edited by tim99 : 12/25/21 at 05:00 PM. Reason: notabug
  Reply With Quote
12/25/21, 03:35 AM   #2
Calamath
AddOn Author - Click to view addons
Join Date: Aug 2019
Posts: 36
I think it is not a bug in the API, just your misunderstanding.
The result of IsValidQuestIndex(10) shows that the index 10 is an invalid index.
So the behavior of GetJournalQuestName for an invalid index is correct.

The quest you are missing should be in one of the indexes 19-25.

- Calamath

Last edited by Calamath : 12/25/21 at 03:43 AM.
  Reply With Quote
12/25/21, 04:58 PM   #3
tim99
 
tim99's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2017
Posts: 22
Originally Posted by Calamath View Post
I think it is not a bug in the API, just your misunderstanding.
The result of IsValidQuestIndex(10) shows that the index 10 is an invalid index.
So the behavior of GetJournalQuestName for an invalid index is correct.

The quest you are missing should be in one of the indexes 19-25.

- Calamath



ooooh ok... so there can be "spaces" of wrong indexes in the rows of 1 to GetNumJournalQuests()? I actually never would have thought of that So if i wanna check if i have a special quest in the journal the GetNumJournalQuests() ist basically useless and i should check for 1 to 25 and skip blank ones?


Good hint, thx. Would explain the addon breaking if i just look at half of the quests (1..GetNum). I will check it the next time. I would have bet all my ingame money that this is a bug ( not any more ofc )




edit. didnt find a "delete post" function. Shall i empty out all text or leave it?

Last edited by tim99 : 12/25/21 at 05:01 PM.
  Reply With Quote
12/25/21, 07:32 PM   #4
Calamath
AddOn Author - Click to view addons
Join Date: Aug 2019
Posts: 36
Yes, we should use the global constant MAX_JOURNAL_QUESTS (=25) instead as the loop count.
And for each index, you need to check if it is valid or not.

- Calamath

Last edited by Calamath : 12/26/21 at 09:06 AM.
  Reply With Quote
12/26/21, 10:36 AM   #5
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Originally Posted by tim99 View Post
edit. didnt find a "delete post" function. Shall i empty out all text or leave it?
I moved it to the general discussion forum, since it may help other authors in the future.
  Reply With Quote
12/28/21, 01:25 AM   #6
tim99
 
tim99's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2017
Posts: 22
Originally Posted by Calamath View Post
Yes, we should use the global constant MAX_JOURNAL_QUESTS (=25) instead as the loop count.
And for each index, you need to check if it is valid or not.

- Calamath
Originally Posted by sirinsidiator View Post
I moved it to the general discussion forum, since it may help other authors in the future.

Thx both.

However, there still might be a little bug, cause the "can't share these quests" point is still valid.

It was not a made-up point to reinforce the argument, i actually had this a couple times.

An idea is, that even ZOS is doing a "1..GetNumJournalQuests()" for the sharing-feature. That would explain why sometimes you just can't share a quest, and after delete-and-regain that one, you can.

There are some other points, which can be confusing, such as some quests can't be shared to someone who has not done needed pre-quests (like 2 delve-dailys in Wrothgar) or you can't share to someone who has already done it that day, or has the same kind of quest already in his journal.

But i think, the importance of this case approaches zero, especially when we have a "way around"... (1..MAX_JOURNAL_QUESTS)

Last edited by tim99 : 12/28/21 at 01:28 AM.
  Reply With Quote

ESOUI » Developer Discussions » General Authoring Discussion » GetJournalQuestName(i) returns blank sometimes

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off