Search found 549 matches
- Fri Jul 26, 2013 8:15 pm
- Forum: General Discussion
- Topic: Just wanted to say thanks
- Replies: 4
- Views: 747
Re: Just wanted to say thanks
I see nothing strange with your post, Fenrir. In fact there is a thread for this kind of post: http://lemmasoft.renai.us/forums/viewtopic.php?f=13&t=13879 For some reason people stopped posting there (shame on me! never did it :oops: ). I'm happy to know how Ren'Py and the community are being good ...
- Fri Jul 26, 2013 7:47 pm
- Forum: Anime, Games, and Japan
- Topic: Best Anime Ever Watched?
- Replies: 225
- Views: 43342
Re: Best Anime Ever Watched?
D Gray Man and Full Metal Alchemist. I can't choose between these two. They were just good series. I'm sad however, that they never fully finished D Gray Man....I hope they do... Here are some others that I loved Death Note (Till L dies :cry: ) Inuyasha Hellsing Wolves Rain Eureka Book of Friends Mu...
- Fri Jul 26, 2013 7:42 pm
- Forum: Anime, Games, and Japan
- Topic: Worst anime you have ever watched?
- Replies: 313
- Views: 65409
Re: Worst anime you have ever watched?
Fairy Tail! I hate that series. It's trying to take the spot in the big three and those are already overwhelming. Now don't get me wrong. I don't mind Naruto, Bleach and One Piece but Fairy Tail is bad. I will admit that I like Nastu. But Lucy is a horrible female character and turned me off from th...
- Fri Jul 26, 2013 7:28 pm
- Forum: General Discussion
- Topic: Just wanted to say thanks
- Replies: 4
- Views: 747
Just wanted to say thanks
This may be random but I just wanted to say thanks to Lemma soft forums and ren'py engine. You see I've always had depression and after graduating high school this year I was very scared about what I wanted to do with my life. For the first half of summer I was just walking around being all sad lik...
- Fri Jul 26, 2013 7:15 pm
- Forum: General Discussion
- Topic: A little funny and confusing
- Replies: 15
- Views: 1545
Re: A little funny and confusing
I used to do the 6 till 6 thing too! Unfortunately I ended up coming down with a bad case of full-time employment which put an end to it all. But what a gloriously confusing summer that was! :lol: That's happening to me right now. I have to get my sleeping back on track since I start my first year ...
- Fri Jul 26, 2013 7:12 pm
- Forum: General Discussion
- Topic: A little funny and confusing
- Replies: 15
- Views: 1545
Re: A little funny and confusing
I used to do that when my sister was in High School. When night came around we would watch a lot of animeAquaEG wrote:One summer I was literally nocturnal. Used to sleep at 6 in the morning and wake up at 6 in the evening.
- Fri Jul 26, 2013 7:05 pm
- Forum: Creator Discussion
- Topic: Fantasy Bg's
- Replies: 0
- Views: 521
Fantasy Bg's
I was wondering if anyone knows where I can get some good fantasy backgrounds. It's easy to get school, homes, and nature backgrounds but fantasy ones are very limited. A good example of what I need is a Edo Village. If anyone has any answers for me that would be really great.
- Tue Jul 23, 2013 12:15 am
- Forum: Completed Games
- Topic: Summer Paradise (GxB)
- Replies: 95
- Views: 45799
Re: Summer Paradise (GxB)
No problem. I really did like this game. My fav character was Arvin.Ran08 wrote:Wow, thank you so much @Fenrir34.I'm glad you liked my first work. Hihi. Thaaaanks.
- Fri Jul 19, 2013 2:37 am
- Forum: Ren'Py Questions and Announcements
- Topic: Can Anyone explain this.....
- Replies: 2
- Views: 405
Re: Can Anyone explain this.....
okay. thank youGoogaboga wrote:There is no way to know for sure unless we see the code. Maybe you put a label or jump/call in a bad spot and it brings you back to somewhere you don't want it to go. Or maybe you need to add a return somewhere.
- Fri Jul 19, 2013 2:21 am
- Forum: Ren'Py Questions and Announcements
- Topic: Can Anyone explain this.....
- Replies: 2
- Views: 405
Can Anyone explain this.....
Why is my scene repeating itself. It's really ruining the game....
- Thu Jul 18, 2013 8:37 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Want Choices To Disappear
- Replies: 10
- Views: 731
Re: Want Choices To Disappear
You have the end of the label read and the label teach jump to the label script1 but the code of script1 sets your variables at False which undoes the choice that set the variable to True in the first place. Which means the extra choices won't appear as long as that code is there. label scrpit1: pl...
- Thu Jul 18, 2013 8:02 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Want Choices To Disappear
- Replies: 10
- Views: 731
Re: Want Choices To Disappear
Can you be more specific? Which variable(s) are set to false? If you set readbook = False and chosemisha = False, then these two should be set to false... :P Ok. This is in scenes reply. When I read book the variable is true but doesn't gove me the right choice. The choice should be "Try going on a...
- Thu Jul 18, 2013 7:43 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Want Choices To Disappear
- Replies: 10
- Views: 731
Re: Want Choices To Disappear
You also need to set the variables before the jumps like this: menu: "Clean the house.": $ readbook = False $ chosemisha = False jump clean Or the variables won't be set. Thank you so much for the code. This helps with my game :) In my variable viewer it says the code is still false. Am I suppose t...
- Thu Jul 18, 2013 7:32 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Want Choices To Disappear
- Replies: 10
- Views: 731
Re: Want Choices To Disappear
And one more thing, in your code you put: "Read.": jump read $ readbook == True But to get it to work you just need one = sign like this: "Read.": jump read $ readbook = True That will make $ readbook be set to True. Same goes for the $ chosemisha == True code. Thank you for the codes as well. This...
- Thu Jul 18, 2013 7:31 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Want Choices To Disappear
- Replies: 10
- Views: 731
Re: Want Choices To Disappear
Thank you so much for the code. This helps with my gameleon wrote:You also need to set the variables before the jumps like this:Or the variables won't be set.Code: Select all
menu: "Clean the house.": $ readbook = False $ chosemisha = False jump clean