Page 1 of 1

Open Quests

Posted: Mon Mar 03, 2025 12:39 pm
by jrose1184
Hi,

Cou.d you pleae tell me how i can remove the J hotkey to open quests please.

Also could you tell me how i can open quest - im creating my own button to open it.

Many thanks

Re: Open Quests

Posted: Mon Mar 03, 2025 12:48 pm
by jrose1184
I worked out the removal of hot key - just not sure how to open the quest with and on click

Re: Open Quests

Posted: Mon Mar 03, 2025 1:50 pm
by Tony Li
Hi,

Call the quest log window's Open() method. Example:

Code: Select all

PixelCrushers.GameObjectUtility.FindFirstObjectByType<QuestLogWindow>().Open();
Or, if you're using DS 2.2.50.1 or older, import this patch:

DS_QuestLogWindowHotkeyPatch_2024-12-04.unitypackage

It adds a ToggleQuestLogWindow() method to the QuestWindowHotkey component. You can add the component to your UI Button, set the key to None, and configure OnClick() to call QuestWindowHotkey.ToggleQuestLogWindow().

(DS 2.2.51 is coming soon. This update to QuestWindowHotkey is in 2.2.51+.)

Re: Open Quests

Posted: Mon Mar 03, 2025 2:28 pm
by jrose1184
Awesome thanks Tony

Re: Open Quests

Posted: Mon Mar 03, 2025 2:30 pm
by jrose1184
Sorry i do have a follow up question - Is there away i can count active quests. I was going to add a number next to my button to indicate how many quests are active

Cheers

Re: Open Quests

Posted: Mon Mar 03, 2025 2:53 pm
by Tony Li
Hi,

Try this:

Code: Select all

int numActiveQuests = QuestLog.GetAllQuests().Length;
It uses the variant of QuestLog.GetAllQuests() that returns a list of all active quests.