Sign in to follow this  
Followers 0
Slipknot

Imagen antes de Título

9 posts in this topic

Imagen antes de Título
Versión: 1.0

Introducción

Una versión mejorada y mucho más corta y fácil de usar de mi viejo script para poner imágenes antes del título.

Solo cambia los nombres de las imágenes o agrega más, y el script hara el resto!

Script

CODE
#==============================================================================
# ** Imagen antes de Título
#------------------------------------------------------------------------------
# Slipknot (dubealex.com/asylum)
# 1.0
# Enero 27, 2007
#==============================================================================

class Scene_Title
 #--------------------------------------------------------------------------
 # * Constantes
 #--------------------------------------------------------------------------
 Imagenes = [
   'imagen_1',
   'imagen_2'
 ]
 Tiempo = 120
 @@iadt = true
 #--------------------------------------------------------------------------
 # * Alias
 #--------------------------------------------------------------------------
 alias slipknot_iadt_init initialize
 #--------------------------------------------------------------------------
 # * Initialize
 #--------------------------------------------------------------------------
 def initialize
   if @@iadt
     @imagen = Sprite.new
     Graphics.freeze
     Imagenes.each do |x|
       @imagen.bitmap = Bitmap.new('Graphics/Pictures/' + x)
       Graphics.transition(16)
       i = 0
       Graphics.update while (i += 1) < Tiempo
       Graphics.freeze
       @imagen.bitmap.dispose
     end
     @@iadt = false
   end
   slipknot_iadt_init
 end
end


Instrucciones

Pega el código antes de Main y después de Scene_Title.
La constante Imagenes es donde colocas los nombres de las imágenes utilizadas, puedes agregar todas las que quieras!
Tiempo es el número de "framas" que dura cada una de las imágenes antes de pasar a la otra.

Compatibilidad

Con cualquier cosa! Edited by Fegarur
0

Share this post


Link to post
Share on other sites
Me encanta, juer que revolucionaos estais ultimamente los scripter, felicidades por el script, algo muy útil icon13.gif
0

Share this post


Link to post
Share on other sites
Gracias, aunque el concepto del script es muy viejo... laugh.gif
0

Share this post


Link to post
Share on other sites
Lo acabo de poner en mi juego laugh.gif gracias por el aporte icon13.gif le da un toque más atractivo jeje happy.gif
0

Share this post


Link to post
Share on other sites
Wooo auxilio.gif , te agradeceré de por vida Slipknot, es justo lo que andaba buscando xD.png
Muchas gracias icon13.gif

~Se esconde entre las hojas...
0

Share this post


Link to post
Share on other sites
Gracias, les agredecería que reportaran cualquier error o cosa rara que tenga
aunque es muy simple y no creo que lo haga happy.gif
0

Share this post


Link to post
Share on other sites
No da problemas es buen xico xD.png Gracias otra vez
0

Share this post


Link to post
Share on other sites
vale para el vx!!!!!!!! Edited by jorgefer
0

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0