Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Press Start (simple?)

Status
Not open for further replies.
I need a Simple script (and sorry If this has been requested before, if it has please redirect me there).

Script Description:
When opening Game, instead of bringing up the 'New Game, Continue, Quit' window it will display the Text 'Press Start (or Enter)' Once you do this, it will then bring you to the window. I know this has been created, I have seen It before.

Thanks.
 
ok...trying my best did this:

class Scene_Startblink
def main
$data_system = load_data("Data/System.rxdata")
@sprite = Sprite.new
@sprite.bitmap = RPG::Cache.title($data_system.title_name)
@start = Sprite.new
@start.bitmap = RPG::Cache.picture("Start")
@start_flash = 0

Graphics.transition
loop do
Graphics.update
Input.update
update
if $scene != self
break
end
end
Graphics.freeze
@sprite
@start.dispose
end
# ------------------------------------
def update
@start.update
@start_flash = (@start_flash + 1) % 50
case @start_flash
when 25
@start.visible = false
when 49
@start.visible = true
end
if Input.trigger?(Input::C)
$scene = Scene_Title.new
end
end
end

paste it above main, and in Main script, change
$scene = Scene_Title.new
for
$scene = Scene_Startblink.new

also, you will need an image on your pictures folder...use this one if you want, just made it now...must put it into "Pictures" folder, must call it "Start"
http://i21.photobucket.com/albums/b295/Takneo/Start.png[/IMG]

hopw it works...

P.S: i can't belive i'm actually helping with scripts...this is insane XD
 
This topic has been resolved. If Areo X or any other users have any questions or further problems regarding this topic, please create a new thread about them.

Thank you!
 
Status
Not open for further replies.

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top