ATL statement contains two expressions in a row [Fixed]

Discuss how to use the Ren'Py engine to create visual novels and story-based games. New releases are announced in this section.
Forum rules
This is the right place for Ren'Py help. Please ask one question per thread, use a descriptive subject like 'NotFound error in option.rpy' , and include all the relevant information - especially any relevant code and traceback messages. Use the code tag to format scripts.
Post Reply
Message
Author
User avatar
Sakura02
Regular
Posts: 61
Joined: Fri Aug 27, 2010 7:49 pm
Projects: Ecchie Sketchy
Contact:

ATL statement contains two expressions in a row [Fixed]

#1 Post by Sakura02 » Fri Aug 27, 2010 8:58 pm

Please forgive me I am a super newbie and I am currently working on my very first game and I have no prior experience with code. I've been looking for hours, reading tutorials over and over again and doing search I promise, but I can't seem to correct this issue and I want to know what's causing it so I remember how to avoid this again.

The Error
On line 47 of C:\Documents and Settings\Sakura02\My Documents\Downloads\Ecchi/game/script.rpy: ATL statement contains two expressions in a row; is one of them a misspelled property? If not, separate them with pass.
p "Dude this place is perfect"


On line 54 of C:\Documents and Settings\Sakura02\My Documents\Downloads\Ecchi/game/script.rpy: ATL statement contains two expressions in a row; is one of them a misspelled property? If not, separate them with pass.
t "Yup it is epic awesome"
^
^
The Script

Code: Select all

  
    show putztalking:
        xpos -300 ypos 100
        linear 1.0 xpos 0 ypos 100
        
        p "Dude this place is perfect"
    
        
    show takucasual:
            xpos 1100 ypos 100
            linear 1.0 xpos 300 ypos 50
 
            t "Yup it is epic awesome"
         
As you can see I'm trying to write a dialogue after the ATL, but I feel like I'm missing something. Help? or any links that may help me?
Last edited by Sakura02 on Fri Aug 27, 2010 10:56 pm, edited 1 time in total.

User avatar
Aleema
Lemma-Class Veteran
Posts: 2677
Joined: Fri May 23, 2008 2:11 pm
Organization: happyB
Tumblr: happybackwards
Contact:

Re: ATL statement contains two expressions in a row

#2 Post by Aleema » Fri Aug 27, 2010 9:10 pm

Your dialogue (p "Dude this place is perfect") is tabbed within the ATL block. Your text should be on the same line/column as the "shows". Like:

Code: Select all

show putztalking:
        xpos -300 ypos 100
        linear 1.0 xpos 0 ypos 100
        
p "Dude this place is perfect"
    
    
show takucasual:
        xpos 1100 ypos 100
        linear 1.0 xpos 300 ypos 50

t "Yup it is epic awesome"

User avatar
Sakura02
Regular
Posts: 61
Joined: Fri Aug 27, 2010 7:49 pm
Projects: Ecchie Sketchy
Contact:

Re: ATL statement contains two expressions in a row

#3 Post by Sakura02 » Fri Aug 27, 2010 10:56 pm

Aleema wrote:Your dialogue (p "Dude this place is perfect") is tabbed within the ATL block. Your text should be on the same line/column as the "shows". Like:

Code: Select all

show putztalking:
        xpos -300 ypos 100
        linear 1.0 xpos 0 ypos 100
        
p "Dude this place is perfect"
    
    
show takucasual:
        xpos 1100 ypos 100
        linear 1.0 xpos 300 ypos 50

t "Yup it is epic awesome"
OMG I love you! *hug* Thank you fixed.

Post Reply

Who is online

Users browsing this forum: No registered users