bojjenclon
Member
I am using this:
And I have all the scenes mad and everything but nothing happens. What do I do?
#==============================================================================
# â– Credits Script
#------------------------------------------------------------------------------
# By Team Genius for bLiTzZ
# It's the same as the logo script, but it just has more logo's
#==============================================================================
# How to Use
# 1:Put the logo pictures in the Titles map
# 2:Go to line 20 and fill in the name of the picture between the " "
# 3:Do the same for the second logo but on line 54
# 4:If you want to change the song played change what's between "" on line 18
# 5:To skip the logo's press ESC or ENTER
class Credits
#--------------------------------------------------------------------------
# initialize
#--------------------------------------------------------------------------
def initialize
@var = 0
#here for audio
Audio.bgm_play ("Audio/BGM/Three Days Grace - Time of Dying", 85, 125)
@sprite = Sprite.new
#here for the first logo
@sprite.bitmap = RPG::Cache.title("Back")
$logo = true
end
#--------------------------------------------------------------------------
# main
#--------------------------------------------------------------------------
def main
Graphics.transition
# loop
loop do
# update
Graphics.update
# input
Input.update
#update
update
@var = @var.to_i + 1
#break
if $scene != self
break
end
end
Graphics.freeze
# dispose
end
#--------------------------------------------------------------------------
# update
#--------------------------------------------------------------------------
def update
if Input.trigger?(Input::B) or Input.trigger?(Input::C)
$logo = false
$scene = Scene_Title.new
elsif @var == 1
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("website")
elsif @var == 291
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("by")
elsif @var == 581
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("copyright")
elsif @var == 871
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("bojstitlescreen2")
elsif @var == 872
$logo = false
$scene = Scene_Title.new
end
end
end
# â– Credits Script
#------------------------------------------------------------------------------
# By Team Genius for bLiTzZ
# It's the same as the logo script, but it just has more logo's
#==============================================================================
# How to Use
# 1:Put the logo pictures in the Titles map
# 2:Go to line 20 and fill in the name of the picture between the " "
# 3:Do the same for the second logo but on line 54
# 4:If you want to change the song played change what's between "" on line 18
# 5:To skip the logo's press ESC or ENTER
class Credits
#--------------------------------------------------------------------------
# initialize
#--------------------------------------------------------------------------
def initialize
@var = 0
#here for audio
Audio.bgm_play ("Audio/BGM/Three Days Grace - Time of Dying", 85, 125)
@sprite = Sprite.new
#here for the first logo
@sprite.bitmap = RPG::Cache.title("Back")
$logo = true
end
#--------------------------------------------------------------------------
# main
#--------------------------------------------------------------------------
def main
Graphics.transition
# loop
loop do
# update
Graphics.update
# input
Input.update
#update
update
@var = @var.to_i + 1
#break
if $scene != self
break
end
end
Graphics.freeze
# dispose
end
#--------------------------------------------------------------------------
# update
#--------------------------------------------------------------------------
def update
if Input.trigger?(Input::B) or Input.trigger?(Input::C)
$logo = false
$scene = Scene_Title.new
elsif @var == 1
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("website")
elsif @var == 291
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("by")
elsif @var == 581
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("copyright")
elsif @var == 871
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title("bojstitlescreen2")
elsif @var == 872
$logo = false
$scene = Scene_Title.new
end
end
end
And I have all the scenes mad and everything but nothing happens. What do I do?