Search found 24 matches

by Piplupcrazygirl
Fri Nov 30, 2018 2:01 am
Forum: Creator Discussion
Topic: Help me name my game
Replies: 9
Views: 1913

Re: Help me name my game

I think you should at least create a summary of your game first~ it's hard to come up with something if we don't know the details ^^
by Piplupcrazygirl
Mon Feb 09, 2015 11:56 pm
Forum: Ren'Py Questions and Announcements
Topic: How to Make an Event Occur at a Certain # of Love Points
Replies: 3
Views: 518

Re: How to Make an Event Occur at a Certain # of Love Points

This is doable...but how to do it depends on how your have set up your game...and how you imagine this asking out would happen. Do you just go on with the game an whenever these points hit 500 the Guy #1 calls on the phone and asks you out? Do you have to be talking to him for the asking out to hap...
by Piplupcrazygirl
Mon Feb 09, 2015 10:22 pm
Forum: Ren'Py Questions and Announcements
Topic: How to Make an Event Occur at a Certain # of Love Points
Replies: 3
Views: 518

How to Make an Event Occur at a Certain # of Love Points

Is this possible...? xD

//Shot

For example if I have Guy #1 at 500 love points an event to be asked out will occur-

I'm not good at explaining this...
by Piplupcrazygirl
Mon Aug 18, 2014 11:23 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you Display 2 Screen buttons?
Replies: 1
Views: 349

How do you Display 2 Screen buttons?

Is this possible? And if it is, then how can I do it? ; u ; .....
by Piplupcrazygirl
Sun Aug 03, 2014 8:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

I fixed the problem now XD aha
I was playing around with it, Thank you for the help though :)
by Piplupcrazygirl
Sun Aug 03, 2014 7:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

In that case, I have no idea why that's happening. Did you try setting style.my_bar.ymaximum to 29? Did you try restarting your game? Is it still a problem? Yes, I tried setting it to 29 and restarting but it's still stretched out. init -5 python: #custom bar ----------------------- style.my_bar = ...
by Piplupcrazygirl
Sat Aug 02, 2014 6:30 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

akemicchi wrote:How big is the image of your bar? Try playing around with ymaximum.
It's 197x29
by Piplupcrazygirl
Fri Aug 01, 2014 11:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

Can we see the relevant code? Like the styles and the bar. Here's the bar init python: style.my_bar = Style(style.default) style.my_bar.left_bar = Frame("bar_full.png", 0, 0) style.my_bar.right_bar = Frame("bar_empty.png", 0, 0) style.my_bar.hover_left_bar = Frame("bar_hove...
by Piplupcrazygirl
Fri Aug 01, 2014 11:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

The best way of customizing the look of the bar is to use Styles . I'm not sure you can recolor bars, but most people just use custom graphics for them. Here's a tutorial by OokamiKasumi on how to make a Love Meter. It uses UIs instead of Screen language so you'll need to convert that to Screen lan...
by Piplupcrazygirl
Thu Jul 31, 2014 9:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

Ahh, okay, I see. All you have to do is put another frame and use position style properties like xalign to place it where you want. screen aff_screen: frame: has vbox hbox: label "Italy" xminimum 0 bar range max_love value italy_love xmaximum 200 text "Germany: [germany_love] points&...
by Piplupcrazygirl
Thu Jul 31, 2014 3:09 am
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

Ahh, okay, I see. All you have to do is put another frame and use position style properties like xalign to place it where you want. screen aff_screen: frame: has vbox hbox: label "Italy" xminimum 0 bar range max_love value italy_love xmaximum 200 text "Germany: [germany_love] points&...
by Piplupcrazygirl
Thu Jul 31, 2014 2:19 am
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Re: Information Screen help

It's definitely possible. Can you post the relevant code? :) Even just the affection point list. Sure ; u ; here it is~ screen aff_screen: frame: has vbox hbox: label "Italy" xminimum 0 bar range max_love value italy_love xmaximum 200 text "Germany: [germany_love] points" text &...
by Piplupcrazygirl
Thu Jul 31, 2014 1:53 am
Forum: Ren'Py Questions and Announcements
Topic: Information Screen help
Replies: 14
Views: 1262

Information Screen help

I was trying to split the affection point list in half (like in the edited picture below), is there any way I can do that?
by Piplupcrazygirl
Fri Jul 11, 2014 9:22 pm
Forum: Ren'Py Questions and Announcements
Topic: It says "Not Defined"? Love bar help
Replies: 6
Views: 833

Re: It says "Not Defined"? Love bar help

If you still got an error then check the priority of your init blocks (for now you've set the countries love points in init -2 python, then set the countries show variables in init python and if you really made stats as an overlay function it should be defined after that or in init 1 python block o...