Search found 3 matches

by altartist1
Wed Jan 09, 2019 9:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Coding problems.
Replies: 6
Views: 423

Re: Coding problems.

Okay, thanks guys. I will try these out and see if they work.
by altartist1
Wed Jan 09, 2019 5:13 am
Forum: Ren'Py Questions and Announcements
Topic: Coding problems.
Replies: 6
Views: 423

Re: Coding problems.

I did, I tried to set it to zero. Here is the code I used.

Code: Select all

label start:
    
    #Affection levels for potential love interests.
    $mom_aff = 0
    $sis_aff = 0
    $best_aff = 0
    $jane_aff = 0
    
 
It works for the mom and the sister, but it does not work for either best friend or Jane.
by altartist1
Wed Jan 09, 2019 1:53 am
Forum: Ren'Py Questions and Announcements
Topic: Coding problems.
Replies: 6
Views: 423

Coding problems.

I am having trouble giving affection points to characters in my game. In earlier lines of code, it works for some characters, but for the two I am trying to add, it is not working. It keeps coming up with the same 'undefined' message. I am having trouble trying to figure out what is wrong. Any help ...