Search found 745 matches

by DragoonHP
Thu Dec 09, 2021 3:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Does renpyweb not support request module?
Replies: 2
Views: 500

Re: Does renpyweb not support request module?

I keep getting a CORS error on POST request. Seems like google app engine and CORS don't play nice.
by DragoonHP
Thu Dec 09, 2021 4:10 am
Forum: Ren'Py Questions and Announcements
Topic: Does renpyweb not support request module?
Replies: 2
Views: 500

Does renpyweb not support request module?

I have a project where I make use of the request but whenever I try to run it in the browser, it fails and the only log I get is "Bye".

Does Ren'Py not support the request library in the web version?

EDIT: Also, is there another way to access websites through renpyweb?
by DragoonHP
Thu Dec 09, 2021 2:10 am
Forum: Ren'Py Questions and Announcements
Topic: [CLOSED] Persistent variables reset on game launch
Replies: 0
Views: 523

[CLOSED] Persistent variables reset on game launch

So I'm having this weird problem where my persistent variables are not being saved. Every time I relaunch the game, all these persistent variables are set again. if persistent.test == None: persistent.test = True print "test" if persistent.multiple_id == None: print "here" persis...
by DragoonHP
Thu Dec 09, 2021 1:48 am
Forum: Ren'Py Questions and Announcements
Topic: [CLOSED] Weird issue with Ren'py Web
Replies: 3
Views: 632

Re: Weird issue with Ren'py Web

Maybe. I don't know.

How can I check that?


EDIT: Yeah it is progressive download. Fixed it
by DragoonHP
Mon Dec 06, 2021 9:54 am
Forum: Ren'Py Questions and Announcements
Topic: [CLOSED] Weird issue with Ren'py Web
Replies: 3
Views: 632

Re: Weird issue with Ren'py Web

Bumping it up again. Anyone knows what's going on?
by DragoonHP
Mon Nov 29, 2021 6:11 pm
Forum: Ren'Py Questions and Announcements
Topic: [CLOSED] Weird issue with Ren'py Web
Replies: 3
Views: 632

[CLOSED] Weird issue with Ren'py Web

So the web version takes the time to load the zip of the game but then when I run the game, images, music and sound are loaded in real time too.

What am I doing wrong?
by DragoonHP
Wed Oct 06, 2021 10:32 am
Forum: Ren'Py Questions and Announcements
Topic: [renpyweb] Sounds aren't playing
Replies: 0
Views: 520

[renpyweb] Sounds aren't playing

Ren'Py: 7.4.7.1862

During the first playthrough, the sounds aren't being played because they are downloaded when they are called. If I rollback and click, the sounds play fine because they have been downloaded.

Any fixes to this?
by DragoonHP
Mon May 03, 2021 5:24 am
Forum: Ren'Py Questions and Announcements
Topic: [Android] FAILURE: Build failed with an exception.
Replies: 6
Views: 1191

Re: [Android] FAILURE: Build failed with an exception.

These three expansion files are defined in build.gradle so they are needed by rapt
by DragoonHP
Mon May 03, 2021 2:38 am
Forum: Ren'Py Questions and Announcements
Topic: [Android] FAILURE: Build failed with an exception.
Replies: 6
Views: 1191

Re: [Android] FAILURE: Build failed with an exception.

I didn't add any dependencies and the bintray.com webiste is going down in June that's why it's returning 403.

I think the first time you build a project, Ren'Py downloads some extension.
by DragoonHP
Sun May 02, 2021 11:30 am
Forum: Ren'Py Questions and Announcements
Topic: [Android] FAILURE: Build failed with an exception.
Replies: 6
Views: 1191

[Android] FAILURE: Build failed with an exception.

I keep getting this trace report. Could not determine the dependencies of task ':app:lintVitalRelease'. > Could not resolve all artifacts for configuration ':app:debugRuntimeClasspath'. > Could not resolve com.danikula.expansion:expansion:1.3.4. Required by: project :app > project :renpyandroid > Co...
by DragoonHP
Mon Nov 30, 2020 9:54 pm
Forum: Ren'Py Questions and Announcements
Topic: [RAPT] JavaException: JVM Exception occured while using jnius
Replies: 5
Views: 833

Re: [RAPT] JavaException: JVM Exception occured while using jnius

I'm sorry, but an uncaught exception occurred. While running game code: File "renpy/common/00action_other.rpy", line 537, in __call__ File "game/script.rpy", line 15, in show_ad JavaException: JVM exception occured -- Full Traceback ----------------------------------------------...
by DragoonHP
Mon Nov 30, 2020 1:49 am
Forum: Ren'Py Questions and Announcements
Topic: [RAPT] JavaException: JVM Exception occured while using jnius
Replies: 5
Views: 833

Re: [RAPT] JavaException: JVM Exception occured while using jnius

Thanks for the tip PyTom. Unfortunately, still getting the same error. I'm using admob.
by DragoonHP
Sun Nov 29, 2020 12:24 pm
Forum: Ren'Py Questions and Announcements
Topic: [RAPT] JavaException: JVM Exception occured while using jnius
Replies: 5
Views: 833

[RAPT] JavaException: JVM Exception occured while using jnius

from jnius import autoclass PythonSDLActivity = autoclass('org.renpy.android.PythonSDLActivity') def show_ad(): PythonSDLActivity.seeAd() And here is the seeAd method in PythonSDLActivity public void seeAd() { launchAd(); } And launchAd is defined as public void launchAd(){ Toast.makeText(this, &qu...
by DragoonHP
Sun Apr 19, 2020 12:43 am
Forum: Creator Discussion
Topic: VNlytics - Analytics for VN
Replies: 10
Views: 3954

Re: VNlytics - Analytics for VN

Hey Ayael.

It's working perfectly in one of the games I'm working on.
I can help you set it up. Please let me know.

Will update the example game to work with the latest iteration of the code.
by DragoonHP
Thu Feb 20, 2020 5:28 pm
Forum: Ren'Py Questions and Announcements
Topic: function works twice
Replies: 3
Views: 526

Re: function works twice

$play_1(a="music/wave/udar_lico.mp3")
You have defined it above to. Please replace it with the on "show" block.