This is a locked, single-post thread from Creation Asylum. Archived here to prevent its loss.
No support is given. If you are the owner of the thread, please contact administration.
This Script allows you to put an Image or images when you start a new game or anywhere.... It's very simple.... It's my Second Script ever... I did all by myself... I'm so happy... anyway this is the script:
Script
Code:
class Scene_Opening
def main
@window1 = Window_Open1.new
@window1.x =0
@window1.y =0
@window1.height = 480
@window1.width = 640
@window2 = Window_Open2.new
@window2.x =0
@window2.y =0
@window2.height = 480
@window2.width = 640
Graphics.transition
loop do
# Update game screen
Graphics.update
# Update input information
Input.update
update
# Abort loop if screen is changed
if $scene != self
break
end
end
Graphics.freeze
@window1.dispose
@window2.dispose
end
def update
if Input.trigger?(Input::C)
# Play cancel SE
$game_system.se_play($data_system.cancel_se)
# Switch to map screen
$scene = Scene_Map.new
return
end
end
end