Hello everyone I have problem with ActionList save. No mater how I want save game through action my game do not get saved. I had & in name of save file I changed it back but save still do not work. I do not have any special settings for saving or some custom code. I have trouble figure out why it is not working any help is appreciate.
https://ibb.co/j6Yh7kx
https://ibb.co/SVf16xq
https://imgur.com/a/WmAerrl
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
I can see you are checking for some conditions and if not met you call for save.
Can you just try to have one actionlist Save with no other actionlist running to check if it works at all?
I'm just saying this it might be some variables are in play that your forgot.
And if it works with barely Save actionlist, you'd need to figure out why it's not working with your Variable check.
Just saying.
Welcome to the community, @Zuffy. What are your AC and Unity versions?
Check your Console window for messages. AC should inform you if an attempt to save is made but failed.
Be aware that saving is prevented if gameplay is currently blocked. If any ActionLists are running (with the exception of the one triggering it) with a When running property of Block Gameplay, then saving operations will be blocked.
For details on the conditions when saving is possible, see the Manual's "Saving and loading overview" chapter. You can also check the game's current gameplay state by enabling the "AC Status" box at the bottom of the Settings Manager.
Though, as SkyTree suggests, you should also try running your Save: Save or load Action just by itself, without checking any variable. You can test an ActionList manually by clicking Run now in its Inspector at runtime.
Try creating a new ActionList with a single Save Action, and then click "Run now" when you're in gameplay. Does it then work?
Hi, I am using Unity 2020.1.6f1 and Adventure creator 1.72.3 .
I tried only one script on scene start but it still do not work if use run now it get saved. Also I tried custom action with AC.SaveSystem.SaveAutoSave that one worked fine. But native autosave do not work for some reason. I checked log but I did not see anything about saving.
Ok I checked log again and it was actually caused with another script so I turn it to run in background and everything works fine now. Thanks a lot for help