violentpurge09 0 Report post Posted April 25, 2011 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
Broken Messiah 20 Report post Posted April 26, 2011 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
violentpurge09 0 Report post Posted April 26, 2011 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
brewmeister 3 Report post Posted April 26, 2011 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
violentpurge09 0 Report post Posted April 26, 2011 (edited) 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 April 26, 2011 by violentpurge09 Share this post Link to post Share on other sites