RPGMakerID
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Komunitas RPG Maker Indonesia
 
IndeksIndeks  Latest imagesLatest images  PencarianPencarian  PendaftaranPendaftaran  Login  
Per 2016, RMID pindah ke RMID Discord (Invite link dihapus untuk mencegah spambot -Theo @ 2019). Posting sudah tidak bisa dilakukan lagi.
Mohon maaf atas ketidaknyamanannya dan mohon kerjasamanya.

 

 [XP]Nufus Scene Splash

Go down 
4 posters
PengirimMessage
Nefusa 7
Senior
Senior
Nefusa 7


Level 5
Posts : 954
Thanked : 6
Engine : RMXP
Skill : Intermediate
Type : Scripter

[XP]Nufus Scene Splash Empty
PostSubyek: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty2012-03-15, 15:42

Nufus Scene Splash
Engine: RMXP
Versi: 1.0
Tipe: Before Title


Pengenalan
Ini adalah script convertan dari [VX]Nufus Scene Splash


Fitur

  • Splash before Title



Screenshots
Tidak dibutuhkan


Demo
Here


Scripts
Code:
#------------------------------------------------------------------------
# [XP] Splash Screen ( ver 1.0 ) ORIGINAL
# Author : Nufus27
#------------------------------------------------------------------------
# ** Description
#    This script show a splash screen before title screen
#------------------------------------------------------------------------
# ** How to use
#    => Place this script above main
#    => in main, change "$scene = Scene_Title.new" to "$scene = Scene_Splash.new"
#------------------------------------------------------------------------
# ** Credit to:
#    => Nefusa 7
#------------------------------------------------------------------------
class Scene_Splash
 #--------------------------------------------------------------------------
 # ● Initialize the scene
 #-------------------------------------------------------------------------- 
 def main
 # Load the System database & create a new game 
 $data_system = load_data("Data/System.rxdata")
 $game_system = Game_System.new
 # Initialize some transition stuff
 @show = true
 @hide = false
 @n = 0
 @splash_numb = 2
 # Define info about each splash screen
 @sprite1 = Sprite.new
 @sprite1.bitmap = RPG::Cache.title("Splash-1")
 @sprite1.opacity = 0
 @sprite2 = Sprite.new
 @sprite2.bitmap = RPG::Cache.title("Splash-2")
 @sprite2.opacity = 0
 # Update graphics and input
 Graphics.transition
 loop do
  Graphics.update
  Input.update
  update
  if $scene != self
    break
  end
 end
 # Discard your graphics when you leave this scene
 Graphics.freeze
 @sprite1.dispose
 @sprite2.dispose
 end
 #--------------------------------------------------------------------------
 # ● Update the contents in this scene
 #--------------------------------------------------------------------------
 def update
  # If SPACEBAR is pressed, go to to title screen
  if Input.trigger?(Input::C)
    $game_system.se_play($data_system.decision_se)
    $scene = Scene_Title.new
  end
  # Change the opacity of the graphics
  transition
  # Update graphics
  @sprite1.update
  @sprite2.update
 end
 #--------------------------------------------------------------
 # Transition through splash screens
 #-------------------------------------------------------------- 
 def transition
      # Fade in a splashscreen
      if @show == true
        @n += 2
        if @n > 255
          @hide = true
          @show = false
          @n = 255
        end
      end
      # Fade out a splashscreen and load the next one
      if @hide == true
        @n -= 2
        if @n < 0
          @hide = false
          @show = true
          @splash_numb -= 1
          @n = 0
        end
      end     
      # Choose which action to perform in this scene
      case @splash_numb     
        when 0
          $scene = Scene_Title.new
        when 1
          @sprite2.opacity = @n
        when 2
          @sprite1.opacity = @n
      end
    end
end     


Credits

  • Nefusa 7
Kembali Ke Atas Go down
https://nefusa.my.id/
Roger
Novice
Novice
Roger


Level 5
Posts : 191
Thanked : 3
Engine : RMVX
Skill : Very Beginner
Type : Scripter

[XP]Nufus Scene Splash Empty
PostSubyek: Re: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty2012-03-15, 21:54

Nah ini script yg saya cari !!
minta ijin mengembangkan
:sembah:
Kembali Ke Atas Go down
budi
Newbie
Newbie
budi


Level 5
Posts : 7
Thanked : 0
Engine : RMXP
Skill : Very Beginner
Type : Mapper

[XP]Nufus Scene Splash Empty
PostSubyek: Re: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty2012-03-15, 23:16

akhirnya keluar juga buat yg XP :clap: :thumbup:

makasih ya mas bro....

Kembali Ke Atas Go down
Nefusa 7
Senior
Senior
Nefusa 7


Level 5
Posts : 954
Thanked : 6
Engine : RMXP
Skill : Intermediate
Type : Scripter

[XP]Nufus Scene Splash Empty
PostSubyek: Re: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty2012-03-16, 04:38

@roger, silahkan :D

@budi, sama-sama :D
Kembali Ke Atas Go down
https://nefusa.my.id/
Garry Laly
Senior
Senior
Garry Laly


Level 5
Posts : 651
Thanked : 3
Engine : Multi-Engine User
Skill : Beginner

[XP]Nufus Scene Splash Empty
PostSubyek: Re: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty2012-03-16, 05:39

Wah :D

Cocok nih, ojekanku di XP semua sekarang :-
Kembali Ke Atas Go down
http://gcomxp.blogspot.com
Sponsored content





[XP]Nufus Scene Splash Empty
PostSubyek: Re: [XP]Nufus Scene Splash   [XP]Nufus Scene Splash Empty

Kembali Ke Atas Go down
 
[XP]Nufus Scene Splash
Kembali Ke Atas 
Halaman 1 dari 1
 Similar topics
-
» [Xp/Vx-VXA] Simple Splash Screen
» [XP]Nufus Simple Shortcut Key
» splash screen
» [VX][Beta Release] Rin Splash
» Membuat Splash Screen

Permissions in this forum:Anda tidak dapat menjawab topik
RPGMakerID :: Scripts & Event Systems :: RMXP Scripts-
Navigasi: