Search found 745 matches

by DragoonHP
Tue Jan 15, 2019 11:43 pm
Forum: Ren'Py Cookbook
Topic: Ren'Py Discord Rich Presence
Replies: 7
Views: 4160

Re: Ren'Py Discord Rich Presence

As far as I can tell, it allows people to see which route you are on (and other data) in the Discord Now Playing section. About chatting, I'm pretty sure it doesn't allow that but I may be wrong. Haven't tested it yet; just loked through the code a bit. It is a pretty intersting project since it all...
by DragoonHP
Tue Jan 15, 2019 11:44 am
Forum: Ren'Py Questions and Announcements
Topic: UTF-8 error?
Replies: 1
Views: 262

Re: UTF-8 error?

Most probably the script.rpy files is stored in some encoding other thana utf-8. Make sure that whatever editor you are using to save/make changes to the script is saving the file in utf-8
by DragoonHP
Tue Jan 15, 2019 11:40 am
Forum: Ren'Py Questions and Announcements
Topic: (solved)is there any way handling multiple project directories?
Replies: 3
Views: 625

Re: is there any way handling multiple project directories?

There is.
When a file named projects.txt is present in the projects directory, it is expected to contain a list of full paths to directories, one per line. Those paths are treated as projects and displayed in the launcher.
https://www.renpy.org/dev-doc/html/changelog.html#id19
by DragoonHP
Sat Oct 06, 2018 12:39 am
Forum: Ren'Py Cookbook
Topic: Projection Starfield
Replies: 12
Views: 5055

Re: Projection Starfield

M-77 wrote: Fri Oct 05, 2018 2:14 am And adding the "phyton" to "init" result in this:
It should be python.
by DragoonHP
Wed Apr 11, 2018 12:39 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] deactivate load button while no save file exists
Replies: 2
Views: 493

Re: deactivate load button while no save file exists

Code: Select all

textbutton _("Load") sensitive renpy.newest_slot()  action ShowMenu("load")
Should work. A note though, the button will be unlocked even if there is an auto save
by DragoonHP
Tue Mar 20, 2018 11:35 am
Forum: Demos & Beta Testing
Topic: [Alpha] Founders Life
Replies: 0
Views: 618

[Alpha] Founders Life

Founder Life is a casual, episodic narrative game where you must balance health, wealth and happiness with the demands of being an entrepreneur. Designed by serial entrepreneur, Nell Watson , Founder Life takes you on a journey through early stage entrepreneurship, teaching you how to manage the bal...
by DragoonHP
Thu Jan 25, 2018 4:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Opening the menu on Android/Apple Devices Via Touch Input
Replies: 20
Views: 7994

Re: Opening the menu on Android/Apple Devices Via Touch Input

So looks like the screen is not being shown for some reason
by DragoonHP
Thu Jan 25, 2018 11:31 am
Forum: Ren'Py Questions and Announcements
Topic: Opening the menu on Android/Apple Devices Via Touch Input
Replies: 20
Views: 7994

Re: Opening the menu on Android/Apple Devices Via Touch Input

No. Try with a simple left click/tap to see if anyything loads.

If nothing loads, that means the screen isn't showing up.
by DragoonHP
Thu Jan 25, 2018 7:39 am
Forum: Ren'Py Questions and Announcements
Topic: Opening the menu on Android/Apple Devices Via Touch Input
Replies: 20
Views: 7994

Re: Opening the menu on Android/Apple Devices Via Touch Input

This:

Code: Select all

screen android_overlay():
    # variant "android" # probably better to use renpy.variant test as below
    button:
        alternate ShowMenu( 'main' )
        action ShowMenu("load")
by DragoonHP
Wed Jan 24, 2018 11:34 am
Forum: Ren'Py Questions and Announcements
Topic: Positioning and screen
Replies: 1
Views: 487

Re: Positioning and screen

I'm not sure I completely understand what you are trying to do, but try removing tag menu from one or both the screens and see if it helps.
by DragoonHP
Wed Jan 24, 2018 11:31 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Ren'Py android distribution - The build seems to have failed.
Replies: 7
Views: 2804

Re: Ren'Py android distribution - The build seems to have failed.

Ren'Py needs 32-bit version of Java SDK. Which version do you have?
by DragoonHP
Wed Jan 24, 2018 11:29 am
Forum: Ren'Py Questions and Announcements
Topic: How to locally scope a variable in a screen vs a label?
Replies: 2
Views: 542

Re: How to locally scope a variable in a screen vs a label?

For screens, use default. So default name = "blah"

Labels don't have a concept of local variables. Whatever variable you declare inside a label will be available globally.
by DragoonHP
Wed Jan 24, 2018 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: Opening the menu on Android/Apple Devices Via Touch Input
Replies: 20
Views: 7994

Re: Opening the menu on Android/Apple Devices Via Touch Input

Can you give it a normal action too and see if that is triggering?
by DragoonHP
Wed Jan 24, 2018 11:19 am
Forum: Ren'Py Questions and Announcements
Topic: music volume and persistents
Replies: 4
Views: 1255

Re: music volume and persistents

So when you click on "Delete Persistent", all of persistent data is deleted. And with _preferences.volumes['music'] *= .50 you are telling Ren'Py to half the value of something that doesn't even exist anymore because we deleted it when we clicked on "Delete Persistent" Try this: ...
by DragoonHP
Wed Jan 24, 2018 11:09 am
Forum: Ren'Py Questions and Announcements
Topic: Opening the menu on Android/Apple Devices Via Touch Input
Replies: 20
Views: 7994

Re: Opening the menu on Android/Apple Devices Via Touch Input

What are you testing on? Emulator or an actual device?

If you are using the emulator, alternate is triggered by right click on the button