Jump to content
New account registrations are disabed. This website is now an archive. Read more here.
violentpurge09

Game Over Screen

Recommended Posts

I need a VX Script that will change the Game Over screen based of a variable.

These game over screens will more than likely show the way the character died.

This will also allow for a "Winning" game Over screen.

Due to the fact my Current Project has many ways to either "Win" or "Lose".

 

Much thanks

Violentpurge09

Share this post


Link to post
Share on other sites

I dont see this as being to difficult, I'll get started on this tomorrow after school and see what happens, I had made a script like this myself a while ago.

Share this post


Link to post
Share on other sites

I dont see this as being to difficult, I'll get started on this tomorrow after school and see what happens, I had made a script like this myself a while ago.

 

Many thanks

Share this post


Link to post
Share on other sites

I just happened to have this handy. (someone else requested it a while back)

 

class Scene_Gameover
 def create_gameover_graphic
   @sprite = Sprite.new
   name = "GameOver#{$game_variables[3].to_s}"
   @sprite.bitmap = Cache.system(name)
 end
end

 

Insert above main, in the ▼ Materials section

change the "3" to the game variable you want to use

rename your default gameover image GameOver0.png, and subsequent images GameOver1.png, etc..

set the variable in-game to correspond with the suffix in the filename.

Share this post


Link to post
Share on other sites

I just happened to have this handy. (someone else requested it a while back)

 

class Scene_Gameover
 def create_gameover_graphic
   @sprite = Sprite.new
   name = "GameOver#{$game_variables[3].to_s}"
   @sprite.bitmap = Cache.system(name)
 end
end

 

Insert above main, in the ▼ Materials section

change the "3" to the game variable you want to use

rename your default gameover image GameOver0.png, and subsequent images GameOver1.png, etc..

set the variable in-game to correspond with the suffix in the filename.

 

Thank you.

Edited by violentpurge09

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...