XP 스크립트

설정해둔 전투음악 중 임의의 곡을 전투시 연주하는 스크립트입니다.  전투음악은 스크립트에서 미리 설정해 둘 수도 있고 이벤트 명령->스크립트에서 추가하거나 삭제할 수 있습니다.


class Game_Party
  attr_accessor  :music
  alias pre_music_initialize initialize
  def initialize
    pre_music_initialize
    @music = []
  end
end

class Scene_Map
  def call_battle
    # Clear battle calling flag
    $game_temp.battle_calling = false
    # Clear menu calling flag
    $game_temp.menu_calling = false
    $game_temp.menu_beep = false
    # Make encounter count
    $game_player.make_encounter_count
    # Memorize map BGM and stop BGM
    $game_temp.map_bgm = $game_system.playing_bgm
    $game_system.bgm_stop
    # Play battle start SE
    $game_system.se_play($data_system.battle_start_se)
    # Play battle BGM
    file = $game_party.music[rand($game_party.music.size)]
    audio_file = RPG::AudioFile.new(file)
    $game_system.bgm_play(audio_file)
    # Straighten player position
    $game_player.straighten
    # Switch to battle screen
    $scene = Scene_Battle.new
  end
end


전투음악 기본설정은
@music = [파일명1, 파일명2, ......파일명n]
으로 할 수 있고, 게임 중에서 추가/삭제하는 것은:
$game_party.music.push("MusicName") <- 사용할 전투음악 추가 (확장자 생략)
$game_party.music.delete("MusicName") <- 전투음악 삭제 (확장자 생략)

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 7316
114 전투 RTAB/CRB 단축키 1.0.0ver 3 file 백호 2009.02.22 2541
113 전투 RTAB방식의 CBS 스크립트 Final-2 5 file 백호 2009.02.22 1952
112 전투 S ABS_NonSDK ver 1 file 백호 2009.02.22 1466
111 전투 S ABS_NonSDK(구버전용) 5 file 백호 2009.02.22 1503
110 전투 S.G DamageShield Script 백호 2009.02.22 944
109 전투 SBABS v3 6 file 백호 2009.02.22 2054
108 전투 SBABS v4 (A-RPG) 5 file 백호 2009.02.22 2062
107 전투 SBABS 버전3.2 - 액알 스크립트 시스템 설명 13 아방스 2007.11.09 5707
106 전투 SBABS게이지바 file 백호 2009.02.21 2296
105 전투 SG_Attack Break by sandgolem (SDK호환) 백호 2009.02.22 828
104 전투 SG_Auto battle by sandgolem (SDK호환) 백호 2009.02.22 1042
103 전투 SG_Batte Retry ver.4 by sandgolem 2 백호 2009.02.22 1485
102 전투 SimpleAction (출처 -RPGXP 포럼 비밀소년님의 자작품) 1 file 백호 2009.02.21 1204
101 전투 Single/All Target Switching by RPG Advocate 백호 2009.02.22 828
100 전투 SRPGコンバータⅡ by AD.Bank 1 습작 2013.05.13 1802
99 전투 srpg용 스크립트라는데 4 세죠 2010.03.26 3536
98 전투 Star Ocean Battle System 3 file 백호 2009.02.22 1233
97 전투 Steal Script 5.5 by trickster@rmxp.net (SDK호환) file 백호 2009.02.22 1212
96 전투 Stealing/Mugging/Scanning 6.0 Final by Trickster (SDK호환) file 백호 2009.02.22 898
95 전투 The Lycan ABS by DerVVulfman Alkaid 2013.07.22 1925
Board Pagination Prev 1 2 3 4 5 6 7 8 9 Next
/ 9