I need serious help!

A place to discuss things that aren't specific to any one creator or game.
Forum rules
Ren'Py specific questions should be posted in the Ren'Py Questions and Annoucements forum, not here.
Message
Author
KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

I need serious help!

#1 Post by KatKry »

Well, I'm new to making visual novels and I've got things like dialogue and music down but there's one thing that doesn't work...the bloody pictures! Ya can't have a visual novel without pictures, now, can you? So, I need serious help :(
I don't know what I'm doing wrong though. Here, let me give you an example of what I do and see if I'm doing it wrong. I used a simple picture of my dog for practice.

image bg SDC10007 = "SDC10007"

Then when I want to put it in I write

scene bg SDC10007
with fade

But no matter what I do it alwasy says Exception: Couldn't find file 'SDC10007'. but that's what the file's called so how does it not work!?

Anyone, please help!
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

PETpro
Newbie
Posts: 20
Joined: Wed Jun 24, 2009 1:36 am
Projects: [Working]Seven of Seven ~ Forever ~
Location: Uijeongbu, Gyeonggi-do, South Korea
Contact:

Re: I need serious help!

#2 Post by PETpro »

You forgot the file extension. :|

"SDC10007" means literally "SDC10007" file, not "SDC10007.png" or anything.

Use "SDC10007.jpg" or "SDC10007.png" instead (depending on image extension.)
Ren'Py 7 celebration as 'Seven of Seven(Shichinin no NANA) ~ Forever ~'?

KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

Re: I need serious help!

#3 Post by KatKry »

I did that but then it says 'Undefined image' TT-TT
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

Blue Lemma
Forum Founder
Posts: 2005
Joined: Sat Jan 25, 2003 2:32 pm
Completed: ToL, Shoujo Attack!, Lemma Ten
Projects: [RETIRED FROM FORUM ADMINISTRATION - CONTACT PYTOM WITH ISSUES]
Contact:

Re: I need serious help!

#4 Post by Blue Lemma »

Did you put the extension like this?

Code: Select all

image bg SDC10007 = "SDC10007.jpg"
or

Code: Select all

image bg SDC10007 = "SDC10007.png"
(depending on what type of file it is)

Then later you can do:

Code: Select all

scene bg SDC10007
and it should look for the file that you specified.
“Among those who dislike oppression are many who like to oppress.”
- Napoleon Bonaparte


I've retired from forum administration. I do not add people to the "adult" group, deactivate accounts, nor any other administrative task. Please direct admin/mod issues to PyTom or the other mods : )

JinzouTamashii
Eileen-Class Veteran
Posts: 1686
Joined: Mon Sep 21, 2009 8:03 pm
Projects: E-mail me if you wanna rock the planet
Location: USA
Contact:

Re: I need serious help!

#5 Post by JinzouTamashii »

Caps matter.

simple.JPG and simple.jpg are two different things.
Don't worry, we can get through it together. I didn't forget about you! I just got overwhelmed.
https://cherylitou.wordpress.com

KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

Re: I need serious help!

#6 Post by KatKry »

I tried all of it! None of it works! Maybe my computer just hates me?
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

JinzouTamashii
Eileen-Class Veteran
Posts: 1686
Joined: Mon Sep 21, 2009 8:03 pm
Projects: E-mail me if you wanna rock the planet
Location: USA
Contact:

Re: I need serious help!

#7 Post by JinzouTamashii »

Post a ZIP file of your build or script.rpy so we can look at it.
Don't worry, we can get through it together. I didn't forget about you! I just got overwhelmed.
https://cherylitou.wordpress.com

KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

Re: I need serious help!

#8 Post by KatKry »

Like I said, new to this so I have no idea how to do that yet >.>
But this is some of what I've done anyway if this helps.


init:

# Declare images used by this game.
image bg SDC10007 = "SDC10007.JPG"

# Declare characters used by this game.
$ y =Character ('???', color="#660099")
$ i =Character ('Izzy', color="#660099")
$ e =Character ('Edna', color="#BF7C51")

# The game starts here.
label start:

scene bg SDC10007
with fade

I also did some dialogue for those characters and it works fine but the pictures...not so much.
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

JinzouTamashii
Eileen-Class Veteran
Posts: 1686
Joined: Mon Sep 21, 2009 8:03 pm
Projects: E-mail me if you wanna rock the planet
Location: USA
Contact:

Re: I need serious help!

#9 Post by JinzouTamashii »

Hmm. :| :?:

I don't see what's wrong with it, I'm sorry...
Don't worry, we can get through it together. I didn't forget about you! I just got overwhelmed.
https://cherylitou.wordpress.com

User avatar
Mirielle
Regular
Posts: 130
Joined: Thu Nov 02, 2006 5:05 am
Deviantart: miirne
Soundcloud: mirne-1
Contact:

Re: I need serious help!

#10 Post by Mirielle »

Okay, this might sound a little weird, but I've done it before.

Have you checked the game directory to make sure the image is there? And is it capitalized the way you've written it?

Also, try putting the script you have between

Code: Select all

 and [/code ] (remove the space between the e and the ]) so we can check the indentation and perhaps put it through Ren'Py ourselves.  Because after "label start:" the next line should be indented.
Available for voice acting - Please listen to my demo reel!

KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

Re: I need serious help!

#11 Post by KatKry »

Is this what you mean, Mirielle?

Code: Select all

init:

# Declare images used by this game.
image bg SDC10007 = "SDC10007.JPG"

# Declare characters used by this game.
$ y =Character ('???', color="#660099")
$ i =Character ('Izzy', color="#660099")
$ e =Character ('Edna', color="#BF7C51")

# The game starts here.
label start:

scene bg SDC10007
with fade
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

User avatar
Mirielle
Regular
Posts: 130
Joined: Thu Nov 02, 2006 5:05 am
Deviantart: miirne
Soundcloud: mirne-1
Contact:

Re: I need serious help!

#12 Post by Mirielle »

Yes!

Now, try this:

Code: Select all

init:

    # Declare images used by this game.
    image bg SDC10007 = "SDC10007.JPG"

    # Declare characters used by this game.
    $ y =Character ('???', color="#660099")
    $ i =Character ('Izzy', color="#660099")
    $ e =Character ('Edna', color="#BF7C51")

# The game starts here.
label start:

     scene bg SDC10007
     with fade
Available for voice acting - Please listen to my demo reel!

KatKry
Newbie
Posts: 6
Joined: Sat May 17, 2008 8:53 am
Location: Where Simba is
Contact:

Re: I need serious help!

#13 Post by KatKry »

I tried it and it says it couldn't find the file...again *Cries*
"Don't knock on Death's door. Ring his doorbell and run away. He hates that!"

User avatar
Mirielle
Regular
Posts: 130
Joined: Thu Nov 02, 2006 5:05 am
Deviantart: miirne
Soundcloud: mirne-1
Contact:

Re: I need serious help!

#14 Post by Mirielle »

I'm scanning your code like a "Where's Wally?" puzzle and still can't find anything... all I can think of is check file extensions, if it's in the right place, and maybe name it something a little more manageable?

Other than that, I'm stumped!
Available for voice acting - Please listen to my demo reel!

JinzouTamashii
Eileen-Class Veteran
Posts: 1686
Joined: Mon Sep 21, 2009 8:03 pm
Projects: E-mail me if you wanna rock the planet
Location: USA
Contact:

Re: I need serious help!

#15 Post by JinzouTamashii »

Try copying the Template and making a new one from scratch.

Or try converting your image to another format.
Don't worry, we can get through it together. I didn't forget about you! I just got overwhelmed.
https://cherylitou.wordpress.com

Post Reply

Who is online

Users browsing this forum: Amazon [Bot]