Search found 27 matches

by EVG
Sat Dec 24, 2022 10:34 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Tony Li wrote: Fri Dec 23, 2022 3:00 pm Got it. I'm glad you found the issue. You can save the active/inactive states of GameObjects, btw, if you want to. Use an ActiveSaver or MultiActiveSaver.
I use them too, thanks!
by EVG
Fri Dec 23, 2022 1:22 pm
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Can you send a reproduction project with reproduction steps to tony (at) pixelcrushers.com? I found the reason. The problem was that immediately after completing the quest, I turned off the game object with the Quest Giver component, but I didn’t need to do this. In any case, thanks for the help. :)
by EVG
Fri Dec 23, 2022 8:12 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Hi, Regarding the QuestControl error message, this is a bug in Unity 2022. This patch has a temporary fix: PixelCrushers_HelpAttributePatch_2022-12-22.unitypackage Regarding your custom quest condition, QuestCondition is not a MonoBehaviour. You can't count on Awake() or OnEnable(). Can you rewrite...
by EVG
Thu Dec 22, 2022 7:03 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

As it turned out, the problem with saving is present in quests where I use my condition scripts. What is wrong in my script? I check the current active item in it. using Opsive.Shared.Events; using Opsive.UltimateCharacterController.Integrations.UltimateInventorySystem; using Opsive.UltimateInventor...
by EVG
Thu Dec 22, 2022 6:18 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

I'm sorry; I must have missed the forum notification. You could try ticking the Debug checkbox on the SaveSystem component and PlayerPrefsSavedGameDataStorer component. Then play in the editor and reproduce the issue. Review the Console logs. It will show unformatted JSON. You should be able to fin...
by EVG
Tue Dec 20, 2022 4:08 pm
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Any help
by EVG
Fri Dec 16, 2022 10:59 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Hi, What version of Quest Machine are you using? Are there any errors or warnings in the Console? If it’s not saving at all, the quest should not appear in the Quest Journal. (Unless you talk to the NPC and pick it up again.) At what point in the loading process are you calling your ES loading code...
by EVG
Fri Dec 16, 2022 5:40 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Re: Unable to save/load data

Tony Li wrote: Thu Dec 15, 2022 6:32 pm Hi,

Make sure your player’s Quest Journal component > Save Settings > Remember Completed Quests checkbox is ticked, and that a unique Save Key is assigned.
Tried different settings, did not help
by EVG
Thu Dec 15, 2022 10:03 am
Forum: Quest Machine
Topic: Unable to save/load data
Replies: 14
Views: 1901

Unable to save/load data

Good afternoon, I use Quest Machine and Easy Save 3, I complete a quest, I try to save the data, then I load the data, but nothing happens, the quest just becomes active, not completed. What am I doing wrong? Save code: string saveData = SaveSystem.Serialize(SaveSystem.RecordSavedGameData()); ES3.Sa...
by EVG
Tue May 31, 2022 11:16 am
Forum: Quest Machine
Topic: How to properly cancel (make inactive) the current node and all children?
Replies: 5
Views: 957

Re: How to properly cancel (make inactive) the current node and all children?

The problem turned out to be in my custom condition on the child node, it seems to have been fixed. Thank you again for your help!