질문과 답변

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 [RPGACE)이 스크립트들을 어떻게해야 게임에쓸수있는지 알고싶습니다 2 /(-_ㅡ)ㅡ+ 2016.01.20 451
RMVXA 조건분기에 플레이어 맵 위치 넣는 방법은 없나요?ㅠㅠㅠ 2 DONKEY 2016.01.20 152
RMVXA 전투시 액터들의 얼굴이나오는스크립트와 액터파티의최대전투인원을조정하는스크립트를썼는데 전투시액터들의얼굴길이조정질문 file /(-_ㅡ)ㅡ+ 2016.01.21 417
RMVXA RMVXA 초보자 강좌 글로된 거 없나요? Anex 2016.01.23 101
RMVXA 사이드뷰 스크립트 질문! 슈퍼울트라그레이트딜리셔스 2016.01.24 108
RMVXA VX ace 몬스터 도감 스크립트 없나요 ㅠㅠ 1 정말귀인★ 2016.01.26 185
RMVXA 이벤트가 엑터를 따라올때, 일정 칸 수 이상 차이가 나면 그만 따라오기 5 겜제작광 2016.01.26 171
RMVXA RMVXA로 멀티가.. 1 여왕폐하 2016.01.27 193
RMVXA 게임이 시작될때 이벤트씬 만드는법 질문이요. 2 ddmc 2016.01.27 170
RMVXA 전투에서 1번액터의 HP만 표시하는법 file 기폭 2016.01.28 113
RMVXA 아이템선택의처리 로 사용불가인 아이템 선택가능하게 될까요 1 버섯수프 2016.02.01 139
RMVXA 캐릭터전신이 나오는법 1 개등어 2016.02.01 244
RMVXA 노트북화면에 데이터베이스가 전부안뜹니다 3 file PLIP 2016.02.03 133
RMVXA 게임 소스 추가 1 여왕폐하 2016.02.04 136
RMVXA 일괄적으로 이벤트의 이동처리는 안되나요? 9 Sonrxnu 2016.02.06 186
RMVXA Awesome light effect 스크립트랑 Fix picture to map 스크립트랑 상성이 안 맞아요. file AVANGS주니 2016.02.09 216
RMVXA 스위치 관련입니다 2 file 바라미오 2016.02.09 110
RMVXA 스크립트 오류질문이요... AANNSS 2016.02.09 111
RMVXA 적 능력치로 적에게 데미지 주기 2 테오드라 2016.02.11 140
RMVXA 아이템 수량(중첩)관련 질문드립니다. 몽롱하다 2016.02.12 113
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