- Sep 29, 2017
- 7,319
- 15,654
or at least a collaborationI still wantYou must be registered to see the linksback to writing the walkthrough. :cryingface:
or at least a collaborationI still wantYou must be registered to see the linksback to writing the walkthrough. :cryingface:
That was a reply to postWhy should not you be that?
Damn! Thank you for your reply PLUS a guide on how to fix it!!Great update as always, but @veqvil can't you use labels for the map ?
The hospital is obvious, but the baron's house or MC's one, by example ; well, like they live next door once you find one, you also found the other, but you see what I mean...
And no need to alter the pictures for this, you can do it softly with something like :
Obviously the background is just for the demonstration, you style it like you want.Code:init python: ttMap = Tooltip("") ttPos = (0,0) screen ttMap(): hbox: background Solid( "#00000075" ) xpos ttPos[0] ypos ttPos[1] text ttMap.value
Then the screen "n_map" become :
Here again, the positions are just for the demonstration.Code:screen n_map: add "n_map.jpg" # add the hovered where you want a label imagebutton auto "n_map_hosp_%s.png" focus_mask True action Jump("map_hosp") hovered [ SetVariable( "ttPos", (1450, 250 ) ), ttMap.Action( "hospital" ) ] imagebutton auto "n_map_home_%s.png" focus_mask True action Jump("map_home") hovered [ SetVariable( "ttPos", ( 1750, 900 ) ), ttMap.Action( "home" ) ] imagebutton auto "n_map_baron_%s.png" focus_mask True action Jump("map_baron") hovered [ SetVariable( "ttPos", (1700, 700 ) ), ttMap.Action( "Baron's house" # and just let like it is when you don't want it imagebutton auto "n_map_ts_%s.png" focus_mask True action Jump("map_ts") imagebutton auto "n_map_pp_%s.png" focus_mask True action Jump("map_pp") imagebutton auto "n_map_cs_%s.png" focus_mask True action Jump("map_cs") imagebutton auto "n_map_beach_%s.png" focus_mask True action Jump("map_beach") imagebutton auto "n_map_park_%s.png" focus_mask True action Jump("map_park") # and here come the labels... use ttMap
Like the ttMap is external to the screen, you can't reuse it easily. No need to add the whole display part on every screen which need it, just add the "use ttMap" at the end of these screens ; and obviously the related "hovered". And like the label are independent from the pictures (unlike the actual doors in the house), you can change the position and style whenever you want without real efforts ; you can even have a better rendering without efforts since it's Ren'py which will add the transparency, the color, choose the font, and so on.
Plus side, it let you use an if statement to choose if the labels must be shown or not, depending of the situation. Whatever you do it globally :
screen by screen:Code:screen ttMap(): if showLabels is True: hbox: background Solid( "#00000075" ) xpos ttPos[0] ypos ttPos[1] text ttMap.value
that you display with :Code:# True by default, can be False by default is you want screen n_map( showLabel=True ): add "map.jpg" imagebutton : auto "n_map_hosp_%s.png" focus_mask True action Jump("map_hosp") if showLabel is True: hovered [ SetVariable( "ttPos", (1450, 250 ) ), ttMap.Action( "hospital" ) ]
or individually :Code:show screen n_map( False ) # don't show labels show screen n_map( True ) # show labels show screen n_map() # show labels scene n_map # show labels
Code:imagebutton : auto "n_map_hosp_%s.png" focus_mask True action Jump("map_hosp") if showHospital is True: hovered [ SetVariable( "ttPos", (1450, 250 ) ), ttMap.Action( "hospital" ) ]
Well blocking you off is usually a way to show you a dead end. What I missed to do was to clearly state that the content ends here with a clear Work in Progress sign.I hope so that it finally synonymous more sex to see because the sun is quite boring although the story is not bad but too much happens drum herrum without that really happened what happens when you sit at the table and endless amounts Persons come to Irgen and a dreary boring shit what unfortunately
happens constantly or as sinless things as in the hospital when I want in the sick room it says I do not wake mom so he is not purely WTF? why can not I go in? you can enter a room QUIET, yes, that really works without waking someone up and why mom? if it was at least about the sick person then you could still
somehow understand that but even then that makes no sin and why can not I look at her next when she sleeps? a little bit of peek can not do any harm to sleep, why do I have to sleep and can not go to their room at night? i hope jam al that sic hda finally what changes because the game looks fantastic and actually
makes fun I also like that I can say the bitch becky peer mail fuck you and you can continue to ignore (she should take the idiots out the dream / vision in the night) Well, in any case, I hope for the next update as it goes on and especially that it does not take quite as long until it comes but I always say that it is worth it to wait for good games if then the quality is right
I have a progress bar on my patreon overview page, which I will update today. To give you an idea where I'm at right now. It's accessible for everyone, who is wondering when the update will be up.when will release next version?
Hmm I think that's the first time someone reported an issue like that, you sure you downloaded the PC version? Or maybe check if the link is containing a MAC file?i have a question i tried to open the latest game after downloading it and i got this error The application was unable to start correctly (0xc0000007b). i dont know whats thats about
According to google, you should try to reboot. If that doesn't work you could try to run it as an admin and if that doesn't work either you might have a corrupted game download xDit says PC on the zip its kinda strange because i downloaded this before when it came out and it worked fine then today it didnt work when i wanted to try out the walkthrough all my other renpy games works fine
Heh. I like looking at it now: 0%, 0%, 0%, etc.I have a progress bar on my patreon overview page, which I will update today. To give you an idea where I'm at right now. It's accessible for everyone, who is wondering when the update will be up.
I will go away from ETA release date since it never really worked for me. Still my goal is to one day get very routined updates without all the drama XD
dudes and dudettes, that's the way windows works! :tf:i restarted my computer and i was able to get it to work
after replay the game with the walkthrough and i saw the scenes in this update i loved that mom and the Alice scenes Alice is just so incredibly sexy for someone who isnt a milf XDAccording to google, you should try to reboot. If that doesn't work you could try to run it as an admin and if that doesn't work either you might have a corrupted game download XD
Also something with NET.framework but I'm not very good with stuff like that, I hope that someone more capable could help you out!
and who da fuck is alice? some offspring of a vampiric petunia?after replay the game with the walkthrough and i saw the scenes in this update i loved that mom and the Alice scenes Alice is just so incredibly sexy for someone who isnt a milf XD
after replay the game with the walkthrough and i saw the scenes in this update i loved that mom and the Alice scenes Alice is just so incredibly sexy for someone who isnt a milf XD
Not because it's me who wrote it, but I really recommend you to use the "soft way" rather than the "hovermap editing".I will note this page and maybe will have a renpy integrated labeling, or go with the usual hovermap editing I did in 0.04 for the hallway! Thank you!
style.yourNameForTheStyle.background = Solid( "#101010" )
style.rebuild()
The same can be said of all her family... And you're probably not far to the right answer. The pregnancy thing with Mary clearly let me think of some kind of mutant community which need to breed inside the community. An unavoidable tradition, perhaps also forced if the "power" is rare, and even more if the family want to live outside of the community. Some kind of, "alright, you can go, but firstly you gave us a child with your daughter power, since she's the only one in the community to have it".and who da fuck is alice? some offspring of a vampiric petunia?
The latter.Mary? Alice? Did I play sth different? Or am I missing the joke?