Character save at save point
Re: Character save at save point
No to both. You can just type it into the Lua condition.
Here are the pro's and con's:
Creating a variable in the database:
1. You can use the Lua wizard to select the variable without having to type anything.
2. You can put text in the Description field to remind yourself what the variable is for.
Not creating a variable in the database:
1. You don't have to go to the effort of adding all those variables.
Here are the pro's and con's:
Creating a variable in the database:
1. You can use the Lua wizard to select the variable without having to type anything.
2. You can put text in the Description field to remind yourself what the variable is for.
Not creating a variable in the database:
1. You don't have to go to the effort of adding all those variables.
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
Should Element 0 be set to true on the sequence trigger because the trigger is already active in the scene? At the moment I have it all set up, but the trigger isn't triggering anything because of the lua condition on the sequence trigger. I take it out and the trigger works.
edit: ok so I changed it to true and the trigger works great. I'm testing the save function as we speak!
edit: actually it doesn't work, lol? It works, then it doesn't... hmm
edit: ok so I changed it to true and the trigger works great. I'm testing the save function as we speak!
edit: actually it doesn't work, lol? It works, then it doesn't... hmm
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Re: Character save at save point
Doh! Sorry! I had a brain lapse. I just corrected my previous posts.
When a variable isn't defined in your database, its initial value is nil, not false. So instead of this:
No:
Use this:
Yes:
This means "not true". So if the variable is false or nil, it still qualifies as "not true" and everything should work correctly.
When a variable isn't defined in your database, its initial value is nil, not false. So instead of this:
No:
Code: Select all
Variable["MapTrigger"] == false
Yes:
Code: Select all
Variable["MapTrigger"] ~= true
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
I don't know if this has been happening the whole time or not, but I just noticed that when I load a game, all my inactive object groups load instead of just the ones that were currently active when the save occurred. As far as I know everything in the persistent active data component is correct, but maybe apparently not...
You think maybe that these trigger colliders are colliding on load with other objects?
You think maybe that these trigger colliders are colliding on load with other objects?
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Re: Character save at save point
It's possible. Are the conditions on the Persistent Active Data components based on values set by other OnTriggerEnter components? It's possible that those OnTriggerEnter components are firing as soon as the scene starts, and then the Persistent Active Data picks up on that.supadupa64 wrote:I don't know if this has been happening the whole time or not, but I just noticed that when I load a game, all my inactive object groups load instead of just the ones that were currently active when the save occurred. As far as I know everything in the persistent active data component is correct, but maybe apparently not...
You think maybe that these trigger colliders are colliding on load with other objects?
To test this, inspect one of those OnTriggerEnter components and expand the Condition > Accepted Tags section. (The inspector fix for the flukey Lua Condition section is coming soon.) If only the player is allowed to fire the trigger, make sure Accepted Tags > Size is 1, and that Element 0 is "Player" (without quotes). Then try loading a game and see if that trigger still fires.
Then again, it might be a logic issue in the Persistent Active Data's Condition. To test this in the editor, after loading a game open the Dialogue Editor window and click on the Watches tab. Select Menu > Add Variable if the condition references a variable. Then select the variable from the dropdown and click Update. (Or tick Auto-Update if you want to automatically update the watch.)
If the condition is more complex, such as a quest state, select Menu > Add Watch. For a quest state, you'll have to enter a Lua expression such as:
Code: Select all
CurrentQuestState("Assassinate the Emperor")
Code: Select all
return CurrentQuestState("Assassinate the Emperor")
Code: Select all
return Variable["Scroll_01"]
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
I put Player in the tag area of a lot of trigger just to make sure and it still loaded areas. I don't recall it doing this before, but maybe I missed it? hmm, I did update to the newest version of Unity, so maybe that has something to do with it.
Although, I did recently place variables in all the triggers and didn't have them.
Basically all the triggers follow this setup.
Although, I did recently place variables in all the triggers and didn't have them.
Basically all the triggers follow this setup.
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
I did just find out though that my save/load works about 20 builds ago, so I guess I broke it some how. Maybe you can think of something in the mean time while I try to pick this a part...
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Re: Character save at save point
For the variables, if you can get the Lua condition wizard to work, that's the best way to do it. The catch is that, in Lua, the Variable[] table substitutes underscores ( _ ) for blank space characters and some other special characters such as hyphens ( - ). So if you've defined a variable with this name in your dialogue database:
The Lua wizards do this substitution automatically for you when you choose a variable name from the dropdown. Otherwise, if you're typing in Lua conditions manually, you'll need to manually do the substitution.
- Scene 4 Transition Trigger - active
Code: Select all
Variable["Scene_4_Transition_Trigger___active"] ~= true
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
Alright I'll give this a go. Thanks!!!
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Character save at save point
So the build I was using before wasn't actually saving the changes which is why I thought it was working correctly, but it actually wasn't.
Anyway, I made those changes and added variables and used the Lua just fine, except it still doesn't work. I tagged it with Player also to try and eliminate the possibility of it being triggered by something else. Although I only have the Accepted tag set to "Player" on the Sequence Trigger script and not on the Persistent Active Data script. Maybe that matters?
Every saved game loads the scene areas, but it doesn't load everything in the game on load. I have quest items that don't load and SetActive(item, active) when they are supposed to during a quest.
Maybe just take out ("-") special characters all together just in case?
I have variables set as text and Initial Value blank for these.
Anyway, I made those changes and added variables and used the Lua just fine, except it still doesn't work. I tagged it with Player also to try and eliminate the possibility of it being triggered by something else. Although I only have the Accepted tag set to "Player" on the Sequence Trigger script and not on the Persistent Active Data script. Maybe that matters?
Every saved game loads the scene areas, but it doesn't load everything in the game on load. I have quest items that don't load and SetActive(item, active) when they are supposed to during a quest.
Maybe just take out ("-") special characters all together just in case?
I have variables set as text and Initial Value blank for these.
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/