질문과 답변

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 gate 설치 2 file jays 2014.03.22 551
RMMV gif 아이콘은 어떻게 쓰는건가요? 1 잠행인 2016.02.27 261
RMVXA gif 이미지를 전투 시작직전에 출력하여 컷인을 만들수있나요? 3 메이133 2014.01.21 869
RMXP GIF 파일을 화면에 출력하는 방법을 알고싶습니다. 1 EMAX 2014.02.24 946
RMXP GIF나 애니매이션 이미지는 출력이 불가능한가요? 5 흑십자군 2011.05.17 1690
RMVXA gif파일 또는 움직이는 이미지 질문 3 inone98 2014.01.09 1870
GM GM 그래픽 모션 정리에 대한 간단한 질문입니다. 2 file jkor 2013.01.31 975
스크립트 작성 RMXP gpgxp 달리기 스크립트가 있을까요? 3 표정 2023.02.11 44
RMMV Graphics.boxWidth의 절반값이 뭔가요? 2 잠행인 2016.10.05 84
RMVXA Graphics.resize_screen(640, 480)이걸 추가했더니 순간이동을하네요 2 큰놈 2014.03.26 828
RMVX Graphics/Pictures/player_face_mask 오류입니다. 2 file 잉여빵 2012.07.21 1289
RMVX Graphics/Tilesets 폴더가 없어요... 4 코코몽보는한율 2014.10.22 1063
RMXP GTBS 에서 스킬쓸때 질문이요 1 황제님 2010.09.11 2226
플러그인 사용 RMMV GUI 화면 디자인 플러그인 사용법에 대해 질문드립니다. 폴트 2020.12.22 174
RMVXA ha*co 1 file 도라지도라미디움 2017.08.15 102
GM HELP ME 6 게임만드는법좀.. 2012.02.24 2086
RMXP HELP! 몬스터 잡기 3 Always 2012.01.23 2653
RMXP HELP!!! 1 나는청춘 2011.06.19 1517
RMVX HG_QUEST_SYSTEM n번째 액터의 얼굴 그래픽 추가 file 톨톨 2015.06.08 195
기타 HOT TOKE나 First Seed Material은 공개 소스인가요? 2 file 애플이다 2014.02.06 1053
Board Pagination Prev 1 ... 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 ... 516 Next
/ 516