Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Random Title Screen
#1
Random Title Screen
Version 1.0
by Woratana
Release Date: 07/02/2008

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 script will random your tile screen.
To make player not get bored every time they start game. :)


Features
Version 1.0
- Random title screen from pictures as much as you want


Script
Place it above main.
Code:
#======================================================================
========
# ■ [RMVX] +Random Title Screen+
#------------------------------------------------------------------------------
# Version 1.0
# by Woratana [woratana@hotmail.com]
# Release Date: 07/02/2008
#
# This scrip will random title screen
#
# You can set title screen pictures to be random at line:
# Title = ["filename","filename2","filename3",...]
# title screen picture must be in folder "System"
#
# For example, Title = ["Screenfire","Title1"]
# >> Title Screen will random between pictures "Screenfire" and "Title1".
#=============================================================================
class Scene_Title < Scene_Base
  Title = Array.new
  
  # Set Title Screen Pictures for random here!
  Title = ["Title","Title10","Title25","Title50","Title80"]
  
  def create_title_graphic
    @sprite = Sprite.new
    title_random = rand(Title.size)
    @sprite.bitmap = Cache.system(Title[title_random].to_s)
  end
end


Instruction
You can set the pictures that will be in random list for title screen at this line:
Code:
Title = ["filename","filename2","filename3",...]
put your file's name in double quote "filename", and seperate pictures with ,
The file name don't need file type (e.g. .jpg,.png), and must be in folder "System"

For Example,
Code:
Title = ["ice","water","fire","earth"]
The title screen will random between the files "ice" or "water" or "fire" or "earth".

You can add pictures to be random as much as you want :lol:


Author's Notes
Free for use in your non-commercial work if credit included. If your project is commercial, please contact me.

Please do not redistribute this script without permission. If you want to post it on any forum, please link to this topic.
}


Possibly Related Threads…
Thread Author Replies Views Last Post
  Random Name Generator divinejoker 1 3,088 08-31-2012, 01:00 PM
Last Post: Nq_Crow
  Random Item Maker gamer aof 0 2,015 04-20-2009, 01:00 PM
Last Post: gamer aof
  *~ Rafidelis Title X ~* Rafidelis 0 2,731 01-11-2009, 01:00 PM
Last Post: Rafidelis
  Fire Emblem Title Rafidelis 0 2,037 01-11-2009, 01:00 PM
Last Post: Rafidelis
  Equipaments On Screen Rafidelis 0 2,580 11-23-2008, 01:00 PM
Last Post: Rafidelis
  Status Screen á la Ikos gsxiii 0 1,770 09-03-2008, 01:00 PM
Last Post: gsxiii
  +[Custom Title Screen Menu]+ woratana 0 2,077 04-05-2008, 01:00 PM
Last Post: woratana



Users browsing this thread: