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
437 Simple Fon Chage 3 Man... 2008.10.28 1212
436 아이템 Item Price Changer 7 Man... 2008.10.28 1530
435 전투 Fomars indiviivdual battle 2 Man... 2008.10.28 1340
434 Repel Effect 1 Man... 2008.10.28 1753
433 퍼스 스크립트 5 Man... 2008.10.28 1679
432 Direction Movement Style 4 Man... 2008.10.28 1719
431 SephirothSpawn's Slanted Bars in VX 1.1 2 Man... 2008.10.28 1572
430 상점 Shopoholic(한글 설명) 11 Man... 2008.10.29 3185
429 장비 Disposable Ammo(또 있는 곳을 잘 읽으셔야 합니다.) 2 Man... 2008.10.29 1696
428 메뉴 Adding Extra Menu in lafia Script 2 Man... 2008.10.29 1574
427 제작도구 최대한 한글로 변혁 했음Window Maker V1.0(대박) 15 Man... 2008.10.29 4673
426 HUD Crissaegrim HUD 2.0!! 13 Man... 2008.10.29 2852
425 이름입력 모그 이름 바꾸기 한글 변역! 2 Man.... 2008.11.04 4114
424 기타 Crissaegrim Farm BETA 1.0.0 10 Man... 2008.11.22 3094
423 기타 디스크 체인져 VX!! (업데이트..) 30 file Tofuman 2008.12.02 3168
422 기타 이벤트 위치 저장 스크립트 10 Tofuman 2008.12.11 2096
421 상점 상점 무기, 방어구 능력치 비교 스크립트! 18 불독 2008.12.25 3611
420 타이틀/게임오버 타이틀 화면에 매뉴창 이동방법 5 석산 2009.01.06 2824
419 온라인 넷VX - 온라인 스크립트 29 아방스 2009.01.06 6749
418 맵/타일 VX Mode 7 스크립트!!!! 42 file Tofuman 2009.01.07 4306
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