Search found 7 matches

by ladilol
Thu Jan 31, 2013 3:01 am
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points (Solved)

Yes actually, when I try to do

Code: Select all

if
statements
by ladilol
Thu Jan 31, 2013 2:40 am
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points (Solved)

Ah you're right. It keeps saying that it's not defined.... This is really distressing... Do you think that I'll have to redo everything in order to get the result I want?
by ladilol
Wed Jan 30, 2013 11:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points

That seems to have worked! Thank you so much!
by ladilol
Wed Jan 30, 2013 11:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points

# The game starts here. label start: $ parihan_points = 0 scene black "{i}{size=-5}{cps=20}When I was younger, my mother always told me…{/cps}{/size}{/i}" menu: "Calm down already!": jump dissapoint "Keep freaking out": jump laugh label laugh: $ parihan_points += 5 $ f...
by ladilol
Wed Jan 30, 2013 11:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points

It unfortunately didn't work and the init method is a little too complicated for me at my beginning level. Is there any other advice you could offer me?
by ladilol
Wed Jan 30, 2013 10:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Re: Defining Error with Relationship Points

Thank you for the link but that's exactly what I've been doing, yet it's not working.

Code: Select all

# The game starts here.
label start:
    $ parihan_points = 0
Then there's text and character introductions in between

Code: Select all

    label laugh:
        $ parihan_points += 5
        $ freak_out = True
by ladilol
Wed Jan 30, 2013 10:24 pm
Forum: Ren'Py Questions and Announcements
Topic: Defining Error with Relationship Points (Pending)
Replies: 12
Views: 999

Defining Error with Relationship Points (Pending)

I have been trying to figure this out by looking over similar questions on here, but have yet to solve my problem. When I try to apply relationship points to one of the characters, it keeps saying" NameError: name 'parihan_points' is not defined I'm unsure if this is a problem in where I put th...