Search found 72 matches

by CalixtheGreat
Tue Feb 11, 2020 3:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Voice stops when there's a wait tag {w}
Replies: 0
Views: 389

Voice stops when there's a wait tag {w}

Ey guys! Just wanted some help with regard to adding voice in our game. As you can see, our characters' dialogues have wait tags {w}. Everytime I try to add the voice, the text will not go through even though the waiting time is only a second tho the voice still continues to play. Sample code: voice...
by CalixtheGreat
Mon Aug 05, 2019 8:04 pm
Forum: WiP: NaNoRenO
Topic: [delete]
Replies: 20
Views: 5329

Re: Jack-In-A-Castle [NaNo2019] [BxB, Fantasy] COMPLETED

The art is super cute! ❤
by CalixtheGreat
Sun Mar 24, 2019 6:43 am
Forum: Ren'Py Cookbook
Topic: Player controlled movementet of entity (update 2019-03-13)
Replies: 15
Views: 8184

Re: Player controlled movementet of entity (update 2019-03-13)

Useful codes. Definitely going to apply these stuffs on my game. Thanks for sharing buddy! :D
by CalixtheGreat
Tue Feb 05, 2019 6:25 am
Forum: Ren'Py Questions and Announcements
Topic: Pausing Timers
Replies: 8
Views: 1827

Re: Pausing Timers

Bump
by CalixtheGreat
Mon Nov 19, 2018 6:32 am
Forum: Ren'Py Questions and Announcements
Topic: Adding Image on Save Slot (Help!)
Replies: 4
Views: 527

Re: Adding Image on Save Slot (Help!)

Anyone knows how to add an image only to a save slot that already have a saved file? Meaning, if there's no save file in a slot, there will be no image.
by CalixtheGreat
Fri Nov 16, 2018 7:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding Image on Save Slot (Help!)
Replies: 4
Views: 527

Re: Adding Image on Save Slot (Help!)

Thanks for the response. Will try this later. 😁

Btw, here's a visual on how I want it to look like:
Image
The first save slot have a different color indicating that there's already a saved file there.
by CalixtheGreat
Thu Nov 15, 2018 2:04 am
Forum: Ren'Py Questions and Announcements
Topic: Adding Image on Save Slot (Help!)
Replies: 4
Views: 527

Adding Image on Save Slot (Help!)

Good day once again! Need some help regarding customizing the save slots. Is it possible to add a custom image (instead of screenshot) on the save slot once the player saved on that slot? But when there's no save on that slot, there will be no image but only a text "Data not found". I'm pl...
by CalixtheGreat
Wed Nov 07, 2018 12:36 am
Forum: Ren'Py Questions and Announcements
Topic: Current Battery Level
Replies: 9
Views: 1867

Re: Current Battery Level

Thanks for the response guys.
Is there a way to show the battery in a bar form instead of numbers? Thank you again!
by CalixtheGreat
Mon Nov 05, 2018 8:18 am
Forum: Ren'Py Questions and Announcements
Topic: Current Battery Level
Replies: 9
Views: 1867

Current Battery Level

Good day!
Just want to ask if it's possible to show the current battery level of your PC/phone in the game? I also want to include the current date but I don't know how. I already have the real time clock shown on my game.

Sorry for my English Hahah. Thanks in advance! 😁
by CalixtheGreat
Sat Oct 20, 2018 10:16 am
Forum: Ren'Py Questions and Announcements
Topic: Pausing Timers
Replies: 8
Views: 1827

Re: Pausing Timers

So, my problem about the timer was finally fixed. The only problem left is that, when I show the timer screen and the other screen (dialogue with hyperlink), I can't press the hyperlink anymore. Here's the sample code I used in creating the screem with hyperlinks: https://lemmasoft.renai.us/forums/v...
by CalixtheGreat
Mon Oct 15, 2018 11:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Pausing Timers
Replies: 8
Views: 1827

Re: Pausing Timers

import time CurrentTime = time.time() while 1: ....CurrentTime = time.time()-CurrentTime ....print(CurrentTime) So, what code will I type everytime I want to pause or resume the timer? Read https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=47774 Oh. I'm talking about the screen timer. Like...
by CalixtheGreat
Mon Oct 15, 2018 11:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Pausing Timers
Replies: 8
Views: 1827

Re: Pausing Timers

import time CurrentTime = time.time() while 1: ....CurrentTime = time.time()-CurrentTime ....print(CurrentTime) So, what code will I type everytime I want to pause or resume the timer? Read https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=47774 Oh. I'm talking about the screen timer. Like...