Search found 64 matches

by zeroTheHero
Tue Aug 06, 2019 5:39 am
Forum: Ren'Py Questions and Announcements
Topic: Some questions about timed choices.
Replies: 2
Views: 676

Re: Some questions about timed choices.

You can use the pause(delay, hard=True) function. You add the seconds you want to pause the screen as delay, so if you want a 10 second pause you go pause(10). To have the player redirected anywhere you use flow controls like jumps and labels. You should read the renpy quickstart guide or watch elai...
by zeroTheHero
Sun May 26, 2019 3:32 am
Forum: We are a Commercial Project looking for Partners
Topic: Looking for a team to complete an RPG where the hero controls time.
Replies: 2
Views: 925

Looking for a team to complete an RPG where the hero controls time.

I've been building a game bit by bit over the past year and I've finally reached the point where I feel I can invite people to join me without wasting their time. About the game: In short; The game is a story driven CYOA with a twist on the usual turn based system, leading to battles that are reacti...
by zeroTheHero
Sun Mar 03, 2019 10:10 am
Forum: Ren'Py Questions and Announcements
Topic: How to transform an image added to a screen?
Replies: 1
Views: 513

Re: How to transform an image added to a screen?

heeeeelp XD I'm starting to think it's impossible to transform images added to a screen like this
by zeroTheHero
Mon Feb 25, 2019 11:10 pm
Forum: Ren'Py Questions and Announcements
Topic: How to transform an image added to a screen?
Replies: 1
Views: 513

How to transform an image added to a screen?

My code: transform slowmove: linear 5 xalign 0.85 yalign 0.06 linear 4 xalign 0.83 yalign 0.08 linear 5 xalign 0.8 yalign 0.05 #back to initial position repeat #screen default ami = "Talk" screen ami_1: zorder 5 vbox: xalign 0.80 yalign 0.05 # xysize (250, 180) showif ami=="Talk"...
by zeroTheHero
Tue Feb 19, 2019 11:50 pm
Forum: Ren'Py Questions and Announcements
Topic: How to make an exclamation mark dance over someone's head?
Replies: 7
Views: 729

Re: How to make an exclamation mark dance over someone's head?

Hey, I'm so sorry for not getting back sooner, life got in the way this past week :( @ Donmai, @ strayerror, I haven't tested out your codes yet, but reading your answers have finally made things 'click'. Thanks for taking the time to answer! Really appreciate it ^_^ I have some free time, so will t...
by zeroTheHero
Sun Feb 10, 2019 10:29 am
Forum: Ren'Py Questions and Announcements
Topic: How to make an exclamation mark dance over someone's head?
Replies: 7
Views: 729

Re: How to make an exclamation mark dance over someone's head?

I'm copying the entire error message here cuz it'd make more sense to you guys I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 149, in script show image1 at truecenter onlayer over_screens with shake Exception: Parameter 'new_widget' is ...
by zeroTheHero
Sun Feb 10, 2019 6:58 am
Forum: Ren'Py Questions and Announcements
Topic: How to make an exclamation mark dance over someone's head?
Replies: 7
Views: 729

Re: How to make an exclamation mark dance over someone's head?

you have an extra space on the first line between e and onlayer. Not sure if this will matter show e onlayer screens Are you using tabulation instead of four spaces? nope, my sublime text editor is set to spaces, and I don't think those spaces matter cuz the code runs when I remove the transform
by zeroTheHero
Sun Feb 10, 2019 4:38 am
Forum: Ren'Py Questions and Announcements
Topic: How to make an exclamation mark dance over someone's head?
Replies: 7
Views: 729

How to make an exclamation mark dance over someone's head?

You've probably seen the exclamation mark or the sweat drop on a character's head, how do you code for it in ATL? What I'm doing for the exclamation mark: transform shake: on show: xalign 0.4 yalign 0.4 linear 0.4 rotate -15 linear 0.6 rotate 15 linear 0.3 rotate -8 linear 0.5 rotate 5 linear 0.2 ro...
by zeroTheHero
Fri Feb 01, 2019 11:13 am
Forum: Ren'Py Cookbook
Topic: Imagebutton GUI Framework [GxImagebuttons]
Replies: 105
Views: 88542

Re: Imagebutton GUI Framework [GxImagebuttons]

Hmm. Maybe it's renpy 7.0.0? I'm using the latest which I think is 7.1.3 or something. Though I've never encountered such an issue previously on any other renpy version and cannot think why it would do so. Is your file corrupting upon download? I'll check the crc value of the known good downloaded ...
by zeroTheHero
Thu Jan 31, 2019 11:45 pm
Forum: Ren'Py Questions and Announcements
Topic: My image in a composite keeps glitching/disappearing?
Replies: 5
Views: 604

Re: My image in a composite keeps glitching/disappearing?

I don't think main composite is a good name for that image. Try giving is a one word name...that is also not main...which I think is a reserved term. All that said, looking at your ATL code... image ring: "ring.png" with Fade(0.5, 1, 0.5) 3.00 repeat what is the 3.00 doing there? is that ...
by zeroTheHero
Thu Jan 31, 2019 10:46 pm
Forum: Ren'Py Cookbook
Topic: Imagebutton GUI Framework [GxImagebuttons]
Replies: 105
Views: 88542

Re: Imagebutton GUI Framework [GxImagebuttons]

I thought so too, The only thing that has changed is that I updated my Ren'py to 7.00, It worked like usual before it
by zeroTheHero
Thu Jan 31, 2019 12:50 pm
Forum: Ren'Py Questions and Announcements
Topic: My image in a composite keeps glitching/disappearing?
Replies: 5
Views: 604

Re: My image in a composite keeps glitching/disappearing?

I think the problem is that you have an image called image telephone and image telephone composite. Let's say you declare three images: image mary normal image mary happy image mary sad All three images have mary image tags. Only one mary can be onscreen at once. So this is useful so you can define...
by zeroTheHero
Thu Jan 31, 2019 11:55 am
Forum: Ren'Py Cookbook
Topic: Imagebutton GUI Framework [GxImagebuttons]
Replies: 105
Views: 88542

Re: Imagebutton GUI Framework [GxImagebuttons]

Hey, so I downloaded the updated file but it still didn't work, then I tried Donmai's solution and it worked https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=22565&start=75#p439392 Basically, open 01examples.rpy from Tutorial project and copy everything, then open examples from Renpy I...
by zeroTheHero
Thu Jan 31, 2019 5:20 am
Forum: Ren'Py Questions and Announcements
Topic: Can't get text to show on top of a screen, and when I do it doesn't come off
Replies: 12
Views: 1085

Re: Can't get text to show on top of a screen, and when I do it doesn't come off

Imperf3kt wrote: Thu Jan 31, 2019 2:56 am I think I gave bad advice, I'll review the code later when I get a chance, I see now where I went wrong, but currently haven't got the time to write up a proper example.
It's okay, at least my problem's solved :) Have a great day
by zeroTheHero
Thu Jan 31, 2019 2:31 am
Forum: Ren'Py Questions and Announcements
Topic: Can't get text to show on top of a screen, and when I do it doesn't come off
Replies: 12
Views: 1085

Re: Can't get text to show on top of a screen, and when I do it doesn't come off

When it comes to onlayer, I noticed that you also have to mention what layer the thing you want to hide is on. Because you have "text" set to "onlayer over_screens", instead of simply "hide text", it should now be hide text onlayer over_screens This should make it work...