VX 스크립트

사용자 삽입 이미지


사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지
사용자 삽입 이미지


=begin
Sideview Battle System
by Fomar0153
Version 1.0.0

Instructions
First copy this script below Materials then you need to go down to setup and
find lines like:
    when 1
      @battler_name = 'Ralph'
And edit these to display the name of the battler.
Battlers should be imported through the battlers section of the resource manager
You can change battlers during the game by:
$game_actors[1].battler_name = 'Slime'
I intend to build on this script so check back for updates
=end

class Game_Actor < Game_Battler
 
  attr_accessor :battler_name
  attr_accessor :battler_hue
 
  alias side_view_setup setup
  def setup(actor_id)
    side_view_setup(actor_id)
    @battler_name = ''
    @battler_hue = 0
    case actor_id
    when 1
      @battler_name = 'Ralph'
    when 2
      @battler_name = 'Ulrika'
    when 3
      @battler_name = 'Bennett'
    when 4
      @battler_name = 'Ylva'
    end
  end
 
  def use_sprite?
    return @battler_name != ''
  end
 
  def screen_x
    return index * 20 + 400
  end
 
  def screen_y
    return index * 50 + 80
  end
 
  def screen_z
    return 100
  end
 
end

 
 
 
 
 
Comment '39'

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 3 습작 2012.12.24 5398
637 아이템 현재있는 파티원 선택 레벨업 아이템 만들기 1 file 싸패 2016.06.06 713
636 저장 세이브 파일 개수 16개로 늘리기 (기본 세이브 엔진용) 1 file Bunny_Boy 2015.09.07 817
635 스킬 [RPG VX] 턴알 스킬 쿨타임 스크립트! (잘돌아감) 5 듀란테 2015.08.18 1671
634 메뉴 KGC - 커스텀 메뉴 커멘드 (번역) 1 듀란테 2015.07.27 1078
633 메뉴 Etude87's Menu Editor for VX 25 습작 2015.01.14 1461
632 기타 Gamepad Extender VX 습작 2015.01.02 672
631 버그픽스 DerVVulfman's Tileset Reader VX Bug Fix 습작 2014.11.16 701
630 장비 방어구 착용시 최대HP, MP증가 스크립트(턴알) 3 file 기관차 2014.11.06 1222
629 메뉴 Etude87_Ace_Style_Formation_Change ver.1.01 습작 2014.10.05 758
628 키입력 해외 제작자 He Who Jets님의 마우스 스크립트(mouse system) 1 file 보자기군 2014.09.30 1261
627 메시지 Etude87 Dialogue History Scene file 습작 2014.07.07 1069
626 메뉴 MOG - Scroll Bar for VX file 습작 2014.07.06 1115
625 이동 및 탈것 이동 기능 파워업 (장애물 등을 피하는 이동방식) 8 file 파노 2014.04.27 1717
624 타이틀/게임오버 Title Skip System : 타이틀 스킵 file 허걱 2014.03.19 1510
623 버그픽스 Graphical Object Global Reference VX by Mithran Alkaid 2014.03.03 1027
622 기타 장애물을 피하고 다가오게 하는 스크립트 5 file 박력남 2014.02.25 1877
621 버그픽스 애니메이션 표시 위치 수정 (Fix Animation Position) 2 file AltusZeon 2014.02.12 1289
620 전투 [RPG VX]기술에 쿨타임을 부여하는 스크립트 3 스리아씨 2013.12.05 2348
619 HUD 아방스님이 올린 HUD를 개조했습니다. 7 file 스리아씨 2013.09.30 2684
618 전투 SRPGコンバータ for VX by AD.Bank 습작 2013.05.13 2970
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ... 32 Next
/ 32