Search found 47 matches

by justcolorado
Wed Mar 02, 2022 5:05 pm
Forum: Ren'Py Questions and Announcements
Topic: How do I show the skip button only when the player can skip
Replies: 0
Views: 810

How do I show the skip button only when the player can skip

I have a skip button and it works perfectly as expected. screen inGameMenuButton: imagebutton idle At("gui/button/in_game_menu_small.png", three_quarters) hover At("gui/button/in_game_menu_small_p.png", three_quarters)action ShowMenu("quickMenu") xpos 1700 ypos 10 image...
by justcolorado
Sun Dec 12, 2021 3:12 pm
Forum: Ren'Py Questions and Announcements
Topic: http requests in version 7.4 +
Replies: 3
Views: 479

Re: http requests in version 7.4 +

That is probavbly because requests are already bundled with RenPy starting from 7.4.0. Thanks! that is great news. I migrated my project to the latest, imported requests without adding any packages in my /game/ directory. And now everything works fine. In the old repo it said "It supports http...
by justcolorado
Sun Dec 12, 2021 9:12 am
Forum: Ren'Py Questions and Announcements
Topic: http requests in version 7.4 +
Replies: 3
Views: 479

http requests in version 7.4 +

As a developer, I would like to make an HTTP request from ren'py to my server, so that I can use the reply for an in-game feature. I used this repo :D https://github.com/renpytom/renpy-requests and it works fine on v7.3.5, but not on releases after. I am OK with using v7.3.5 but there are some great...
by justcolorado
Sat Sep 14, 2019 10:46 am
Forum: Asset Creation: Writing
Topic: I need Help Please with my awful love scene writing
Replies: 2
Views: 8400

I need Help Please with my awful love scene writing

Hello, I am trying to do a scene for a VR visual novel / RPG we are working on where the player was initially pursuing one route but 3 other routes were introduced at once in the previous scene, and now the player has a choice to interact with all 4 routes. I came up with this but I don't like it at...
by justcolorado
Fri Mar 01, 2019 7:46 pm
Forum: WiP: NaNoRenO
Topic: Mnemonic Devices [Sci-fi, Romance] [BxG/BxB/NBxB]
Replies: 34
Views: 7976

Re: Untitled [Sci-fi, Drama] [BxG/BxB/NBxB]

Woohoo, let's go! Got some concepts for the MC all sketched up. I'm going to focus on just three hairstyles to start and so far 1, 2, and 5 seem to be winners. https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/intermediary/f/6aecee0f-d369-4591-ae1a-8685328c1742/dd0z0cc-1c4f244c-8861-4b3e-b791...
by justcolorado
Wed Jan 16, 2019 2:06 am
Forum: Asset Creation: Writing
Topic: Change the name of the game or not?
Replies: 8
Views: 1651

Re: Change the name of the game or not?

Good choice. I like Pure affection much better
by justcolorado
Tue Jan 30, 2018 5:04 pm
Forum: Creator Discussion
Topic: Does anyone know what Sano Gengaman software is?
Replies: 1
Views: 1058

Does anyone know what Sano Gengaman software is?

I saw some assets for sale saying they were compatible with Sano Gengaman software. example http://www.dlsite.com/ecchi-eng/work/=/product_id/RE074454.html It looks like it is a japanese program for mixing and matching assets. Maybe the name is getting lost in translation. I have no idea what this i...
by justcolorado
Mon Jan 30, 2017 7:18 pm
Forum: We are a Free Project looking for Partners
Topic: [NaNoReno] A game about Dogs!~ (Programmer, Composer)
Replies: 6
Views: 1286

Re: [NaNoReno] A game about Dogs!~ (Programmer, Composer)

That sounds so cool! I am probably not doing Nano this year. But the dog shelter seems like a great idea.
by justcolorado
Wed Jan 25, 2017 10:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Is this the right way to set up screens?
Replies: 7
Views: 1057

Re: Is this the right way to set up screens?

I set variables from buttons on screens it with function calls like this. textbutton "Buy": action [ Function(trader.sell_Wheel_to_Player) ] you will need to setup a class in python with member functions to get it to work in that way maybe there is an easier way that I am not aware of.
by justcolorado
Wed Jan 25, 2017 9:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Is this the right way to set up screens?
Replies: 7
Views: 1057

Re: Is this the right way to set up screens?

label homeroom: hide b #Hot fix number one. Later in the game I show a character. I can't figure out how to hide this character properly. The only solution is hiding it in the main label. I definitely dont want to start each label by hiding every possible character. Try this to clear your character...
by justcolorado
Tue Jan 24, 2017 7:02 pm
Forum: Ren'Py Cookbook
Topic: Simple Shooting Game for Ren'Py - CookBook
Replies: 2
Views: 7063

Re: Simple Shooting Game for Ren'Py - CookBook

Needs some work like being able to move it with keyboard or mouse. Can't do anything if its not close to the target but i'm surprised that it can shoot precise image model rather than region hit. Also im surprised how simple the code is, i think i can add keyboard movement or mouse and R button to ...
by justcolorado
Tue Jan 24, 2017 6:22 pm
Forum: Works in Progress
Topic: Caravan Of Saints [BxGGGGG....] [Old West, Polygamy]
Replies: 2
Views: 1349

Caravan Of Saints [BxGGGGG....] [Old West, Polygamy]

UY1NnSe--0I nZTyAfORUpg This is a visual novel based on the true life story of the 52nd wife of Brigham Young. Go on a journey 1200 miles beyond the edge of the civilized world with the Caravan of Saints. Make decisions that effect the outcome of a story about polygamy, murder and the most brutal m...
by justcolorado
Thu Jan 19, 2017 9:53 pm
Forum: Ren'Py Questions and Announcements
Topic: Can't seem to get this to work
Replies: 2
Views: 1190

Re: Can't seem to get this to work

Hard to say without seeing what you did.
Did you add something like this to options.rpy?

Code: Select all

config.main_menu_music = "/my_folder/my_song.mp3"