Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Gameover based on Level
#1
Gameover based on Level
by ember2inferno

Jul 20 2006

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.


Introduction
This is an edit of Eccid's 'Title Based On Level Script'. It is now a Gameover Based On Level Script.


Features
  • Change your game over screen when you reach a certain level.


Screenshots
Thats kind of...impossible.


Script
Find this line in 'Scene_Gameover'
Code:
@sprite.bitmap = RPG::Cache.gameover($data_system.gameover_name)

It is line 14 by default.

Replace that line with this:
Code:
#===============================================================================
#Gameover Screen Based on Level Script
#By: Eccid
#With help fromn kaito
#Edited to gameover by Sam Drew
#-------------------------------------------------------------------------------    
#---Start Edit---

case $game_actors[1].level#finds actor level
when 1 .. 24#When actor level is...
    @sprite.bitmap = RPG::Cache.gameover("1.png")#Show gameover
    
when 25 .. 49
    @sprite.bitmap = RPG::Cache.gameover("2.png")
    
when 50 .. 74
    @sprite.bitmap = RPG::Cache.gameover("3.png")
    
when 75 .. 100
    @sprite.bitmap = RPG::Cache.gameover("4.png")
  end
else
  @sprite.bitmap = RPG::Cache.gameover("1.png")#set regular gameover
end

#---End Edit---
#===============================================================================


Instructions
Just put in the extra game overs into the gameover folder, and name them 1, 2, 3 ,4 etc. If you don't want to name them that then you can edit the script so it has their names there.

You can edit what levels too, I think its pretty straight foward though.


Credits & Thanks
Credit to Eccid for the original script - Good job, mate.
Thanks to Kaito for helping out Eccid - Good job also.


Author's notes
Well, AH! I guess thats me.
I think the script should all be there, I've checked it a few times over, and to me its ok.
Enjoy!
And don't forget to credit Eccid, Kaito and I if you use it!
(If some of you did'nt know, this is my first real attempt at a script...so..yeah.)
}


Possibly Related Threads…
Thread Author Replies Views Last Post
  GameOver Menu V.2 xLeD 0 2,165 10-03-2006, 01:00 PM
Last Post: xLeD
  Atk, PDef, MDef level up PhotonWeapon 0 2,141 07-26-2006, 01:00 PM
Last Post: PhotonWeapon
  Level Up system Jimmie 0 2,289 07-24-2006, 01:00 PM
Last Post: Jimmie
  Level Up Box and Equipment Skills TsengTsuzaki 0 2,090 05-24-2006, 01:00 PM
Last Post: TsengTsuzaki
  Change Level/Exp/Status name ryujijitei 0 2,039 04-29-2006, 01:00 PM
Last Post: ryujijitei
  Enemies Level UP and Game Difficulty Options Combined DrakoShade 0 2,112 03-27-2006, 01:00 PM
Last Post: DrakoShade
  Enemies that Level Up SephirothSpawn 0 2,158 11-17-2005, 01:00 PM
Last Post: SephirothSpawn
  Gameover to Inn SephirothSpawn 0 2,034 07-19-2005, 01:00 PM
Last Post: SephirothSpawn
  Change hero's equipment-based stats permanently PhotonWeapon 0 1,906 07-15-2005, 01:00 PM
Last Post: PhotonWeapon



Users browsing this thread: