Search found 22 matches

by Niteowl
Fri Mar 13, 2020 10:21 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Re: Imagebuttons

Thank you for the replies guys.. I learned a lot (and the project is gong fine)
by Niteowl
Mon Mar 09, 2020 11:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Re: Imagebuttons

If I may ask one more question.... Is there a way to make it so that if the person buys the item, instead of the imagebutton only a static image appears? (maybe an image of the item with a 'sold' sticker on it...creating the image is not a problem, it's showing it that I"m not sure about) I wo...
by Niteowl
Mon Mar 09, 2020 5:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Re: Imagebuttons

If I may ask one more question....
Is there a way to make it so that if the person buys the item, instead of the imagebutton only a static image appears? (maybe an image of the item with a 'sold' sticker on it...creating the image is not a problem, it's showing it that I"m not sure about)
by Niteowl
Mon Mar 09, 2020 5:10 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Re: Imagebuttons

Guys, please, any input at all? I mean, I'm not asking you to write the code for me.... just one simple example of how to create an image button that works, for whatever purpose, would be enough... I can figure out the rest. Or a link to an example....something... please.... A small example that mi...
by Niteowl
Mon Mar 09, 2020 3:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Re: Imagebuttons

Guys, please, any input at all?

I mean, I'm not asking you to write the code for me.... just one simple example of how to create an image button that works, for whatever purpose, would be enough... I can figure out the rest.
Or a link to an example....something... please....
by Niteowl
Sun Mar 08, 2020 4:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Imagebuttons
Replies: 9
Views: 716

Imagebuttons

HI guys..... So, I started learning to code in renpy a few months ago. I learned a lot (thanks to the help of many, including posters on this forum) Now it's time to add a few more bells and whistles to my game, specifically a shop. I understand imagebuttons would be a fairly practical way of making...
by Niteowl
Sun Feb 23, 2020 2:50 am
Forum: Ren'Py Questions and Announcements
Topic: Issue with files added after distribution
Replies: 1
Views: 320

Issue with files added after distribution

HI guys, so I recently released the first version of an NSFW VN/game I made with ren'py..... if you are curious and you'd like to check it out you can download it for free here https://f95zone.to/threads/future-fantasy-harem-v0-1-niteowl-games.44544/ anyways, I"m mainly here to ask for help I'm...
by Niteowl
Tue Oct 01, 2019 8:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Question about Renpy bars (colors)
Replies: 8
Views: 1235

Re: Question about Renpy bars (colors)

Something like : Blue if it's below 20, green between 20 and 80, and red between 80 and 100 (for example) default elevel = 1 default ename = "Lucy" screen status(): vbox at topleft: text 'Name: [ename]' text 'Level: [elevel]' bar value StaticValue(elevel, 100) xpos 5 ysize 3 xmaximum 100 ...
by Niteowl
Thu Sep 26, 2019 11:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Question about Renpy bars (colors)
Replies: 8
Views: 1235

Re: Question about Renpy bars (colors)

okay guys, not many replies on this topic....maybe it isn't possible (or extremely complicated)

could you at least point out some ways of just customizing the color of the bar.....
I've gone through a few tutorials and checked the GUI many times but I can't figure which lines set the bar's color
by Niteowl
Wed Sep 25, 2019 10:22 am
Forum: Ren'Py Questions and Announcements
Topic: Question about Renpy bars (colors)
Replies: 8
Views: 1235

Re: Question about Renpy bars (colors)

there are many ways to do this, one is using a color object as the bar's background, this way you can tweak r,g,b values individually and get any color you want, another is using image manipulators: https://www.renpy.org/doc/html/displayables.html#image-manipulators and like enchant00 mentioned con...
by Niteowl
Tue Sep 24, 2019 10:14 am
Forum: Ren'Py Questions and Announcements
Topic: Question about Renpy bars (colors)
Replies: 8
Views: 1235

Re: Question about Renpy bars (colors)

Haven't tested it out but you cant try ConditionalSwitch: https://www.renpy.org/doc/html/displayables.html?highlight=conditionswitch#ConditionSwitch What you would do is define your filler bar as an image block and put the necessary conditions. I once encountered in renpy cookbook project where whe...
by Niteowl
Mon Sep 23, 2019 3:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Question about Renpy bars (colors)
Replies: 8
Views: 1235

Question about Renpy bars (colors)

So, guys, I'm a beginner but I've been learning a lot from this forum and from answers to past questions. Anyways, recently I've been adding screens (like days or gold counters), everything worked and I think I have a decent grasp of using screens... My question: next I want to add some stats page f...
by Niteowl
Wed Sep 18, 2019 12:47 pm
Forum: Ren'Py Questions and Announcements
Topic: trying to make a simple animation......
Replies: 7
Views: 849

Re: trying to make a simple animation......

you have the right and wrong image eileen animated: "eileen_happy.png" pause 1.0 "eileen_vhappy.png" pause 1.0 repeat it should look like this image run_animation2: "background/background3.JPG" 2.0 "background/background4.JPG" 2.0 "background/background2...
by Niteowl
Wed Sep 18, 2019 12:29 pm
Forum: Ren'Py Questions and Announcements
Topic: trying to make a simple animation......
Replies: 7
Views: 849

Re: trying to make a simple animation......

you have the right and wrong image eileen animated: "eileen_happy.png" pause 1.0 "eileen_vhappy.png" pause 1.0 repeat it should look like this image run_animation2: "background/background3.JPG" 2.0 "background/background4.JPG" 2.0 "background/background2...
by Niteowl
Wed Sep 18, 2019 12:21 am
Forum: Ren'Py Questions and Announcements
Topic: trying to make a simple animation......
Replies: 7
Views: 849

Re: trying to make a simple animation......

Python requires indentation to work correctly. Have you made sure your 'block' has been indented? I'm aware that indentation is important and I did check it....but ok, I"ll have another look But isn't the indentation kind of automatic in some cases? Like after a ':' it automatically indents......