질문과 답변

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 12442
기타 RMVX RPG VX로 게임에 음악넣는데 문제가생겻어요. 1 김정은죽이기게임개발자! 2019.10.02 56
RMVX RPG VX로 제작된 게임들의 배경음이 안나오네요 ehfhfh4 2014.07.24 653
RMVX RPG VX로 플레이 후 강제종료 이벤트 가능한가요? 민유일 2016.05.06 137
RMVX rpg vx를 사용하는데.. 1 배우자vx 2012.12.27 1039
액션 전투 RMVX RPG VX를 하시는 분. 제리루비 2021.07.17 86
RMVX rpg vx서 음악이 안나오면 어찌해야 하나요 4 둥글수염 2013.05.11 1532
RMVX rpg vx스크립트의 기본문법좀가르쳐주세요 2 냐catch 2012.03.25 1961
RMVX RPG VX에 개인사진, 브금 넣는법을 알고싶습니다 tmdgjs9525 2014.11.16 368
RMVX rpg vx에 대해.. 1 By카미린 2010.12.21 500
RMVX rpg vx에 대해... 1 아르케미스트 2011.01.11 700
RMVX RPG VX에서 "레벨업 퀘스트" 나 "레벨 마크" 정하는 방법 있을까여?.? 2 쿠쿠밥솥 2011.09.25 1998
RMVX RPG VX에서 몬스터칩 삽입하는 방법좀요 7 file SimSimiRPG 2013.01.16 2937
RMVX rpg vx에서 액알 가능 하나요? 4 file 사현 2014.04.12 1621
RMVX rpg vx에서 이동속도를 6보다 높게 만들고싶습니다. 1 감사,합니다 2014.01.24 1691
RMVX rpg vx에서 파일이 사라지는 현상 l아방스l 2011.09.22 1440
RMVX rpg vx타일관련해서,.. 2 file 모시코 2015.03.12 237
RMVX RPG XP에서 대화할때 사람얼굴 붙일수잇는 방법 2 순오니 2010.10.24 1769
RMVX rpg xv 질문좀 .. 1 김곶자 2011.01.06 494
RMVX RPG 개인게임 전투에서 동료가 없게 하는 방법을 알려주세요. 1 roykim09 2015.05.13 198
RMVX RPG 만들기 VX SBS 상대방도 캐릭터 그래픽으로 나타나게 하는 방법.. file 잭무기 2014.05.29 921
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