Search found 792 matches

by rayminator
Tue Mar 29, 2022 8:20 am
Forum: Ren'Py Questions and Announcements
Topic: Is there any way to show notifications on autosaving?
Replies: 1
Views: 276

Re: Is there any way to show notifications on autosaving?

you can use

Code: Select all

renpy.notify()
example: (Don't know it this will work)

Code: Select all

$ renpy.notify("Game has been saved in slot " + persistent.saveSlot + " in auto saves.")
by rayminator
Mon Mar 28, 2022 11:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Adding a vertical scroll bar (vbar) to image gallery
Replies: 5
Views: 559

Re: Adding a vertical scroll bar (vbar) to image gallery

you can use scrollbars "vertical" screen show_image_gallery(): modal True if Lightbox_image != "": $ lb_image = im.Scale ("images/" + Lightbox_image, 1280, 720) imagebutton: idle lb_image hover lb_image xalign 0.5 yalign 0.5 focus_mask True action SetVariable ("Lig...
by rayminator
Mon Mar 28, 2022 8:57 am
Forum: Ren'Py Questions and Announcements
Topic: Renpy web Warning: write error
Replies: 3
Views: 453

Re: Renpy web Warning: write error

you have to ask Newgrounds or let them know about it cause it might on their end

cause it a mysql database error you have no access to it so you have to contact them
by rayminator
Mon Mar 28, 2022 7:35 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]how to show character at a certain time
Replies: 12
Views: 922

[SOLVED]how to show character at a certain time

Just a update I have removed the question information i figure it out in a different way it's similar to my code original code anyone can use this if they want to or not class.rpy class NPC(object): def __init__(self, name, niceName, location, hours, minutes, lbt=""): self.name = name self...
by rayminator
Sat Mar 26, 2022 12:51 am
Forum: Ren'Py Questions and Announcements
Topic: Displaying text lines in a screen one at a time
Replies: 4
Views: 401

Re: Displaying text lines in a screen one at a time

you can put them into their own text or \n for the next line

Code: Select all

text "[caster] has rolled poorly. \nThe pot goes to [player_name]."

Code: Select all

text "[caster] has rolled poorly."
text "The pot goes to [player_name]."
by rayminator
Thu Mar 24, 2022 4:27 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

Re: Game Developer Training

he forgot to default the InteractButtons/Locations/NPCS after I default them it stopped the double vision

default InteractButtons = []
default Locations = []
default NPCS = []
by rayminator
Wed Mar 23, 2022 6:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

Re: Game Developer Training

is there another way to put or call for i,q in enumerate(NPCS): for i,q in enumerate(InteractButtons): cause I got it down to bare-bone in the class right now I only have the UIButtons class like so init python: class UIButton(object): def __init__ (self, name, niceName, func): self.name = name self...
by rayminator
Wed Mar 23, 2022 8:37 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

Re: Game Developer Training

okay I have broken the code down both NPCS and UIButtons do the same thing I have tried it with just the UIButtons it show double of the buttons I have tried it with just the NPCS it show double of the character I have tried it with both UIButtons/NPCS it show double of the character and buttons so ...
by rayminator
Wed Mar 23, 2022 5:54 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Using ATL inside a screen?
Replies: 4
Views: 291

Re: Using ATL inside a screen?

you want it to do this

Code: Select all

image pour_drinks:
        "gui/maps/goosechapel/tasks/pour drinks 1.jpg"
        pause 1.0
        "gui/maps/goosechapel/tasks/pour drinks 2.jpg"
        pause 1.0
        repeat

Code: Select all

screen your_screen_name():

    add "pour_drinks"
by rayminator
Tue Mar 22, 2022 9:34 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

Re: Game Developer Training

well here is the script file only not the assets link removed his patreon page if you want to download you need to be a patreon $7 https://www.patreon.com/ThundornGuides/posts or you can just watch the videos https://www.youtube.com/playlist?list=PLKdE0Vv4UA59rd1g9ipzIlAklvfmH5cjE he hasn't responde...
by rayminator
Mon Mar 21, 2022 3:52 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

Re: Game Developer Training

this is the error code after clicking on a action button this error properly is caused by the double buttons/character I'm sorry, but an uncaught exception occurred. While running game code: File "game/scripts/script.rpy", line 18, in script call call defaultInteraction File "game/scr...
by rayminator
Mon Mar 21, 2022 3:35 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved]Game Developer Training
Replies: 6
Views: 494

[Solved]Game Developer Training

I have download Let's Code Season 4 - This Time It's Personal code to play around with when I was testing it... When I click start then go into the save menu then click on Main Menu then click on start it show double of everything like character/location_buttons/action_buttons. on his patreon page h...
by rayminator
Thu Feb 24, 2022 9:51 pm
Forum: Ren'Py Questions and Announcements
Topic: Any idea how to simplify this code?
Replies: 1
Views: 312

Re: Any idea how to simplify this code?

there is but without more information we can really help you if it just animation then I would just leave it as is or put them in a video using a webm/webp format but if it a character talking animation then I would us live2d coding but it's not free to use for making games you will need a licences ...