Search found 7 matches

by DarthJMG2003
Thu Oct 19, 2023 5:08 pm
Forum: Ren'Py Cookbook
Topic: Inventory System (or: How to Store Data in a Useful Way)
Replies: 19
Views: 40571

Re: Inventory System (or: How to Store Data in a Useful Way)

Hi, there... It would be nice to have the whole tutorial complete...
by DarthJMG2003
Sun Nov 06, 2022 7:10 pm
Forum: Ren'Py Cookbook
Topic: RPG Overworld Engine
Replies: 40
Views: 46264

Re: RPG Overworld Engine

try interacting with them with spacebar, that is what i do, I don't have any problems but code incompability with the latest version of renpy and python, so you are supposed to be fine. The code needs to be updated...
by DarthJMG2003
Fri Aug 28, 2020 6:44 pm
Forum: Ren'Py Questions and Announcements
Topic: stackable messages using phone template
Replies: 2
Views: 401

Re: stackable messages using phone template

and the script.rpy code: label start: call phone_start call message_start("nadia", "hey, this is a phone texting thingy") call reply_message("oh really? what does it do lol") call message_img("nadia", "it works with images too!","images/pic1.png...
by DarthJMG2003
Fri Aug 28, 2020 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: stackable messages using phone template
Replies: 2
Views: 401

Re: stackable messages using phone template

this is the code for the options: label phone_start: window hide #show phone at phone_pickup show phone with dissolve $ renpy.pause(0.2) return label phone_msg: $ renpy.pause() hide screen phone_message $ renpy.pause(0.1) return label phone_msg2: $ renpy.pause() hide screen phone_message2 $ renpy.pa...
by DarthJMG2003
Fri Aug 28, 2020 6:41 pm
Forum: Ren'Py Questions and Announcements
Topic: stackable messages using phone template
Replies: 2
Views: 401

stackable messages using phone template

Hi i was using this phone template for a project, it works like a charm, but i want to make the message stack like in whatsapp, any ideas on how can i accomplish this??? thanks... https://i.imgur.com/FagraDr.gif this is the code: screen phone_message(who, what): vbox at incoming_message: style_group...
by DarthJMG2003
Fri Aug 21, 2020 5:46 pm
Forum: Ren'Py Questions and Announcements
Topic: left clicking a screen with a viewport doesnt unpause
Replies: 1
Views: 365

Re: left clicking a screen with a viewport doesnt unpause

[SOLVED] Here is the issue, the sentence draggable true was causing the viewport to absorb the click avoiding the story to continue, so, making draggable false resolved the issue, and for the time being, the issue is resolved... Thanks for your help and also i recommend going to the discord channel,...
by DarthJMG2003
Thu Aug 20, 2020 11:30 pm
Forum: Ren'Py Questions and Announcements
Topic: left clicking a screen with a viewport doesnt unpause
Replies: 1
Views: 365

left clicking a screen with a viewport doesnt unpause

Hi everybody, i'm making a game with a chat system, i'm using the code i've foiund in another theard but it has an issue: When i left click on the screen, nothing happens, but if i click on the sides, the areas out of the screen the game continues, my question is: why is this happening? why i cannot...