Search found 449 matches

by Destiny
Sat Mar 22, 2014 9:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Unlockable Route
Replies: 4
Views: 1896

Re: Unlockable Route

Ah, lol
I did read everything, replied accordingly...and totally overread that the question was for persistent data :'D
Well yeah, for persistent data, go like saguaro said
by Destiny
Sat Mar 22, 2014 7:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Unlockable Route
Replies: 4
Views: 1896

Re: Unlockable Route

It's quite simple: use statements Create three statements at the veeeeeeeery beginning of script.rpy under init and set them to false: init: $ A_done = False $ B_done = False $ C_done = False Then, upon archieving the end of a route, set $ A_done = True Important: It has to be BEFORE the game restar...
by Destiny
Sat Mar 22, 2014 9:29 am
Forum: Ren'Py Questions and Announcements
Topic: Eternal loop of doom with the image map [SOLVED]
Replies: 4
Views: 756

Re: Eternal loop of doom with the image map

Thanks Alex That (in combination with putting the previous event to False) seems to have done the trick. Its still looping every now and then, but I guess, that just means I have overseen code at one point or the other. I look through everything properly, should it still loop despite me not finding ...
by Destiny
Sat Mar 22, 2014 8:35 am
Forum: Ren'Py Questions and Announcements
Topic: Eternal loop of doom with the image map [SOLVED]
Replies: 4
Views: 756

Re: Eternal loop of doom with the image map

If you had read the post, you would have seent that I made all of them as false in the init. Here is the code, JUST in case. init: $ sporthalle_1_done = False $ sporthalle_2_done = False $ sporthalle_3_done = False $ sporthalle_4_done = False $ sporthalle_5_done = False $ sporthalle_6_done = False $...
by Destiny
Sat Mar 22, 2014 7:59 am
Forum: Ren'Py Questions and Announcements
Topic: Eternal loop of doom with the image map [SOLVED]
Replies: 4
Views: 756

Eternal loop of doom with the image map [SOLVED]

My game has six image maps where the MC can decide, which bachelor to visit. So obviously, I want the game to later differ, if the character had been already visited or not. But for a weird reason, the game always jumps back to the first scene (as if the place had never been visited). Well, everytim...
by Destiny
Thu Mar 20, 2014 7:24 am
Forum: General Discussion
Topic: Get that thing off your chest... Now...
Replies: 5264
Views: 548065

Re: Get that thing off your chest... Now...

Why? Why would anyone invent an "overwrite" feature in anything? To make the life of the writer needlessly difficult? :x My question ever since I overwrote things multiple times whenever (depending on the keyboard) I just wanted to delete or scroll the text :'D Thank god, they at least ma...
by Destiny
Thu Mar 20, 2014 7:07 am
Forum: Ren'Py Questions and Announcements
Topic: name not defined
Replies: 3
Views: 724

Re: name not defined

Ok, worked, even though I have a big different problem right now .__. The game now still doesn't like the variable, but instead of asking for a definition, it gives a error, then makes the game loop infinitely, followed by ignoring all input (I have a image map, but suddenly, all buttons go only to ...
by Destiny
Wed Mar 19, 2014 8:27 pm
Forum: Ren'Py Questions and Announcements
Topic: name not defined
Replies: 3
Views: 724

name not defined

Error I get:
NameError: name 'park_1_done' is not defined

Place where the error happens:
if park_1_done == True:

Ergo what would be the initiallizing one to that?
$ park_1_done = False
at the beginning under Label start?
Something else?

(I swear, this all worked before Ren'Py updated?! xD")
by Destiny
Wed Mar 19, 2014 11:41 am
Forum: Ren'Py Questions and Announcements
Topic: Is there a way to open a file outside of the game directory?
Replies: 10
Views: 1138

Re: Is there a way to open a file outside of the game direct

Nope, pretty much all text editors (especially those of Ren'Py) feature the search/replace feature You only have to watch out what to replace with what (if the way is "/liam/liam_not", then just replacing "/liam" into "liam" will result in a "liamliam_not" ins...
by Destiny
Wed Mar 19, 2014 3:13 am
Forum: Ren'Py Questions and Announcements
Topic: Tint the screen without im.matrix.tint?
Replies: 2
Views: 1538

Re: Tint the screen without im.matrix.tint?

However, in answer to your question, you can use a transparent blue layer with additive blending. It won't look right with software rendering but other than that it could be what you want. Well, that is more the opposite of what I want (it makes the screen brighter instead of darker) xD" Guess...
by Destiny
Tue Mar 18, 2014 8:18 pm
Forum: Ren'Py Questions and Announcements
Topic: Tint the screen without im.matrix.tint?
Replies: 2
Views: 1538

Tint the screen without im.matrix.tint?

Hello I came to a small problem here. Pretty much all backgrounds in my game are image maps and most maps have a light switch. I would love to have the player be able to switch the light on and off by clicking on the switch. I tried putting a transparent blue layer on it, but since it seems to be im...
by Destiny
Tue Mar 18, 2014 11:23 am
Forum: Ren'Py Questions and Announcements
Topic: IOError: Can't find file (image)
Replies: 2
Views: 708

Re: IOError: Can't find file (image)

(See, said, I am dum)
It didn't work since I initially had a / before Graphics. In an attempt to somehow get the error away, it seems I deleted the last directory =_=
It works now, thanks for pointing that out (please delete this thread, no one has to see I am a total retard here :'D)
by Destiny
Tue Mar 18, 2014 11:03 am
Forum: Ren'Py Questions and Announcements
Topic: IOError: Can't find file (image)
Replies: 2
Views: 708

IOError: Can't find file (image)

(Sorry, seems my long absence due to university turned me back into a noob...) Or maybe a Ren'Py update changed something so my way of doing things doesn't work anymore? Ren'Py is complaining that it can't find a image. I just put some screens here so people can see that the image is there and - acc...
by Destiny
Thu Mar 13, 2014 2:40 pm
Forum: General Discussion
Topic: Get that thing off your chest... Now...
Replies: 5264
Views: 548065

Re: Get that thing off your chest... Now...

I am teared apart right now... I have to write on my bachelor thesis and finish it till 17th of April. I also have to apply to three universities for the next course (mine doesn't have it). They want a portfolio for that since it is a creative course. I have till the 30th of April for that... (In ca...
by Destiny
Thu Mar 13, 2014 2:30 pm
Forum: Ren'Py Questions and Announcements
Topic: "Pull and drop"-Puzzle
Replies: 2
Views: 565

Re: "Pull and drop"-Puzzle

Ha, I totally didn't think of searching for "jigsaw puzzle" :'D
Thanks, I will see, if I can modify that to my liking ^__^