질문과 답변

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 263515님 VX아이콘셋이... 2 키레이 2010.12.04 558
RMVX 전투상태창 카르닉스 2010.12.05 582
RMVX XP용 캐릭터칩을 VX에서 쓸수 있는 방법이 있나요? 2 짱구야 2010.12.06 649
RMVX 변수나 스위치 값은 게임화면에 띄우는 방법좀.. 2 승진쿤 2010.12.06 795
RMVX RPGVX 단축키 스크립트로 바꾸는법 1 kallat 2010.12.07 676
RMVX 호환 부탁드립니다. 1 카르닉스 2010.12.07 525
RMVX 액알 1 비난공 2010.12.07 488
RMVX 사이드뷰에서 얼굴표시하기 8 레이트리스 2010.12.07 679
RMVX 얼굴 제작은 어떻게 하나요? 2 왕자 2010.12.08 805
RMVX 원경 답변 부탁드립니다. 3 팅이 2010.12.08 682
RMVX 기초를 질문합니다 2 태우기 2010.12.08 565
RMVX 퀘스트 생성질문이요 2 RPGvvxx 2010.12.08 721
RMVX 능력치 상승 스킬에서 1 일라이트 2010.12.08 600
RMVX 용어 질문입니다~ 3 메이커 메이커 2010.12.08 523
RMVX ◆조건분기 : 버튼 n 를 눌렀다 4 곰테니 2010.12.08 647
RMVX 맵칩 적용법좀 2 RPG깐쥐남 2010.12.08 875
RMVX 캐릭터가 짤려서 클릭돼요 1 RPG깐쥐남 2010.12.09 1097
RMVX SRPG에 대해 질문드립니다. 3 팔공산반달곰 2010.12.09 1271
RMVX 얼굴 아이콘 어떻게 제작하나요? 1 왕자 2010.12.10 820
RMVX 읽기전용 해지를 못해서 실행이 안되요 1 최호준1024 2010.12.10 1128
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