O TEMA DO FÓRUM ESTÁ EM MANUTENÇÃO. FEEDBACKS AQUI: ACESSAR

Logo Screen

Iniciado por LoboShow, 02/02/2013 às 20:17

Logo Screen

Compativel com: RMVX
Compatibilidade: ?
Facilidade de uso: ?
Lag gerado: ?

[box class=titlebg]
Para que serve o script
[/box]
Aparece Imagens antes da tela de titulo(New Game, Continue, Sair)

[box class=titlebg]
Instruçoes
[/box]
Coloque as imagens que você quer usar na pasta System.  Depois pegue o nome delas e edite ali no script nessa linha:
images = ["GFWL", "ESRB"]
Troque o GFLW e o ESRB pelo nome da imagem a sua escolha.  Se quiser deixar somente uma imagem, apenas apague o "ESRB".

[box class=titlebg]
Imagens
[/box]

[box class=titlebg]
Script
[/box]
#==============================================================================
# Logo Screen
#==============================================================================
unless $TEST

images = ["GFWL", "ESRB"]

sprite = Sprite.new
sprite.opacity = 0
sprite.bitmap = Bitmap.new(Graphics.width, Graphics.height)
for image in images
  sprite.bitmap.fill_rect(sprite.bitmap.rect, Color.new(255,255,255))
  bitmap = Cache.system(image)
  x = (Graphics.width-bitmap.width)/2
  y = (Graphics.height-bitmap.height)/2
  sprite.bitmap.blt(x, y, bitmap, bitmap.rect)
  for i in 0..255
    next if sprite.opacity >= 255
    sprite.opacity += 10
    Graphics.update
  end
  Graphics.wait(60)
  for i in 0..255
    next if sprite.opacity <= 0
    sprite.opacity -= 10
    Graphics.update
  end
  Graphics.wait(10)
end
sprite.dispose

end


[box class=titlebg]
Créditos e Avisos
[/box]
Criado por Vlad e Editado por DragonLord