질문과 답변

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 12451
RMVXA 게임 종료 스크립트좀 알려주십시오 3 Chomsky 2014.02.26 625
RMVXA 메뉴에 있는 파티원들의 상태에서 5 Chomsky 2014.02.26 686
RMVXA 세이브 데이터 8 뻘짓대마왕 2014.02.26 1031
RMVXA 이벤트의... 새로고침? 8 Chomsky 2014.02.25 544
RMVXA 타이틀 만들려고 하는데 2 Chomsky 2014.02.24 732
RMVXA 메시지창의 크기를 줄이는 방법 7 아브렐라 2014.02.24 878
RMVXA 물을걷게하구싶은데요 2 케이군 2014.02.24 685
RMVXA 스크립트 오류 질문입니다. 2 file Evr 2014.02.22 705
RMVXA 상점관련 질문해도 될까요? 2 케르 2014.02.20 726
RMVXA XAS 방패에 따라 막지못하는 공격을 어떻게 만들어요? 2 미스터h 2014.02.20 943
RMVXA 파티원이 아닌 캐릭터(이벤트 등)가 주인공 따라다니게 하기. 7 file sudoxe 2014.02.19 777
RMVXA 전투시 데미지가 안들어가는 문제 9 file 진의승 2014.02.19 739
RMVXA (RPGMAKER VXA)두 액터 간의 레벨을 동일하게 하고 싶습니다. 4 file REMAIN 2014.02.19 912
RMVXA 전투에서 승리해도 me 음악이 종료가 안되는 현상 1 붉은곰의친척 2014.02.18 727
RMVXA 랜턴 스크립트 1 꾸와 2014.02.18 742
RMVXA 제자리에서 방향전환 커먼이벤트 질문 2 file 행복한류마군 2014.02.18 703
RMVXA rpgvx ace 스킬사용음악 1 붉은곰의친척 2014.02.17 925
RMVXA rpgvx ace 스킬사용무비 1 붉은곰의친척 2014.02.17 972
RMVXA 지속적인 데미지가 플레이어에게 4 채떡 2014.02.17 788
RMVXA 이벤트로만 움직이게하기 (제목이 이상한거 같아;;) 7 꾸와 2014.02.16 481
Board Pagination Prev 1 ... 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 ... 149 Next
/ 149