errors listed below, and try again.
File "game/script.rpy", line 28: Line is indented, but the preceding say statement statement does not expect a block. Please check this line's indentation.
menu:
^
Ren'Py Version: Ren'Py 6.99.8.959
I've been on the forums the past day or so looking for answers to these, so I'm fairly sure this is an indentation problem. But I've tried so, so very many variations of where I'm putting things and I'm still getting variations of these same errors. Here is my code:
Code: Select all
# You can place the script of your game in this file.
# Declare images below this line, using the image statement.
# eg. image eileen happy = "eileen_happy.png"
image bg test = "background test.jpg"
image officer test = "test char officer.png"
image questioning = "interrogation room.png"
image oldlady = "old lady.png"
image oldsad = "old lady down.png"
# Declare characters used by this game.
##define Old = Character('Old Lady Witness', color="#c8ffc8")
define Ada = DynamicCharacter("OLW", who_color="#e794fd") #who_colour sets colour for character's name in this instance
#variable is OldLadyWitness but does not mean anything until called. Here I am using it to say 'Old Lady Witness' until the witness identifies herself as Ada, at which point her name will display as Ada.
# The game starts here.
label start:
scene bg test
show officer test
$ OLW = "Old Lady Witness"
#Dynamic character 'OLW' has been set.
"Public place. Middle of the day."
"You'd think this would be an easy case to solve."
"Who should I speak to?"
menu:
"I think I'll speak to the old woman.":
jump questioning
label questioning:
show oldlady
"This interview is being recorded by Inspector Name. Ma'am, can you confirm your name and age for the recording please?"
Ada "Ada Clarke, 64."
#this is where Old Lady Witness becomes Ada in the text box
$ OLW = "Ada"
"Thank-you. Interview commencing 5.55pm, staff room at Fairview Shopping Centre. Now, why don't we start with you telling me where you were at the time of the incident?"
Ada "Well, I was in the food court, I think..."
"You think?"
#the colour tag below can be used for expressing character actions
"{color=#40f294}The lady shifts uncomfortably{/color}"
show oldsad with dissolve
Ada "Yes. I have problems with my memory, you see."
return
Please don't bite! Very new to Ren'py + very very beginner python in general.
Thanks for your help in advance!

