Search found 41 matches

by AHAKuo
Fri Aug 17, 2018 5:06 pm
Forum: Completed Games
Topic: SoUnd Is ToxIc [Free] [Horror] Finally Released!
Replies: 1
Views: 2273

SoUnd Is ToxIc [Free] [Horror] Finally Released!

qsJqgQDb0dA Hello There! Welcome to SoUnd Is ToxIc . In this game, you play as Lolite Ermha, a high school student who has just started to plan out her life. Your goal in this game is to help Lolite by making the right decisions with the music beats. If you do well with her, nothing will go wrong. ...
by AHAKuo
Sun Jul 22, 2018 11:18 am
Forum: Ren'Py Questions and Announcements
Topic: How can I make a text box appear?
Replies: 1
Views: 299

How can I make a text box appear?

Hey there! :) I wanted to know how can I make a text box show up? Like when you hit quit and the game asks for confirmation.

I wanted a box to pop up to give a tip. Like a hint system would.

And how can I make that box have a yes/no option?
by AHAKuo
Sun Jun 03, 2018 6:07 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Glad to hear that you don't need to delete saves afterall! The important thing is to put yourself in player's perspective (and their mindset) - anything that disempowers them should be treated with caution. There's a reason that despite Dark Souls being one of the cult favourite games in the gaming...
by AHAKuo
Fri Jun 01, 2018 11:01 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Is this another one of those four wall breaking game that every body's trying to do which are actually anti-player? Don't be so harsh. A lot of people who played DDLC were so impressed by it that they found their way here, it's only natural that many of them want to do something similar. While I ca...
by AHAKuo
Mon May 28, 2018 8:32 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Is this another one of those four wall breaking game that every body's trying to do which are actually anti-player? Don't be so harsh. A lot of people who played DDLC were so impressed by it that they found their way here, it's only natural that many of them want to do something similar. While I ca...
by AHAKuo
Mon May 28, 2018 8:27 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Paste this code above your start: init python: slots = renpy.list_slots() def delete_slot(number): slots = renpy.list_slots() saveGames = renpy.list_saved_games() slots_file_name = {} for count, i in enumerate(slots): slots_file_name[count] = [i, str(saveGames[count][0])] renpy.unlink_save(slots_fi...
by AHAKuo
Mon May 28, 2018 8:24 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Is this another one of those four wall breaking game that every body's trying to do which are actually anti-player? Don't be so harsh. A lot of people who played DDLC were so impressed by it that they found their way here, it's only natural that many of them want to do something similar. While I ca...
by AHAKuo
Mon May 28, 2018 5:08 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

Re: How do I use $ renpy.unlink_save

Is this another one of those four wall breaking game that every body's trying to do which are actually anti-player? Yep, it is. I was going to look for an alternative but I'd rather figure this one out. It's really important for when the game enters the second playthrough, saves have to be gone, ot...
by AHAKuo
Mon May 28, 2018 2:52 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I use $ renpy.unlink_save
Replies: 12
Views: 2011

How do I use $ renpy.unlink_save

I wanted to use this code so that a save gets deleted when a certain scene appears, but how do I use this code if I want to delete let's say... slot 1 of the saves in page 1?

Thanks ^^
by AHAKuo
Sat May 19, 2018 12:15 pm
Forum: Ren'Py Questions and Announcements
Topic: Question with < or > statements
Replies: 3
Views: 777

Re: Question with < or > statements

What chocochino have said. But also, in your situation, you don't even need to test the last condition, because the only possible remaining condition after you tested greater than and less than is equal to, so you can in fact do: if zandra_relationship > blue_relationship: scene schoolclass3d2morni...
by AHAKuo
Fri May 18, 2018 10:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Question with < or > statements
Replies: 3
Views: 777

Question with < or > statements

I have been trying to get this code to work, but it keeps telling me that it's an invalid syntax. I just needed an image to be different everytime the relationship changed between two characters. The variables zandra_relationship and blue_relationship are values that have been defined, but the code ...
by AHAKuo
Fri Mar 16, 2018 10:21 am
Forum: Ren'Py Questions and Announcements
Topic: How to make timed text?
Replies: 7
Views: 1390

Re: How to make timed text?

https://www.renpy.org/doc/html/screens.html?highlight=timerhttps://www.renpy.org/doc/html/screens.html?highlight=timer That is a screen action, not what the OP is after. Perhaps the Paragraph pause function has what you want? https://www.renpy.org/doc/html/text.html?#text-tag-p The paragraph pause ...
by AHAKuo
Fri Mar 16, 2018 10:18 am
Forum: Ren'Py Questions and Announcements
Topic: How to make timed text?
Replies: 7
Views: 1390

Re: How to make timed text?

You could just use renpy.notify https://www.renpy.org/doc/html/other.html?highlight=notify#renpy.notify Or look at the Notify Screen and make your own version of it called something else https://www.renpy.org/doc/html/screen_special.html?highlight=notify#notify Not really what I'm going for but I'l...
by AHAKuo
Fri Mar 16, 2018 10:17 am
Forum: Ren'Py Questions and Announcements
Topic: How to make timed text?
Replies: 7
Views: 1390

Re: How to make timed text?

Or you could use ATL: transform timed_hide(t): time t linear .5 alpha 0 label start: show text "Hello World" at timed_hide(1) "" return This doesn't seem to work. I think this code only works for displayables not text. ###EDIT#### Oops I'm sorry. I've mistakenly forgot to put &q...
by AHAKuo
Wed Mar 14, 2018 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: How to make timed text?
Replies: 7
Views: 1390

How to make timed text?

How can I make the "show text" command show the text and hide it after a certain amount of time?