Ace 스크립트

그 외 전투 스크립트 들 http://rpgmaker.net/scripts/rmvxace/battlesystems/

#==============================================================================
# ** TDS Auto Battle Command
# Ver: 1.0
#------------------------------------------------------------------------------
# * Description:
# This script adds a command to battle that makes characters select their
# actions automatically.
#------------------------------------------------------------------------------
# * Features:
# A command to automate Actor battler actions.
#------------------------------------------------------------------------------
# * Instructions:
# Just put it in your game under the "Materials" area of the script list and
# enjoy.
#------------------------------------------------------------------------------
# * Notes:
# None.
#------------------------------------------------------------------------------
# WARNING:
#
# Do not release, distribute or change my work without my expressed written
# consent, doing so violates the terms of use of this work.
#
# If you really want to share my work please just post a link to the original
# site.
#
# * Not Knowing English or understanding these terms will not excuse you in any
# way from the consequenses.
#==============================================================================
# * Import to Global Hash *
#==============================================================================
($imported ||= {})[:TDS_Auto_Battle_Command] = true
#==============================================================================
# ** Scene_Battle
#------------------------------------------------------------------------------
# This class performs battle screen processing.
#==============================================================================
class Scene_Battle < Scene_Base
#--------------------------------------------------------------------------
# * Alias Listing
#--------------------------------------------------------------------------
alias tds_auto_battle_command_scene_battle_create_party_command_window create_party_command_window
#--------------------------------------------------------------------------
# * Create Party Commands Window
#--------------------------------------------------------------------------
def create_party_command_window(*args, &block)
# Run Original Method
tds_auto_battle_command_scene_battle_create_party_command_window(*args, &block)
# Set Auto Battle Handler
@party_command_window.set_handler(:auto_battle, method(:command_auto_battle))
end
#--------------------------------------------------------------------------
# * [Auto Battle] Command
#--------------------------------------------------------------------------
def command_auto_battle
# Make Auto Battle Actions for Alive Party Members
$game_party.alive_members.each {|a| a.make_auto_battle_actions}
# Start Turn
turn_start
end
end

#==============================================================================
# ** Window_PartyCommand
#------------------------------------------------------------------------------
# This window is used to select whether to fight or escape on the battle
# screen.
#==============================================================================
class Window_PartyCommand < Window_Command
#--------------------------------------------------------------------------
# * Alias Listing
#--------------------------------------------------------------------------
alias tds_auto_battle_command_window_partycommand_make_command_list make_command_list
#--------------------------------------------------------------------------
# * Create Command List
#--------------------------------------------------------------------------
def make_command_list(*args, &block)
# Run Original Method
tds_auto_battle_command_window_partycommand_make_command_list(*args, &block)
# Add Auto Battle Command
add_command("Auto Battle", :auto_battle)
end
end

전투 명령창에 " 자동전투 " 명령어를 추가합니다.
일부 전투스크립트에는 적용이 안됩니다.

Who's 스리아씨

?
뺘라뺘뺘
  • profile
    친빛 2013.10.11 23:34
    감사합니다. 자동전투 할떄 Auto Battle라고 써져있는 걸
    한글로 변경할려면 몇번쨰 줄을 변경해야되나요?
  • ?
    스리아씨 2013.10.11 23:38
    add_command("Auto Battle", :auto_battle)의 ""Auto Battle"을 바꾸면 될듯.

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 5110
공지 RPG VX ACE 유용한 링크 모음 16 아방스 2012.01.03 28927
» 전투 자동전투 명령어 추가 스크립트 2 스리아씨 2013.10.11 1953
196 기타 이동제한 스크립트 5 file 스리아씨 2013.09.23 1769
195 기타 유용한 외국 스크립트사이트 하나 발견했네요 영어조금하시면 이해가능하실꺼에요 2 game 光 ㅋㅋ 2013.01.07 2574
194 기타 원하는 글씨체로 변경하기 12 조말생 2012.04.20 8847
193 기타 없는 것 같아서 올립니다. VX ACE 한계 돌파 스크립트입니다. 24 빙룡군 2012.07.07 5597
192 아이템 양손무기 작착 스크립트 [Dual Wield -> Free Hands Version 1.0] 7 file 아방스 2012.01.31 4633
191 액터 액터 스탯 분배 스크립트 14 file 스리아씨 2013.09.23 2678
190 맵/타일 안개 시스템 ( VXA ) 8 홍색의환상향 2013.05.19 4090
189 기타 아이템 합성 스크립트 4 file 스리아씨 2013.09.26 3138
188 아이템 아이템 팝업 스크립트 15 스리아씨 2013.10.17 3245
187 메시지 아이템 정보 메세지가 뜨는 아이템 획득 1 폴라 2015.05.21 2364
186 메뉴 아이템 설명 메뉴 스크립트 (Crazyninjaguy) 2 file IZEN 2013.04.18 4780
185 HUD 아이템 레어리티 스크립트 (번역기 돌림) 2 file 부초 2017.07.21 1425
184 타이틀/게임오버 시작 전 로고 띄우기 7 file 냐냐 2014.12.04 3370
183 메뉴 시스템 칼라 스크립트 3 file 스리아씨 2013.10.27 3238
182 기타 시디 플레이어 1.0 by 77er 1 file 77ER. 2013.08.20 1627
181 메뉴 스텟을 랭크로 나타내기 7 file Yeolde 2014.05.10 3536
180 전투 스킬 캐스팅 시스템 3 스리아씨 2013.10.12 32173
179 스킬 스킬 스틸 시스템 5 아르피쥐 2011.12.18 3880
178 스킬 스킬 숙련도 시스템 8 아이미르 2012.02.24 4918
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 Next
/ 11