anyone give 0.7 walkthrough please
Maybe it's not a very player friendly option, but you can always just decrypt scripts.rpa, open script.rpy that's inside of it with renpy dev tools and simply read through the code. That's what I always do after finishing each update at least once. That way I can check on all the possible scene/dialogues variations, what variables are responsible for them and so on.
It's pretty easy, too. All you need to look at are names of viarables, which are bascially normal text. You don't need any coding knowledge, even if you want to modify script to your liking.
One example of when variables are used in scenes is can be like this:
if hateeric == True:
Part of scene var A here.
else:
Part of scene var B here.
So if you decided to be angry on Eric after he told you he's going to Somalia, then the variable $ hateeric is set to True (if you chose the neutral answer or to support him, then $ hateeric stays at False), and you get to see/read var A of that specific scene/part of scene. If anything else, you get the var B of that scene.
There are some more small variations, but all of renpy's code is bascially plain text, so you should easily understand most of it.
As for tools:
Renpy/.rpa extractor:
You must be registered to see the links
Renpy SDK:
You must be registered to see the links
Example on how to use .RPA Extractor:
(Hopefully I can post these links here. If not, then sorry and please delete them.)
And that's about it. Maybe it's not as friendly as written walkthrough, but this way you can discover all the possible variations of the story and do it after each update.
Hope it helps a bit. c: