질문과 답변

Extra Form



캐릭터들이 보이지 않게 저장을 하고싶은데 어디서 손을 대야하나요?


Comment '4'
  • ?
    은현 2015.09.11 07:48
    http://avangs.info/kin/1469197
    해당 글이 도움이 될 것 같습니다. 스크립트 내용은 페이스칩으로 대체하는 경우지만
    스크립트에서
    73번째줄인 draw_face($game_party.leader.face_name, $game_party.leader.face_index, 350, y) 이 부분을 지우시거나 앞에#을 붙여주시면 페이스칩도 보이지 않게됩니다.
  • ?
    은현 2015.09.11 08:02
    위 링크의 스크립트를 확인 해보니 다른분은 잘 되신다고 하시는데 저는 오류가 나네요.
    같은 분이 작성했지만 조금 다른 스크립트 입니다. 혹 위에것이 안되시면 이걸로 해보세요

    # =============================================================================
    # TheoAllen - Face Graphics on Save Menu
    # Version : 1.1
    # Contact : www.rpgmakerid.com (or) http://theolized.blogspot.com
    # (This script is translated by AbsoluteIce)
    # =============================================================================
    ($imported ||= {})[:Theo_SaveMenuFace] = true
    # =============================================================================
    # CHANGE LOGS:
    # -----------------------------------------------------------------------------
    # 2013.06.03 - Include map name as save header
    # 2013.06.02 - Started and finished script
    # =============================================================================
    =begin

    Introduction :
    This script gives the ability to see faces on the save menu

    How to use :
    Put below material and above main

    Terms of use :
    This script has a special condition, Feel free to use it.

    Note :
    This script lets you handle the look of the save menu. If you use another
    persons script that changes the way/design of the save menu, its highly
    possible that this script is compatible with it.

    =end
    # =============================================================================
    Include_Mapname = true # Set true / false to not include mapname
    # =============================================================================
    module DataManager

    def self.make_save_header
    header = {}
    header[:characters] = $game_party.characters_for_savefile
    header[:playtime_s] = $game_system.playtime_s
    header[:faces] = $game_party.faces_for_savefile
    header[:map_name] = $game_map.display_name
    header
    end

    end

    class Window_SaveFile

    def refresh
    contents.clear
    change_color(normal_color)
    name = Vocab::File + " #{@file_index + 1}"
    draw_text(4, 0, 200, line_height, name)
    @name_width = text_size(name).width
    #draw_party_characters(152, 58)
    draw_party_faces(80, 0)
    draw_mapname(0,0,contents.width,2)
    draw_playtime(0, contents.height - line_height, contents.width - 4, 2)
    end

    def draw_mapname(x,y,width,align)
    return unless Include_Mapname
    header = DataManager.load_header(@file_index)
    return unless header
    draw_text(x,y,width,line_height,header[:map_name],align)
    end

    def draw_party_faces(x, y)
    header = DataManager.load_header(@file_index)
    return unless header && header[:faces]
    puts header[:faces].size
    header[:faces].each_with_index do |data, i|
    draw_face(data[0], data[1], x + i * 96, y)
    end
    end

    end

    class Game_Party < Game_Unit

    def faces_for_savefile
    battle_members.collect do |actor|
    [actor.face_name,actor.face_index]
    end
    end

    end
  • ?
    request 2015.09.12 18:17
    해본 결과 window savefile 51번쨰 줄에서 오류가 뜨더군요

    아마도 vxa라서 그러는거같네요...

    vx는 없나요ㅜㅜ
  • ?
    request 2015.09.12 20:24
    아 다행이도 savefile에서 잠깐 만지니 됬네요 ^^

    답변감사드립니다!

List of Articles
종류 분류 제목 글쓴이 날짜 조회 수
공지 묻고 답하기 가이드 습작 2014.06.14 12393
RMVX 적...... 2 마법사 2011.05.15 1087
RMVX 적 캐릭터가 플레이어에게 닿으면 게임오버가 되게 하는법 2 녹차밥 2013.06.22 893
RMVX 적 캐릭터가 스킬을 하나밖에 사용 못하네요 1 IU[아이유] 2013.11.26 772
RMVX 적 캐릭터 밸런스를 조절하려 하는데요 1 file znznznzmzn 2012.12.24 1017
RMVX 적 캐릭터 구하는법 1 file 키리엘 2012.03.06 2281
RMVX 적 그룹에서 적 캐릭터를 랜덤으로 나오게끔 하는 방법좀 부탁드립니다 2 이억팔천 2012.10.28 880
RMVX 저주받은 갑옷 구현 2 FNS키리토 2012.06.26 2657
RMVX 저좀 도와주세요..ㅠㅠ 2 file 닥훈이 2011.06.26 838
RMVX 저장용 슬롯을 늘리고 싶어요. 1 지나기 2016.01.12 192
RMVX 저장및 로드시 캐릭터들이 보이지 않는 방법 4 file request 2015.09.09 249
이벤트 작성 RMVX 저장/로드시 특정스위치를 OFF시킬방법 or 로드시 페이드아웃 실행 ji01345 2019.11.03 80
RMVX 저장 제한 1 파프리카 2014.07.20 556
RMVX 저장 불가능하게 하는 방법좀 알려주세요 1 위니크로스 2011.02.19 656
RMVX 저에게는 브금이 잘 나오는데 게임을 받은사람은 브금이 나오지않아요 춰억헐릿 2012.06.05 1196
RMVX 저번에도 물어봣는데 아무도 대답을 안해주시네요 ㅜㅜ 게임암호화 잘아시는분없나요??? 8 하늘별구름 2012.10.13 1285
RMVX 저는 정말정말 초보입니다 ㅠㅠ 3 박싱싱 2010.11.22 726
RMVX 저기 이 그래픽 소재 잘라서 쓰는법좀요 2 file 후라이팬샷 2013.08.18 1318
RMVX 저기 대기 이벤트가 안먹혀요 2 후라이팬샷 2013.07.27 644
RMVX 저가 퀘스트를 만들려고 하는데요. 변수인가? 머시긴가.. 2 난몰라 2011.12.19 1783
RMVX 저가 미니D&F 버서커&메카닉편을 만들려구 하는데... 질풍처럼 2010.09.22 776
Board Pagination Prev 1 ... 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 ... 127 Next
/ 127