질문과 답변

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 21145
RMVX 정해진 피가 다달면 게임오버가 아닌 다른맵으로 가는법 2 지혈이 2015.01.17 198
RMVX 랜덤이벤트를 만들고 싶은데 하는 방법을 모릅니다.. 3 몰ㄹㄹ라ㅣ 2017.07.31 198
RMVX 자체해결]스크립트를 이용, 상태창에서 칭호 등 장비아이템을 떨어뜨려 표기하고 싶습니다. 2 밥_짓는_남자 2015.05.08 199
RMVX 타이머 오류? 질문 드립니다 ㅠ.ㅠ 6 후라이팬샷 2018.07.28 199
RMVX 전투진행중 속도가 너무 느려서 좀더 빠르게 하고싶네요 3 리팝이 2015.04.04 201
RMVX RPG VX 온라인 문의 입니다! 4 게임을만들자! 2016.07.19 202
RMVX 몬스터 죽였는데 계속 살아있어요. 4 프항_훗! 2015.02.23 203
RMVX 동영상재생 스크립트 질문 2 영상에서본여자 2015.02.20 203
RMVX 스크립트 적용법 D_Dandy 2016.10.29 203
RMVX 점프할때 화면도 같이 이동할수있나요? 2 file 마한 2015.05.04 204
RMVX RPG 개인게임 전투에서 동료가 없게 하는 방법을 알려주세요. 1 roykim09 2015.05.13 204
RMVX HG_QUEST_SYSTEM n번째 액터의 얼굴 그래픽 추가 file 톨톨 2015.06.08 204
RMVX RPGVX게임만 문제가 있네요 1 듀라듀라셀 2015.07.28 204
기타 RMVX 맵의 분위기와 도트에 대하여 질문합니다(텍스처가 있는것인가요? 1 알만이 2020.08.31 204
RMVX 도트메이커 1 우웩 2017.08.20 206
RMVX 습작님의 rpg maker vx eme 사용 중 문제 3 cutyperson 2015.11.01 207
RMVX 선택창 그림으로 표시 1 KAHP 2015.06.26 208
RMVX 아이템 생성창 번역 질문드립니다 4 file 치킨죠아영 2018.11.20 208
RMVX 캐릭터 여러명 같이 다니는거 어떻게 하나요 3 file helena 2015.08.14 209
RMVX 캐릭터 생성의 제한 5 file SIES 2015.07.03 209
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ... 127 Next
/ 127