질문과 답변

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 rpg vx ace 한글패치만하면 캐릭이 사라져요ㅠㅜ aedashwkdi 2014.07.13 752
RMVXA RPG VX 킬 때 메인에 나오는 음악 바꾸는 방법좀 알려주세요. 2 크로마티안 2013.12.28 753
RMVXA 이벤트가 화면밖을 벗어나면 사라져서 안따라옵니다 1 감사,합니다 2013.07.06 753
RMVXA 애드온스크립트 by허걱 사용불가(무브 플레이어) 10 file PengBle 2013.03.09 753
RMVXA VXA 캐릭터 그림자 추가 방법 문의드립니다. 2 루루이니 2014.02.28 753
RMVXA 페이스메이커로 얼굴을 만든뒤 게임적용법 4 lovecraft 2014.06.26 753
RMVXA ATB오류 질문드립니다. file H.M. 2013.11.03 754
RMVXA 정지상태의 캐릭터 칩설정 질문좀요. 3 file 메이133 2014.07.30 754
RMVXA 이벤트 그래픽 변경 어떻게 하나요 3 file 배츄 2013.05.30 755
RMVXA VXA 도트데미지 질문 1 우이dd 2014.08.08 755
RMVXA 게임파일만든후파일숨기기 6 뻘짓대마왕 2014.05.10 756
RMVXA 타일셋을 겹치고 싶습니다. 3 file 뿌잉뿌잉쨔응 2013.07.17 757
RMVXA 처음 오프닝 시작시 캐릭안보이게 하면 그 후에 다시 어떻게 보이게 해요? 3 자유와바람 2014.02.11 757
RMVXA 이동속도 가산 시키는 스크립트를 찾습니다. 2 file aaa222 2013.01.29 758
RMVXA ace에서 속성은 집적 제작하지 못하나요? 2 ada 2013.11.16 758
RMVXA midi파일을 불러올수 없습니다 1 ONGJI 2014.05.12 758
RMVXA 이런건...어떻게 해요?? 5 조각조각 2014.02.08 758
RMVXA 소재 크기 질문이요! 3 file IceOrange 2014.07.27 758
RMVXA 캐릭터 주위에 ... 3 file 조크맨 2013.01.08 759
RMVXA 데미지드 아레아(함정 바닥)의 효과를 변경하고 싶습니다. 20 file sudoxe 2014.01.28 759
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