RMVXA

이 스크립트를 조금 바꿔주실수 있을까요

by 버섯수프 posted Jan 06, 2017
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
Extra Form

 #==============================================================================

# Quick Save Ex

# Soulpour777

# Web URL: www.infinitytears.wordpress.com

# Script Date: 6 / 15/ 2014

#------------------------------------------------------------------------------

# Description:

# This script allows the developer to assign a button where the player can

# just press it and go quickly to the Save Menu and save their progress,

# rather than going to the Menu and saving it there, especially if the player

# is feeling lazy at everything like me.

#==============================================================================

module Soulpour

  module QuickSaveEx

    SaveIndex = 0 # index of the save file you want to save.

    QS_Button = Input::F7 # The button to open the quick save.

    QL_Button = Input::F8 # the button to open the quick load.

  end

end

 

class Scene_Map < Scene_Base

  alias :soulpour_quick_save_ex_update                                :update

  #--------------------------------------------------------------------------

  # * Frame Update

  #--------------------------------------------------------------------------

  def update

    soulpour_quick_save_ex_update

    update_qs_ex

  end  

  #--------------------------------------------------------------------------

  # * Update Quick Save Ex

  #--------------------------------------------------------------------------  

  def update_qs_ex

    if Input.trigger?(Soulpour::QuickSaveEx::QS_Button)

      if $game_system.save_disabled 

        Sound.play_buzzer

      else

        DataManager.save_game(Soulpour::QuickSaveEx::SaveIndex)

        Sound.play_save

      end

    end

    if Input.trigger?(Soulpour::QuickSaveEx::QL_Button)

      Sound.play_load

      DataManager.load_game(Soulpour::QuickSaveEx::SaveIndex)

      SceneManager.goto(Scene_Map)

    end

  end

end


이 스크립트는


F7 을 누르면 저장이되고

F8 을 누르면 불러오기가 되는 스크립트입니다


흠이있다면 이 스크립트로 저장을하거나 불러오기를하면

메세지가 뜨지않습니다

( 예: 저장했습니다, 불러오기되었습니다. 등등 )

이 스크립트에 저장을하거나 불러오기를하면 메세지가 뜨게 바꿔주실수있을까요