Search found 753 matches

by rayminator
Sat Apr 16, 2022 5:26 pm
Forum: Ren'Py Questions and Announcements
Topic: Don't know how to remove imagebuttons.
Replies: 4
Views: 336

Re: Don't know how to remove imagebuttons.

do I really have tell you how to make a new file?

in atom click on file then select New File and make sure you put .rpy like something.rpy
same thing in most of other editors
by rayminator
Wed Apr 13, 2022 10:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Don't know how to remove imagebuttons.
Replies: 4
Views: 336

Re: Don't know how to remove imagebuttons.

I would put screen inside it's own rpy file and I would us call screen something instead of show here is a example: screen something: # real buttons here on top... imagebutton: idle "your_conference_door_closed.png" hover "your_conference_door_open.png" xpos 75 ypos 77 action Jump('test'), Hide("som...
by rayminator
Sun Apr 10, 2022 8:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Bring Text to the Front
Replies: 2
Views: 316

Re: Bring Text to the Front

there is only two thing you can do is to make the textbox bigger or shorting the sentence.
by rayminator
Sun Apr 10, 2022 1:59 pm
Forum: Ren'Py Questions and Announcements
Topic: Simple indexation error
Replies: 8
Views: 421

Re: Simple indexation error

Isn't "test" define by those line : persistent.achievements_dict = {"test": {"type": 0, "title": "zz", "text": "qsdqsd", "icon": "images/icons/ach.png" or those lines (in my previous try) : if not persistent.achievements_dict: persistent.achievements_dict = {"test": {"type": 0, # One time achievent...
by rayminator
Sun Apr 10, 2022 12:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Simple indexation error
Replies: 8
Views: 421

Re: Simple indexation error

you have to define test that's all

what is test for?

define or default test = "" or [] or {} or 0
by rayminator
Sun Apr 10, 2022 9:38 am
Forum: Ren'Py Questions and Announcements
Topic: Installing JDK Doesn't Work
Replies: 2
Views: 287

Re: Installing JDK Doesn't Work

there is more then just downloading it and installing it there is more to it that needs to be done you need to set a proper path to the JDK make sure you read instruction on how to do it it is some what hard to do there are videos on how to video/web on how to set a path https://docs.oracle.com/java...
by rayminator
Sun Apr 10, 2022 6:39 am
Forum: Ren'Py Questions and Announcements
Topic: Simple indexation error
Replies: 8
Views: 421

Re: Simple indexation error

this is the part that's giving you the error # Define your achievements here if not persistent.achievements_dict: persistent.achievements_dict = {"*achievent_name*": {"type": 0, # One time achievent "title": "Котик!", # Also neame for steam "text": "А где же блины?", # description "icon": "images/ic...
by rayminator
Fri Apr 08, 2022 10:04 am
Forum: Ren'Py Questions and Announcements
Topic: Build Issues?
Replies: 1
Views: 274

Re: Build Issues?

it looks like one of yours computers don't have python 2.7.18/3.10.4 installed

but without more information we can't really help
by rayminator
Sun Apr 03, 2022 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Hard pause for dialogue text
Replies: 4
Views: 299

Re: Hard pause for dialogue text

you use hard pause

Code: Select all

$ renpy.pause(0.5, hard=True)
by rayminator
Sun Apr 03, 2022 10:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Show modal screen while in a screen
Replies: 6
Views: 312

Re: Show modal screen while in a screen

you have to do something else hide won't by using use screen_name you want to do this pass is for so renpy won't show a error default want_to_see_this_screen = True or False if want_to_see_this_screen == True: if not name_set: use entry_screen else: pass when ever you want to hide it you use a textb...
by rayminator
Sun Apr 03, 2022 1:10 am
Forum: Ren'Py Questions and Announcements
Topic: Stats updating and Inventory Error
Replies: 1
Views: 233

Re: Stats updating and Inventory Error

this is how you change something

you have to put the define character name before you can change something in you class like pc.whatever

Code: Select all

label start:
    pc "Let's change my hp..."
    $ pc.hp += 200
    pc "Wow, my hp went up to 200"
    return
by rayminator
Sat Apr 02, 2022 4:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't seem to reuse displayables created with image tag
Replies: 3
Views: 245

Re: Can't seem to reuse displayables created with image tag

when you have a filename with spaces renpy looks for _ underscore so when naming a file make sure you put the underscore in..

is there any error shows up?
by rayminator
Fri Apr 01, 2022 6:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Translate text in ## [Solved]
Replies: 4
Views: 338

Re: Translate text in ##

is it the text in the image you want to translate or the code itself?

there is no way to translate images not in less you have the assets or the psd file or whatever image program they used or that you know how alter the image
by rayminator
Fri Apr 01, 2022 10:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED!] Moving an image by pressing a button?
Replies: 4
Views: 241

Re: Moving an image by pressing a button?

it is possible to do this I think you need something from pygame coding to do this it out of my knowledge but I believe there something in the codebook section for this