자유게시판

##################################################
# 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 •

Who's 라이네크

?

작품연대기

XP - 아인 스토리 (만들다가 어려워서 포기)

VX - 타르타로스 -운명의검- (모든것을 쏟아부엇지만 아버님이 삭제하셔서 멸망)

2003 - 타르타로스 -운명의검- Again (다시 2003으로 도전하지만 몇달만에 컴터를다시키니 자료증발)

XP - 엘티어즈 ~고대의병기~ (현재만드는중 이건 완성한다 ... 젠장..)

 

으으 자료복구할방법은 업는겝니까 ㅠㅠ

지금만드는건 완성시킨다 젠장

Comment '2'

List of Articles
분류 제목 글쓴이 날짜 조회 수
공지 아방스 게시물 · 댓글 작성 규칙 (최근 수정일 2015.11.25) 17 file 완폐남™ 2012.07.17 41184
제작 스샷 짜잔 공포게임에 한붓 그리기 7 file 은색바람 2013.08.29 825
잡담 짜야될 스토리는 안짜고 3 호안마마 2010.09.12 411
잡담 집중이 잘 안되는군요 ㅠ 6 샺쿠 2011.08.30 656
집적그린 Jazz for your soul 2 君塚ちえい 2009.08.19 1331
집적그린 Falling in your soul 5 君塚ちえい 2009.08.19 983
제작 스샷 집잃은 요정 페이스칩 추가 공개(?) 24 file 권선생 2013.09.08 869
잡담 집에가기RPG로딩화면 Tip.1 3 Assault Meteoric Star 2010.02.23 261
잡담 집에가기RPG 배틀러4명 8 Assault Meteoric Star 2010.02.22 338
잡담 집에가기RPG NPC구해여... 5 Assault Meteoric Star 2010.02.22 370
잡담 집에가고싶다...; 6 허걱 2011.12.24 1552
잡담 집에 있는 데스크탑이 부팅만하면 굉음을 토해내는데 3 시옷전사 2012.02.19 1523
잡담 집에 오다 돈을 주웠습니다ㅏ 48 내손목아지 2014.02.04 727
막장 집에 비상이 걸렸습니다 19 이룩 2014.01.20 360
잡담 집에 돌아왔어요 1 사일런트 2010.08.08 428
질풍처럼이 저에게 올린글에 대해서 재가사과드립니다.. 2 날뛰는초보 2010.11.24 419
잡담 질풍의 본격적인 뉴스_늑향2 12화까지...이제 본격적인 떡밥.. 4 질풍처럼 2011.02.24 1260
잡담 질풍의 48차원 세계 - 엔젤 비트까지 다 보았소다 5 질풍처럼 2011.03.21 940
질풍의 1주일 늦는 뉴스_애니플에서 늑향2 방영시작 4 질풍처럼 2011.02.17 759
잡담 질문해도되나요? 5 건담프라 2009.04.21 659
질문합니다. 3 수플루트 2010.07.23 370
목록
Board Pagination Prev 1 ... 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 ... 755 Next
/ 755