Search found 24 matches

by Two Dollars
Sun Oct 15, 2023 8:27 pm
Forum: Ren'Py Questions and Announcements
Topic: In Nighten's PhoneText.rpy can you add d.who
Replies: 1
Views: 736

In Nighten's PhoneText.rpy can you add d.who

I have a few questions. This is in the rpy file that comes with Hiden's Text Message. I apologize because I'm not a coder and this is getting a little complicated. Is it possible to add additional d.who? Basically, the game has more than one Main Character adn I want to be able to bring up a differe...
by Two Dollars
Sun Oct 15, 2023 1:24 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Black image with red border when I try to bring up Screen
Replies: 2
Views: 681

Re: Black image with red border when I try to bring up Screen

First of all, please put all of your code inside [ code ] ... [ /code ] tags (without the spaces in the brackets)! Nobody wants to read this unformatted text. Whenever you create a "frame" inside screen, make sure to understand that Renpy has a default style for frames. This includes sett...
by Two Dollars
Sat Oct 14, 2023 10:52 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Black image with red border when I try to bring up Screen
Replies: 2
Views: 681

(Solved) Black image with red border when I try to bring up Screen

I'm starting to play around with these Screens and just trying to bring one up screen. All I get is a black screen with a red border. The image is 128x272 screen phone_alena(): add "phone_alena_imagebutton" frame: xalign 0.5 yalign 0.5 label textingnickyineurope: scene scene3image1 show sc...
by Two Dollars
Fri Oct 13, 2023 10:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Best non-NVL phone systems so you can have 2 phone systems.
Replies: 0
Views: 8129

Best non-NVL phone systems so you can have 2 phone systems.

I'm not sure if this is even possible.

MC has one phone for the members of his family and friends and another for the members of his gang.

Does anyone know if this is possible? If so what is the best non-NVL phone system to use.
by Two Dollars
Thu Oct 12, 2023 4:50 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Question about Boolean Variables
Replies: 6
Views: 2558

Re: (Solved) Question about Boolean Variables

Imperf3kt wrote: Thu Oct 12, 2023 4:24 pm Another tip is whenever you have something like

Code: Select all

if variable == True:
you've actually written

Code: Select all

if True == True
You can actually simplify that to

Code: Select all

if variable:
Would that look like...

if crawlacrossthefield:
by Two Dollars
Thu Oct 12, 2023 1:21 pm
Forum: Ren'Py Questions and Announcements
Topic: (Solved) Question about Boolean Variables
Replies: 6
Views: 2558

(Solved) Question about Boolean Variables

New to ren'py. This functionality figures prominently in my game, so want to make sure I am doing it right. Here is my code: init: ## All variables are in a seperate varables.rpy file. $ crawlacrossfield = False $ walkacrossfield = False $ runacrossfield = False label edgeofthefield: scene scene2ima...
by Two Dollars
Wed Oct 11, 2023 6:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Confused about NVL-Mode works with defining character.
Replies: 0
Views: 8160

Confused about NVL-Mode works with defining character.

I am fairly new to Ren'py and have not used NVL-mode before. But I want to use Nighten's Yet Again phone system. I've watched and read the tutorials but had a question about defining characters. Here is how I have my characters defined currently. define MC_Name = Actor(Character("Alena Burke&qu...