Search found 65 matches

by kitsalai
Mon Jan 04, 2016 9:50 pm
Forum: Demos & Beta Testing
Topic: Imaginatum [BxG] [Slice of Life]
Replies: 4
Views: 1472

Re: Imaginatum [BxG] [Slice of Life]

Hey Karl_C. I do plan on revealing their stories later on when the protagonist finally starts to get to know the other characters better. And trust me, their routes will be anything but "an endless success story". This first arc is kinda just introducing everybody (I've only written like 1...
by kitsalai
Sat Jan 02, 2016 11:54 pm
Forum: Demos & Beta Testing
Topic: Imaginatum [BxG] [Slice of Life]
Replies: 4
Views: 1472

Re: Imaginatum [BxG] [Slice of Life]

Thank you for playing and giving feedback! I put a lot of work into proofreading it, so I appreciate the praises. There is a small bug that I came across the last minute. I'm glad you didn't stumble upon it. I do agree with most of the negative statements you've made. The story's based on a flimsy f...
by kitsalai
Sat Dec 26, 2015 6:27 pm
Forum: Demos & Beta Testing
Topic: Imaginatum [BxG] [Slice of Life]
Replies: 4
Views: 1472

Imaginatum [BxG] [Slice of Life]

https://imaginatum.files.wordpress.com/2014/10/header.png DOWNLOAD LINKS http://www.mediafire.com/download/y450je19mck4889/imaginatum-0.2-all.zip https://mega.nz/#!Kc0y3CwT!j-rrXdx4A9x0gdyzoHQAw6GvXc8jWC9TvJCs3SMSnqA STORY The story takes place in the 22nd century where the advancement of neurotech...
by kitsalai
Fri Jul 17, 2015 2:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Navigation map jumps to start menu
Replies: 2
Views: 675

Re: Navigation map jumps to start menu

I believe using call screen will fix your problem. It waits until there's an interaction before continuing the script http://www.renpy.org/doc/html/screens.html#call-screen For example try: label EntranceHall: hide screen Cafeteriamap show firstfloor at Position(xpos = 123, xanchor=0, ypos=61, yanch...
by kitsalai
Wed Jul 15, 2015 5:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding margin/padding on say_label property
Replies: 3
Views: 2054

Re: Adding margin/padding on say_label property

I am a bit unclear what you mean by say_who_window is FALSE. You're using the two_window option, right? If you didn't change too much from the default screens.rpy and options.rpy, the say_who_window style affects the namebox and window style affects the dialoguebox. style.say_who_window.bottom_margi...
by kitsalai
Sun Jul 12, 2015 3:09 am
Forum: Ren'Py Questions and Announcements
Topic: 'Looping' an image transformation?
Replies: 2
Views: 1818

Re: 'Looping' an image transformation?

From my understanding, you want to scroll a tiled image? I would do this by making the tiled image at least 2x the screen width. You can either do it in Photoshop/Gimp or tiling it within renpy using something like image train = HBox("file.png", "file.png") Then, you'll need to d...
by kitsalai
Fri Jul 10, 2015 3:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Most efficient method to show animations without lag[solved]
Replies: 5
Views: 3124

Re: Most efficient method show animations without lag

There is a delay exactly as you describe but no lag (at all) if you allow Ren'Py to predict images before hand (no changes made to your function and Animation will do it's job here as good as anything else). Thank you so much xela! I did not realize there is a renpy.start_predict() function and it ...
by kitsalai
Fri Jul 10, 2015 1:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Most efficient method to show animations without lag[solved]
Replies: 5
Views: 3124

Re: Most efficient method show animations without lag

My files are quite large... You can test the 10 MB of pngs if you'd like. I'll look into reducing the resolution if there's no other way. I did a make a mpeg of the animation, but the problem is I can't get the transparency to work. I tried both methods mentioned here http://www.renpy.org/wiki/renpy...
by kitsalai
Thu Jul 09, 2015 7:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Most efficient method to show animations without lag[solved]
Replies: 5
Views: 3124

Most efficient method to show animations without lag[solved]

Hello fellow Renpy users. I am making a few animations in Blender and am now trying to port it Renpy. For this specific case, I ported frames "0011.png" to "0082.png" in a folder called rpg_water. The animation has 24 FPS. With some effort, I managed to spit out the following cod...
by kitsalai
Thu Jul 09, 2015 6:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Relationship points are not working correctly.
Replies: 5
Views: 574

Re: Relationship points are not working correctly.

Have you tried isolating the function to make sure it's working properly? Something like: label start: $ sam = 0 "sam: [sam]" $ mod_sam(2) "sam: [sam]" $ mod_sam(-1) "sam: [sam]" If this works, then you'll have to start debugging and find every instance of sam to see wh...
by kitsalai
Thu Jul 09, 2015 2:51 am
Forum: Ren'Py Questions and Announcements
Topic: Several questions about GUI coding
Replies: 2
Views: 602

Re: Several questions about GUI coding

I've never used those tutorials but is there a reason you're using 2 imagemaps instead of one? Unless you're planning to use the same imagemap on multiple screens, I feel that having 2 of them might cause problems with possible overlap. The back button doesn't work for some reason I don't understand...
by kitsalai
Sun Jul 05, 2015 8:20 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Triggering events during certain times of the day
Replies: 10
Views: 1170

Re: Triggering events during certain times of the day

trooper6 wrote:...
Wow, I completely read that wrong. Sorry about that.

daikiraikimi's calendar class does have a weekday function that returns the day of the week. You can look into that and use if statements as trooper6 said.
by kitsalai
Sun Jul 05, 2015 7:27 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Triggering events during certain times of the day
Replies: 10
Views: 1170

Re: Triggering events during certain times of the day

You can use python's time class: https://docs.python.org/2/library/time.html#time.strftime For example: init python: import time label start: $day = time.strftime("%a") if day == "Sun" or day == "Sat": jump event1 else: jump event2 Just make sure the variable day doesn'...
by kitsalai
Sat Jul 04, 2015 1:23 am
Forum: Ren'Py Questions and Announcements
Topic: xcenter and ycenter commands not working; screen goes awry.
Replies: 4
Views: 939

Re: xcenter and ycenter commands not working; screen goes aw

One thing that might help is specifying the xysize. For instance, xysize 600, 400. Or xmaximum and xminimum if you want.
by kitsalai
Sat Jul 04, 2015 12:29 am
Forum: Ren'Py Questions and Announcements
Topic: Choice buttons, function to change warning on/off [SOLVED]
Replies: 7
Views: 823

Re: Choice buttons, add function that can change warning on/

All of my styles are customized so I'm uncertain which one applies the rounded corners. But to guide you in the right direction, you'll need to change the insensitive_background and other insensitive_ properties.