Search found 17 matches

by helcries
Sat Apr 21, 2018 3:04 am
Forum: Ren'Py Questions and Announcements
Topic: Question about image layers.
Replies: 2
Views: 476

Question about image layers.

I looked but couldn't find an answer anywhere, so I was hoping someone here knew. When your writing up your scenes, does it matter what priority / order I do show screen commands, and scene images? label start: show screen home_stats show screen work_stats scene home_livingroom or label start: scene...
by helcries
Wed Dec 20, 2017 1:48 pm
Forum: Ren'Py Cookbook
Topic: Random event code. (Example)
Replies: 3
Views: 6568

Random event code. (Example)

I struggled with trying to come up with some random event code that would do what I wanted, I took several days to look at the ways other people were doing it and couple find exactly what I was wanting to do. Then I finally got it working earlier today, just thought I would toss this out there for a...
by helcries
Mon Apr 10, 2017 12:40 pm
Forum: Ren'Py Questions and Announcements
Topic: issues with the IF statement.
Replies: 6
Views: 608

Re: issues with the IF statement.

"Use Telepathy" if Psionics and day <= 3 and > 1: This wont work. Both oparands of and are completely independend expression, calculated separately. Say, what > 1 even means? I haven't gotten around to working on the second batch of code I pasted, just got the first one figured out, and p...
by helcries
Mon Apr 10, 2017 12:00 pm
Forum: Ren'Py Questions and Announcements
Topic: issues with the IF statement.
Replies: 6
Views: 608

Re: issues with the IF statement.

Bah NM. I remembered how to test Boolean.

Set up some code to each of the classes to tell you what "job" you have, then set up a text button that I click and it tells me what job I selected. Basic but it worked. They are getting set properly.
by helcries
Mon Apr 10, 2017 11:50 am
Forum: Ren'Py Questions and Announcements
Topic: issues with the IF statement.
Replies: 6
Views: 608

Re: issues with the IF statement.

Crap sorry should have put that in the first post. It's a Boolean statement. I don't know of any way to test for a Boolean being true or false except with setting up then running the program to see how it works. I am pretty sure it's working right (Outside of the Menu), because when I have several o...
by helcries
Mon Apr 10, 2017 8:51 am
Forum: Ren'Py Questions and Announcements
Topic: issues with the IF statement.
Replies: 6
Views: 608

issues with the IF statement.

Hello, I'm a little confused about something I ran into the other day and was hoping I could find someone to try and explain WHY it happens, and what is different about the 2 examples. I was looking to make certain options in a chat only work with people who have specific flags (Telepathy, Shape shi...
by helcries
Thu Jan 26, 2017 8:56 am
Forum: Ren'Py Questions and Announcements
Topic: learning complex Ren'Py coding?
Replies: 8
Views: 6005

Re: learning complex Ren'Py coding?

What I found to be the most help is search through the cookbook find things that do roughly what I want and then tinker. Also go to the youtube and search for Python programming tutorials and try to understand them. You will DEFINITELY want to learn classes, before you really try to do anything more...
by helcries
Thu Jan 26, 2017 6:56 am
Forum: Ren'Py Questions and Announcements
Topic: The curse of the unexplained flying girls
Replies: 13
Views: 1975

Re: The curse of the unexplained flying girls

I THINK you can program a custom location like you can do custom transitions, but again its something that I haven't tried yet, so I'm not 100% sure. https://www.renpy.org/doc/html/transforms.html Thats the link I check when I am looking up info in transforms and image placement, it has a link on th...
by helcries
Thu Jan 26, 2017 6:40 am
Forum: Ren'Py Questions and Announcements
Topic: Resolved by myself, thanks for nada.
Replies: 0
Views: 341

Resolved by myself, thanks for nada.

Deleted my code and question since no one wanted to give any assistance, I was finally able to get it resolved after almost a week with no assistance.

So I tip my hat to all you kind people here.
by helcries
Thu Jan 26, 2017 6:30 am
Forum: Ren'Py Questions and Announcements
Topic: The curse of the unexplained flying girls
Replies: 13
Views: 1975

Re: The curse of the unexplained flying girls

Have you tried using the following code?

Code: Select all

show CHAR Happy2 at left with fade

show CHAR Happy2 at right with dissolve
It's about the easiest way I know to make sure that the sprites are not in the center of the screen.
by helcries
Sat Dec 10, 2016 4:19 am
Forum: Ren'Py Questions and Announcements
Topic: help with a stat page / design questions.
Replies: 0
Views: 276

help with a stat page / design questions.

Good morning all, just wanted to see if I could get some help setting up a stat page, or at least an idea of how to accomplish the effect I am looking for. Atm I have a basic stat page that is pretty simple, but it gives the info that is needed. init python: STAT_MAX = 200 strength = 10 intelligence...
by helcries
Fri Dec 09, 2016 2:05 am
Forum: Asset Creation: Art
Topic: A Bouncy Character Introduction - (With Quick How To)
Replies: 7
Views: 4138

Re: A Bouncy Character Introduction - (With Quick How To)

Looks pretty awesome, and for those of us that use 3d modeling programs due to no art talent this is a nice alternative. As for SundownKid it may be basic ATL, but since I have been searching for cool things on here over the last few months either I am just using search wrong or there are few if no ...
by helcries
Sat Dec 03, 2016 2:09 pm
Forum: Asset Creation: Art
Topic: Trouble with editing rendered images.
Replies: 4
Views: 939

Trouble with editing rendered images.

Hello all, I have been working pretty hard to get an understanding of Art, paint, GIMP, and other programs to make my images I am creating for a game I am working on look as good as possible. So I am hoping that some of you can give me some advice, if you have more experience, or point out things I ...
by helcries
Fri Oct 28, 2016 9:57 am
Forum: Ren'Py Cookbook
Topic: edit per request
Replies: 0
Views: 696

edit per request

Was asked to remove the code, just need to figure out how to remove the post now.
by helcries
Thu Oct 27, 2016 9:41 pm
Forum: Ren'Py Questions and Announcements
Topic: "If" statements and "Defining"
Replies: 6
Views: 5145

Re: "If" statements and "Defining"

I need to test this, but I think it might also help me with some of the problems I've been having as well. I thought variables were defined "$ something = False" not by using default.