질문과 답변

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 을 누르면 불러오기가 되는 스크립트입니다


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

메세지가 뜨지않습니다

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

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

List of Articles
종류 분류 제목 글쓴이 날짜 조회 수
공지 묻고 답하기 가이드 습작 2014.06.14 21131
RMVXA 대열 변경 금지 어떻게하나요? 2 file 행복한류마군 2014.02.28 663
RMVXA VXace 스크립트 에러 2 rmkroar 2014.02.28 794
RMVXA 능력치 중 행운은 어떤 영향을 미치나요? 7 moopu 2014.02.27 780
RMVXA 상점에서 특정한 종류의 물건만 매입하게 하고 싶습니다. sudoxe 2014.02.27 631
RMVXA 일정체력 이하로떨어지면 능력치가 증가하게 만들기 1 프라임헌터즈 2014.02.27 852
RMVXA rpg 메이커 vs ace에서 이러한 기능이 구현 가능할까요? 3 file wintermute 2014.02.27 876
RMVXA 이벤트 그래픽을 아이콘으로 하는법 프라임헌터즈 2014.02.27 589
RMVXA 달리기 모션 스크립트에 관해 7 Chomsky 2014.02.26 1131
RMVXA 게임 종료 스크립트좀 알려주십시오 3 Chomsky 2014.02.26 632
RMVXA 메뉴에 있는 파티원들의 상태에서 5 Chomsky 2014.02.26 694
RMVXA 세이브 데이터 8 뻘짓대마왕 2014.02.26 1041
RMVXA 이벤트의... 새로고침? 8 Chomsky 2014.02.25 549
RMVXA 타이틀 만들려고 하는데 2 Chomsky 2014.02.24 736
RMVXA 메시지창의 크기를 줄이는 방법 7 아브렐라 2014.02.24 890
RMVXA 물을걷게하구싶은데요 2 케이군 2014.02.24 691
RMVXA 스크립트 오류 질문입니다. 2 file Evr 2014.02.22 719
RMVXA 상점관련 질문해도 될까요? 2 케르 2014.02.20 734
RMVXA XAS 방패에 따라 막지못하는 공격을 어떻게 만들어요? 2 미스터h 2014.02.20 956
RMVXA 파티원이 아닌 캐릭터(이벤트 등)가 주인공 따라다니게 하기. 7 file sudoxe 2014.02.19 781
RMVXA 전투시 데미지가 안들어가는 문제 9 file 진의승 2014.02.19 745
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 150 Next
/ 150