Adon's Code Snippets- Before Title Screen Message
Version: 1.1
Author: Adon (No credit is needed. This is simple.)
Date: 7/28/11
Version History
7/28/11- Started and finished snippet. (Total time: 30 seconds)
7/28/11- Upgraded to version 1.1.(Total time: 5 minutes)
Planned Future Versions
1.2- Allow special text codes.
Description
This is an extremely simple script, it took no brainpower at all to make, though I haven't seen one around here, so I might as well would post it. This script creates a popup upon starting your game, before the titlescreen. Exactly like if you get an error message as the game starts. It's simple. and I don't even consider this a script, but it could be useful. Like if you make a game demo, and you want a message to popup out of game, you can do so.
Version 1.1 added description: Now if you are in test play mode, you can choose if you would like to display a message or not.
Features
- Able to have a message popup before loading title screen.
- Multiple messages are able.
- You can display certain messages or no messages depending if you are in test play mode or not.
Screenshots Instructions
To use, just simply edit the text inside the ""'s. To make more than one message appear, just type in
print ""
on a new line. Simple!
Script
Storm's Title Message Script- Version 1.2
# This is an extremely simple snippet, and I don't even consider this a script.
# You may use this script, especially since anyone could have though up of it in seconds.
# The purpose of the script is to display a simple message before the title screen appears.
#Simple, right?
#VERSION HISTORY
#7/25/11- Started and completed snippet. (5 seconds.)
# Version 1.0 - Only tested features are the displaying of text.
# Version 1.1 - Now you can display a message or not depending if they are in test play mode or not.
if $TEST
#THESE MESSAGES WILL APPEAR IF YOU ARE IN TEST PLAY MODE.
print "You are in test play mode"
$Scene_Title
else
# THESE MESSAGES WILL APPEAR IF YOU ARE NOT IN TEST MODE!
# Inside the ""'s you put what you would want to popup. Text only. No special text codes or anything obviously. Yet...
print "You are not in test play mode! Marvelous!"
# Now if you don't want a wall of text to show at once, you can simply do another print command and there you go.
print "See, it loads up before the title screen is displayed!"
print "You can even do multiple messages! This script should be compatible with everything, basically because
it doesn't overwrite anything, it just displays it before the title screen loads up and is done.
It would be optimal if you put this script below all other scripts, just in case.
If any compatibillity errors arise, be sure to notify me! Just PM me at RMN,RRR,or RMRK.
Remember, this script was easy, and it took 30 seconds to make."
end
# It would actually be a great idea if you were to put this below all scripts, so it will be loaded last.
# It could be possible that if you are in test mode, it will load up scene title instead of
#finishing loading up all of your scripts.
#Free for commercial use, no credit is needed. Etc.
Credit
None needed, this took 30 seconds and anyone could have done it.
Support
I can be found at RMN(Adon237), RRR, and RMRK.
Known Compatibility Issues
No known compatibility issues as of now, version 1.1. Will be testing some custom title scripts with this one.
It should be compatible with everything, besides scripts that do the same thing as this one. Though I am sure it won't be incompatible. If you put multiple copies of the script in your game, it will print the messages multiple times.
Demo
Demo can be found here: Version 1.0
http://www.mediafire.com/?pfyyly1lzi8c623Version 1.1:
http://www.mediafire.com/?zyaq0atoldi3vl2Restrictions
None.