Search found 25 matches

by prestristan
Fri May 29, 2020 11:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Is there any anti-cheat code
Replies: 24
Views: 2356

Re: Is there any anti-cheat code

Hmm.. now this is an intriguing question right here.. I too want to learn about it. But when you say cheating, you mean, memory manipulation like what "Cheat engine" does? There's got to be a way to compare if the values have changed. I did a bit of searching myself and found this: From re...
by prestristan
Tue May 19, 2020 1:28 am
Forum: Ren'Py Cookbook
Topic: [UPDATED] tutorial: Attaching Admob to RenPy
Replies: 46
Views: 33750

Re: [UPDATED] tutorial: Attaching Admob to RenPy

AoiUsui wrote: Mon May 11, 2020 6:54 am Hi,
It seems we can't open the game in Android after following the YouTube video. We don't know how to fix this.

Looking forward for any help.
The video retr0 posted is for Renpy 7.3.3 check if the APK you've created is from 7.3.3
by prestristan
Fri May 15, 2020 1:52 am
Forum: Ren'Py Questions and Announcements
Topic: ctc not working with dynamic characters
Replies: 1
Views: 285

Re: ctc not working with dynamic characters

Have you tried putting the subfolder where the ctc image is located? I had the same issue before and I put "gui/ctc.png" on the image animation and it started working define mc= Character("", color="#000000", ctc="animatedctc", ctc_position="fixed") ...
by prestristan
Fri May 15, 2020 1:21 am
Forum: Ren'Py Questions and Announcements
Topic: Timer using persistent data [HELP]
Replies: 8
Views: 666

Re: Timer using persistent data [HELP]

Try this code sent by Per K Grok on my post similar to this: https://lemmasoft.renai.us/forums/viewtopic.php?f=8&t=58606&p=527578#p527578 default timeleft=10 default point=0 screen cash(): if timeleft>1: timer 1.0 action SetVariable("timeleft", timeleft-1) repeat True elif timeleft...
by prestristan
Mon May 11, 2020 11:48 pm
Forum: Ren'Py Questions and Announcements
Topic: Timer using persistent data [HELP]
Replies: 8
Views: 666

Re: Timer using persistent data [HELP]

This might be the one you're looking for?
viewtopic.php?t=48299#p478576
by prestristan
Mon May 11, 2020 9:25 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Imagebutton and show and hide screen on background
Replies: 5
Views: 401

Re: Imagebutton and show and hide screen on background

No words what so ever.
The solution slapped to my face!
Thank you so much hell_oh_world that solved my issue!
by prestristan
Mon May 11, 2020 7:31 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Imagebutton and show and hide screen on background
Replies: 5
Views: 401

Re: Imagebutton and show and hide screen on background

@hell_oh_world & MaydohMaydoh > Thank you so much for your reply! I really appreciate the help that you're giving. That actually solve half of my problem! The button is now clickable without interrupting the dialogue of the character. My only problem now is I would like the game to show an image...
by prestristan
Mon May 11, 2020 6:25 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Imagebutton and show and hide screen on background
Replies: 5
Views: 401

[SOLVED] Imagebutton and show and hide screen on background

Hi there! Thank you for taking the time to look at my issue. I would like to be able to use an imagebutton that i set so when I click it, the imagebutton will disappear and a variable will be set (It's something like a hidden item on the map) here is my code: screen hiddenitem(): #modal True imagebu...
by prestristan
Wed May 06, 2020 4:19 am
Forum: Ren'Py Cookbook
Topic: Converting Twine source to .rpy files
Replies: 7
Views: 8534

Re: Converting Twine source to .rpy files

Wow I didn't know Twine can do that :O
All I know is that Twine can only export to .html Ha HA
Thanks for sharing! @saguaro
by prestristan
Mon May 04, 2020 9:30 pm
Forum: Ren'Py Questions and Announcements
Topic: LiveComposite (blink and arm movement animation) question
Replies: 3
Views: 362

Re: LiveComposite (blink and arm movement animation) question

If the closed eyes and the closed arms are always displayed together, why not make eyes and arms a single image and composite armseyes with the rest? Man thanks for replying on my issue, Yeah thats my current workaround since I cant find a solution. The thing is I wanted to be able to call the eyes...
by prestristan
Sun May 03, 2020 12:48 am
Forum: Ren'Py Cookbook
Topic: [UPDATED] tutorial: Attaching Admob to RenPy
Replies: 46
Views: 33750

Re: [UPDATED] tutorial: Attaching Admob to RenPy

Sorry for double posting. I just would like to know how to use Interstitial ads instead of banner type ads. I checked these with some of my testers and the ad works fine no problem but their only complain is that banner type ads are wayyyyy annoying to the players (in their opinion). Since the admob...
by prestristan
Sat May 02, 2020 10:45 am
Forum: Ren'Py Questions and Announcements
Topic: RAPT - set to build only universal apk
Replies: 2
Views: 869

Re: RAPT - set to build only universal apk

I believe android builders have it set that way.

Even on android studio by default it created 4 different files for APKs
by prestristan
Sat May 02, 2020 8:40 am
Forum: Ren'Py Questions and Announcements
Topic: Heavy shake effect
Replies: 2
Views: 587

Re: Heavy shake effect

in

Code: Select all

 $ sshake = Shake((0, 0, 0, 0), 1.0, dist=15)
Change the "15" to how much intensity you want. the 15 here is actually the maximum distance in pixels that the screen will shake
by prestristan
Sat May 02, 2020 5:46 am
Forum: Ren'Py Questions and Announcements
Topic: LiveComposite (blink and arm movement animation) question
Replies: 3
Views: 362

LiveComposite (blink and arm movement animation) question

So I have a LiveComposite which defines the Base , face and the arm movement . image robot = LiveComposite( (180, 720), (-350, -220), "robotchar", #the base (-350, -220), "robotblinking", #the face (-350, -220), "robotarms", #arm movement ) The face is animated with the...
by prestristan
Tue Apr 28, 2020 2:46 pm
Forum: Ren'Py Cookbook
Topic: [UPDATED] tutorial: Attaching Admob to RenPy
Replies: 46
Views: 33750

Re: [UPDATED] tutorial: Attaching Admob to RenPy

Please, help me. I stucked with android:value="ca-app-pub-xxxxxxxxxxxxxxxx~yyyyyyyyyy"/> The problem - I can't find that long app ID in AdMob UI at all! It should be for apps which in Google Play, but I just have only APK from RenPy. If I go in settings, I find that - Publisher ID pub-147...