Page 1 of 1

problems with background

Posted: Mon Apr 14, 2008 7:50 am
by Tamao
I currently am making (like probably everyone else on this website), making a game, but I currently am having problems with the backgrounds. All the other backgrounds work fine, but with two options, I get a strainge black screen, with in the left top corner a red balk. I tried everything I could, and I can't find the problem.
The codes I used are:
on the far top:

init:
image bg hotel= "Hotel10.jpg"
image bg bieb = "libbi.jpg"
image bg entrance = "Hotel entrance.jpg"
image bg funroom = "funroom.jpg"

the problem itself:

label _menu_2:
menu what_to_do:

s "where to go?"

"To the funroom!":
jump _funroom

"To the readhall!":
jump _bieb

"dunno!":
jump _dunno

label _bieb:

scene bieb
with dissolve
s "this will come later"
scene bg entrance
with dissolve
jump _menu_2


label _funroom:

scene funroom
with dissolve
s "this will come later too"
scene bg entrance
with dissolve
jump _menu_2


The problems are with label bieb and label funroom. Please help, I have this problem already for months, and I really don't know what I did wrong!

Re: problems with background

Posted: Mon Apr 14, 2008 8:28 am
by denzil
If think you have to change (assuming you copied it here correctly):
scene bieb -> scene bg bieb
scene funroom -> scene bg funroom

Re: problems with background

Posted: Mon Apr 14, 2008 9:42 am
by Tamao
ah... ofcourse o.o I'm so stupid I forgot that... xD thanks for helping!