질문과 답변

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 12455
RMXP XP스크립트나 기본 기능중에.. 2 Moonlight 2010.12.07 467
RMVX RPGVX 단축키 스크립트로 바꾸는법 1 kallat 2010.12.07 676
RMVX 호환 부탁드립니다. 1 카르닉스 2010.12.07 525
기타 이름 이미지 붙이는거 1 아리시스 2010.12.07 1056
RMVX 액알 1 비난공 2010.12.07 488
RMXP 부탁입니다!!!!!!!!! 2 베드보이닉쿤 2010.12.07 520
RMVX 사이드뷰에서 얼굴표시하기 8 레이트리스 2010.12.07 679
RMXP 방어력상승설정은 어떻게하나요?? 1 블루믹스 2010.12.07 542
RMVX 얼굴 제작은 어떻게 하나요? 2 왕자 2010.12.08 805
RMVX 원경 답변 부탁드립니다. 3 팅이 2010.12.08 682
RMVX 기초를 질문합니다 2 태우기 2010.12.08 565
RMVX 퀘스트 생성질문이요 2 RPGvvxx 2010.12.08 721
RMVX 능력치 상승 스킬에서 1 일라이트 2010.12.08 600
RMVX 용어 질문입니다~ 3 메이커 메이커 2010.12.08 523
RMVX ◆조건분기 : 버튼 n 를 눌렀다 4 곰테니 2010.12.08 647
RMXP 스크립트를 내맘대로 [사용 사용안함 ] 바꿀려면 ?? 2 샤프리드 2010.12.08 560
RMVX 맵칩 적용법좀 2 RPG깐쥐남 2010.12.08 875
RMXP 아이템창에서 아이템을 구분하고싶으면 어떻게하죠? 4 샤프리드 2010.12.09 561
RMVX 캐릭터가 짤려서 클릭돼요 1 RPG깐쥐남 2010.12.09 1097
RMVX SRPG에 대해 질문드립니다. 3 팔공산반달곰 2010.12.09 1271
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