Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- module Logo
- ###############################################################################
- # DKP Simple Logo 1.2
- # Platform: VX Ace
- # Author: Dark Paladin
- # Description: A very basic logo script.
- # Terms of use: You may use this script any way you see fit. Commercial or not.
- # no credit is needed but appriciated.
- ###############################################################################
- #------------------------------------------------------------------------------
- # Config Area
- #------------------------------------------------------------------------------
- LOGOGRAPHIC = true #show logo graphic from "Graphics/Logo" true/false
- MUSIC = true #Play logo music from "Audio/Logo" true/false
- Lmusic = "logo" #Change the Grapic file name here
- Lgraph = "logo" #change the Audio file name here
- end
- #------------------------------------------------------------------------------
- # Def music
- #------------------------------------------------------------------------------
- def music
- Audio.bgm_play("Audio/Logo/" + (Logo::Lmusic), 100, 100)
- end
- def show_logo
- sprite = Sprite.new
- Graphics.fadeout(0)
- sprite.bitmap = Cachext.logo(Logo::Lgraph)
- Graphics.fadein(220)
- Graphics.wait(180)
- RPG::BGM.stop
- Graphics.fadeout(30)
- Graphics.wait(80)
- Graphics.fadein(0)
- end
- #------------------------------------------------------------------------------
- # Execute
- #------------------------------------------------------------------------------
- if Logo::MUSIC
- music
- end
- if Logo::LOGOGRAPHIC
- show_logo
- end
Advertisement
Add Comment
Please, Sign In to add comment