자유게시판

안녕하세요 정체불명입니다 라이네크님의 질문을 해외 포럼에 올려드리려구
간단하게 영어로 바꿔봤습니다
http://www.rpgmakervx.net/이곳에 가서 General 어쩌구저쩌구나 Script Request에 남기시면 될듯 하네여

New Topic을 눌러서 글을 남기시면 됩니다
회원가입은 http://www.rpgmakervx.net/index.php?act=Reg&CODE=00 이곳에서 하시구여


hi all my tools is rpgvx

i stuck at change background in battle when i using some skill
it was about 7 hours since i encountered problem and having hard work
have any ideas?

the script what i using is from http://avangs.info/zbxe/freeboard/686422

here's whole script code
##################################################
# MOG_BATTLEBACK_XP V1.0                         #
##################################################
# By Moghunter
#
http://www.atelier-rgss.com
##################################################
# Allow you to use a picture as a background in battles
##################################################
# Inside the GRAPHICS folder, create a new folder named Battlebacks.
# Put the pictures inside the Battlebacks folder.
# To select an picture as a Battleback, use the command Call Script in a event,
# with this code:

# $game_system.bb = "FILE_NAME"
#
# In the place of FILE_NAME you have to put the  name of the Battleback picture.
# If you want that the map graphic be your Batteback, just place a name of a absent
# file.
#
##################################################
#############
#   CONFIG    #
#############
module MOG_VX02
# On/OFF Wave Effect
BB_WAVE_SWITCH = 54
# On/OFF VX Standard
BB_VXEDITION_SWITCH = 55
end
#-------------------------------------------------
$mogscript = {} if $mogscript == nil
$mogscript["battleback_xp"] = true
#-------------------------------------------------
###############
# Game_System #
###############
class Game_System
attr_accessor :bb
alias mog_vx02_initialize initialize
def initialize
mog_vx02_initialize
@bb = ""
end
end
###############
# Module Cache #
###############
module Cache 
  def self.battleback(filename)
    load_bitmap("Graphics/battlebacks/", filename)
  end
end
#################
# Spriteset_Battle #
#################
class Spriteset_Battle
include MOG_VX02
  def create_battleback
    @battleback_sprite = Sprite.new(@viewport1)
    source = Cache.battleback($game_system.bb.to_s) rescue empty
    if  $game_switches[BB_WAVE_SWITCH] == true
    bitmap = Bitmap.new(640, 480)
    else
    bitmap = Bitmap.new(544, 416)
    end
    bitmap.stretch_blt(bitmap.rect, source, source.rect)
    bitmap.radial_blur(90, 12) if  $game_switches[BB_VXEDITION_SWITCH] == true
    @battleback_sprite.bitmap = bitmap
    wave_on if  $game_switches[BB_WAVE_SWITCH] == true
 end
def wave_on
    @battleback_sprite.ox = 320
    @battleback_sprite.oy = 240
    @battleback_sprite.x = 272
    @battleback_sprite.y = 176 
    @battleback_sprite.wave_amp = 8
    @battleback_sprite.wave_length = 240
    @battleback_sprite.wave_speed = 120    
end
def empty
   @battleback_sprite.bitmap =  $game_temp.background_bitmap
 end
def create_battlefloor
    if  $game_switches[BB_VXEDITION_SWITCH] == true
    @battlefloor_sprite = Sprite.new(@viewport1)
    @battlefloor_sprite.bitmap = Cache.system("BattleFloor")
    @battlefloor_sprite.x = 0
    @battlefloor_sprite.y = 192
    @battlefloor_sprite.z = 1
    @battlefloor_sprite.opacity = 128
    else
    @battlefloor_sprite = Sprite.new(@viewport1)
    end
  end
end

 

TAG •

List of Articles
분류 제목 글쓴이 날짜 조회 수
공지 아방스 게시물 · 댓글 작성 규칙 (최근 수정일 2015.11.25) 17 file 완폐남™ 2012.07.17 41184
제작 영상 탈출용 게임을 조금씩 만들고 있습니다만.. 1 에티오페아 2013.03.08 1316
가입 안녕하세요. 3 BlackHand 2013.03.08 1210
잡담 헐 회원탈퇴 엄청 쉽게되네... 4 파치리스 2013.03.09 1230
설문 심사불복의 대처에 대해... 얘기를 나누고 싶습니다. 2 Roam 2013.03.09 838
잡담 한번 구현해보고픈 기능. 2 레미티 2013.03.09 588
잡담 아무리봐도 3 금목걸이 2013.03.09 1128
가입 가입했습니다~ 4 끄를 2013.03.09 1117
잡담 알만툴에 느끼시는게 고마움이신가요? 아니면 원망? 10 file Roam 2013.03.09 1478
제작 스샷 저의 타이틀 27 file 구름인간 2013.03.09 792
잡담 Roam님 계신가요? 14 비비드 2013.03.09 948
막장 후쿠시마 원자력 발전소를 당신의 도시에? 2 Alkaid 2013.03.09 1258
설문 심사 그룹의 이름을 변경해야될 필요가 있을 것 같습니다. 34 Lamancha 2013.03.09 830
잡담 싸움꾼의 마지막 말 7 ahrp 2013.03.10 1040
잡담 Metro 2033을 플레이, 클리어 하였습니다 3 TheEK 2013.03.10 1306
잡담 어제 피씨방에 놀러가서 아방스를 검색해보았습니다. 4 Lamancha 2013.03.10 1759
아 .. 썸머타임 ... 2 TheEK 2013.03.10 1102
잡담 [BGM] 저는 이러고 놉니다. 1 file 레미티 2013.03.11 1022
옛날옛날에요 비비드 2013.03.11 1035
잡담 제일 쉽게 만들 수 있는 게임이 뭘까요? 1 비비드 2013.03.11 1255
잡담 모던 워페어, 고스트가 다시 돌아온다? 2 file TheEK 2013.03.12 999
목록
Board Pagination Prev 1 ... 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 ... 755 Next
/ 755