Search found 16 matches

by Tritonials
Sun Jul 14, 2019 1:19 am
Forum: Ren'Py Questions and Announcements
Topic: How to change scenes through Variables and Screens?
Replies: 4
Views: 726

How to change scenes through Variables and Screens?

Hello, I need to change the background using screens and variables. screen jx: add "images/date.png" xalign 0.5 yalign 0.0 if sun == True: $ classroom2 = 'images/classroomday.jpg' add 'images/sun_icon.jpg' xalign 1.0 yalign 0.0 else: $ classroom2 = 'images/clasroomnight.jpg' add 'images/mo...
by Tritonials
Mon Jul 08, 2019 10:26 am
Forum: Asset Creation: Art
Topic: How do I draw classrooms on a two point perspective?
Replies: 2
Views: 9007

Re: How do I draw classrooms on a two point perspective?

Ah, thank you for presenting me the SketchUp program. It's download right now and i decided to draw over the scene using Photoshop. Thank you so much again!:D
by Tritonials
Sun Jul 07, 2019 10:10 am
Forum: Asset Creation: Art
Topic: How do I draw classrooms on a two point perspective?
Replies: 2
Views: 9007

How do I draw classrooms on a two point perspective?

I really need a classroom background for my VN similar to Persona 5's classroom:
persona-5-test-answers-exam-quiz-4249-1491240527157.jpg
Any tips or tutorials on how to properly draw them? I am really struggling with this so any help would be kindly appreciated. :D
by Tritonials
Tue Jun 25, 2019 8:18 am
Forum: Ren'Py Questions and Announcements
Topic: How do I put text on screens?
Replies: 1
Views: 589

How do I put text on screens?

So I'm trying to make an Imagemap, And that Imagemap shows the coins and the current date. But I don't know how to put texts and variables onto screens and Imagemaps. Is there any other way?
by Tritonials
Tue Apr 23, 2019 9:48 am
Forum: Ren'Py Questions and Announcements
Topic: Showing a screen within a screen?
Replies: 5
Views: 455

Re: Showing a screen within a screen?

Ah, sorry for the late reply but all i had to do was restart the game! I'm very sorry for wasting your time. Although, thanks for all your help and effort.
by Tritonials
Sun Apr 21, 2019 4:39 am
Forum: Ren'Py Questions and Announcements
Topic: Showing a screen within a screen?
Replies: 5
Views: 455

Re: Showing a screen within a screen?

Okay, i did what you did. I set the zorder level for the variables screen to 1 and the imagemaps to 0. screen hello(): zorder 1 frame: xpadding 40 ypadding 10 xalign 0.5 yalign 0.0 hbox: text "[money]" null height 10 screen bedroom: zorder 0 imagemap: if time_of_day[0] == "Night"...
by Tritonials
Sat Apr 20, 2019 10:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Showing a screen within a screen?
Replies: 5
Views: 455

Showing a screen within a screen?

My visual novel has tons of imagemaps, and the point of my visual novel is to move around different places. But i also need to show money or variables. I tried screens but the imagemap screen overlapped the variables screen.

Can i somehow show a screen within a screen or is there other way?
by Tritonials
Thu Jan 03, 2019 8:21 am
Forum: Ren'Py Questions and Announcements
Topic: The .rpy in the end of the file is missing. Is this normal?
Replies: 4
Views: 348

Re: The .rpy in the end of the file is missing. Is this normal?

Ah, hello again! i finally fixed it thank you very much for your help! :D
by Tritonials
Thu Jan 03, 2019 8:11 am
Forum: Ren'Py Questions and Announcements
Topic: The .rpy in the end of the file is missing. Is this normal?
Replies: 4
Views: 348

Re: The .rpy in the end of the file is missing. Is this normal?

Hello, sorry to bother you but how exactly do i need to do to remove the extension? Thank you very much for your fast reply! :D
by Tritonials
Thu Jan 03, 2019 7:02 am
Forum: Ren'Py Questions and Announcements
Topic: The .rpy in the end of the file is missing. Is this normal?
Replies: 4
Views: 348

The .rpy in the end of the file is missing. Is this normal?

I created a game and i checked the files to create a new .rpy file. I opened a file using the atom program in "What program do you want to open this with?" i choose atom and now i accidentally set all .rpy files to open with atom! I reset the default apps in the settings to turn it back to...
by Tritonials
Sun Dec 30, 2018 3:57 am
Forum: Ren'Py Questions and Announcements
Topic: Day/Night system help!
Replies: 4
Views: 567

Re: Day/Night system help!

Thank you so much for your help and i already figured it out thanks to you! :D
by Tritonials
Sat Dec 29, 2018 9:29 pm
Forum: Ren'Py Questions and Announcements
Topic: Day/Night system help!
Replies: 4
Views: 567

Re: Day/Night system help!

Ah, Thank you for replying to my post! But i'm still waiting for the answer for my last question which is the backgrounds. But, these will be very helpful Thank you again! :)
by Tritonials
Sat Dec 29, 2018 12:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Day/Night system help!
Replies: 4
Views: 567

Day/Night system help!

Hello, This is a newbie post and i need help on stuff and backgrounds for a day and night system. Basically, the game has 4 parts of the day. Morning, Noon, Afternoon and night. So it goes like this.. label start: $ day = 4 menu day1: "Park": c "you went out on a walk." $ day -= ...
by Tritonials
Mon Oct 29, 2018 5:01 pm
Forum: Ren'Py Questions and Announcements
Topic: Need Help for Gender Customization!
Replies: 5
Views: 1215

Re: Need Help for Gender Customization!

Thank you very much! I'll try it when i got home!
by Tritonials
Mon Oct 29, 2018 6:28 am
Forum: Ren'Py Questions and Announcements
Topic: Need Help for Gender Customization!
Replies: 5
Views: 1215

Need Help for Gender Customization!

So i'm making this game, which players can pick genders, and the avatar or sprite will show the specific gender they chose. "Pick which gender": "Male": $ male = True "Woman": pass if male == True: show male at left else: show woman at right But if i were to show the pl...