질문과 답변

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 12456
에러 해결 RMVX XP VX 버전같은 게임할떄.... 자꾸 중간중간 특정지점에서 응답없음이 떠요 왜그런가요? 1 하앵TV 2019.02.26 75
RMVX xp 윈도우스킨을 vx로 옮겨왔는데 게임하면 이름이 다 가려져요 ㅠ 2 말벗 2011.01.03 485
RMVX XP,VX용 캐릭터 메이킹 툴 추천바랍니다 1 file 투키디데스 2011.04.09 2948
RMVX XP고VX고 아무툴이나 좋으니 이벤트끼리 닿았는지 아닌지 판별 못하나요? 2 개촙포에버 2012.03.24 1777
RMVX xp그래픽사진을 vx에서 사용 못하나요?? 4 까멸 2011.12.01 2147
RMVX xp나 vx에서 4 월하설화 2012.03.01 1961
RMVX XP배틀시스템 구현과 글씨의 크기 1 에레드루인 2011.06.18 980
RMVX XP액터들 VX에서도 사용할수있게 변환하는 법좀요~ 1 [A]중딩 2011.05.29 796
RMVX XP용 캐릭터칩을 VX에서 쓸수 있는 방법이 있나요? 2 짱구야 2010.12.06 649
RMVX XP캐릭터를 VX로 만드는거 가능한가요. 1 수정이님 2012.01.15 6368
RMVX XP캐릭터를 VX크기에 맞추려고하는데요.. 3 SM소야 2011.08.13 1467
RMVX xp툴의 BGM을 vx툴로 옮기고 싶은데요 3 동담 2011.10.21 1904
RMVX xp프레임 시간과 vx프레임 시간(크레딧) 4 file 호오라그렇군여 2014.05.08 664
RMVX X키 자체가 인식이 안 됩니다. 2 링크 2013.12.08 1540
스크립트 사용 RMVX Yami님의 Overlay Mapping 스크립트는 어떻게 사용하나요 햇찌 2023.03.02 57
RMVX ziifee's Wait Gauge Battle 사용시 궁금점 피망군 2013.05.02 596
RMVX ziifee's Wait Gauge Battle 이 배틀 시스템에 질문있어요~ 빡새 2013.05.18 609
RMVX [ KGC_CategorizeSkill]스킬 사용 취소시, 카테고리창이 출력되지 않는 현상에 대한 질문입니다. 3 file 니노미야 2011.09.29 1871
RMVX [ Vx Vampyr SBABS ] 액알 스크립트에 관해!!!!! 3 히트맨 2010.12.17 826
RMVX [RGSS/2/3] Map Screenshot 스크립트 맵스크린샷 오류 8 file 빡새 2015.03.25 299
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