질문과 답변

Extra Form

제목이 곧 내용입니다.

사진을 보시면 상태가 어떤지 파악이 잘 될 것이라 생각됩니다.


제가 스크립트를 거의 다루지를 못해서 저 혼자서는 고칠 수가 없네요;;


저장하고 불러올 때 페이스칩이 나오게 하거나, 캐릭터칩이 안 잘리게 하는 방법이 없을까요?새 캔버스.jpg



Comment '4'
  • ?
    GloomyDay 2015.07.13 00:59
    # =============================================================================
    # 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($game_party.leader.face_name, $game_party.leader.face_index, 350, 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

    TheoAllen님이 제작하신 세이브 파일에 페이스칩을 나타내주는 스크립트입니다.
    def_refresh 안의 숫자들을 수정하면 페이스칩, 플레이 시간, 맵 이름, 텍스트 등이 표시될 위치를 변경할 수 있습니다.
  • profile
    라니에타 2015.07.13 18:36
    좋은 스크립트소개 정말 감사합니다.
    그런데 제가 사용방법이 미숙한건지 스크립트가 잘못된건지
    타이틀 화면에서 불러오기를 하려면 에러가 뜨는군요;;
    다른스크립트랑 충돌은 아닙니다. 새 프로젝트에 테스트를 하는 도중이었어요..
    혹시 다른 방법이나 이 스크립트의 사용법을 알려주시면 정말 감사하겠습니다.
  • ?
    GloomyDay 2015.07.13 20:34
    스크립트를 적용하기 전의 세이브파일에서는 페이스칩 그래픽의 정보를 받아올 수 없어서 그럴 겁니다.
    기존 세이브 파일을 전부 지우고 테스트 플레이 해보세요.

    그래도 안 될 경우, 아방스 스크립트 자료실 등에 있는 다른 세이브 창 수정 스크립트를 사용해보세요.
  • profile
    라니에타 2015.07.13 20:43
    사용됩니다!! 정말 감사합니다!!

List of Articles
종류 분류 제목 글쓴이 날짜 조회 수
공지 묻고 답하기 가이드 습작 2014.06.14 12452
기타 저좀 도와주세요 !!!! 2 CheckMates 2011.01.13 1074
기본툴 사용법 RMVXA 저장화면? 메뉴키 누르면 나오는 화면 바꾸기 1 file 권빙구 2019.06.27 283
기타 저장함이 뭡니까? 3 블리치 2012.04.24 2573
RMXP 저장할려는데자꾸팅겨요ㄷㄷ ★☆★빤짝이☆★☆ 2010.11.18 594
RMVX 저장용 슬롯을 늘리고 싶어요. 1 지나기 2016.01.12 192
RMVX 저장및 로드시 캐릭터들이 보이지 않는 방법 4 file request 2015.09.09 249
RMMV 저장데이터 회원 가시밭 2015.11.02 97
RMXP 저장공간 제한.. 2 the레드 2010.09.12 1707
RMMV 저장/로드화면 레이아웃 바꾸려고 합니다. 2 file 리제트 2017.11.14 180
이벤트 작성 RMVX 저장/로드시 특정스위치를 OFF시킬방법 or 로드시 페이드아웃 실행 ji01345 2019.11.03 81
RMVXA 저장 후 만들어지는 데이터 숨기는 법 좀 알려주세요 ㅠ 작삼 2014.11.13 271
RMVXA 저장 창 오픈 시 나오는 일어를 한글로 번역하고싶어요 2 file 파랑빛 2016.07.15 321
RMVX 저장 제한 1 파프리카 2014.07.20 556
RMVXA 저장 시 캐릭터칩이 너무 커서 몸이 잘린 채로 표시됩니다. 4 file 라니에타 2015.07.12 405
RMVXA 저장 시 캐릭터가아닌 페이스 가 나오게 할 수 있나요? 1 file 파랑빛 2016.08.16 168
RMVXA 저장 시 취소가 불가능하게 하는 방법 8 작삼 2014.07.22 610
스크립트 작성 RMVXA 저장 스크린이 열릴 때에만 커서 효과음이 바뀌게 하는 법 슈필러 2019.07.07 58
RMXP 저장 세이브만 하면 이렇게 튕겨요 ㅠㅠ 5 file 후라이팬샷 2013.09.17 1033
RMVX 저장 불가능하게 하는 방법좀 알려주세요 1 위니크로스 2011.02.19 656
RMVXA 저장 변수 출력 은호 2014.06.08 533
Board Pagination Prev 1 ... 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 ... 516 Next
/ 516