?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

 제목 그대로 입니다...


Who's 이타쿠

오덕 그림쟁이

?
  • ?
    REMAIN 2014.08.01 05:56
    VX와 VX ACE는 따로 스크립트로 구현해야합니다. 원래 아방스에 스크립트 파일이 있으나 지금은 안들어가지는 관계로
    네이버 카페 RPG 만들기 포럼에 있는 VX용 안개 스크립트 링크를 달아둡니다.

    http://cafe.naver.com/dd00oo/47757
  • ?
    세이즈 2014.08.20 22:46
    님 그거 툴 강좌 찾아보세요! 그쪽에 gm봉래산님이 올린 글이 있을거에요!
  • ?
    internet 2018.12.17 19:48
    # Allows you to display a fog on map. Brings back the "old" Fog feature from
    # RPG Maker XP.
    # 08-03-2008 (dd-mm-yyyy) ⓒ Hevendor of rmxp.org
    # 09-03-2008 Edits/additions by Jirbytaylor
    # 09-03-2008 (dd-mm-yyyy) Edited by Hevendor
    # Version 1.2.3
    # Latest update: fixed bug where fog showed over pictures
    #==============================================================================

    module Fog_Map_Settings
    #============================================================================
    # * Configure Fog numbers -> names for setup timesaving. Format:
    # {fognumber => 'fogname.extension', ...}
    # where 'Fogname.extension' must be the name of a fog picture and its extension
    # located in the pictures folder
    #============================================================================
    Fog_names = {1 => 'fog.png'}
    #============================================================================
    # * Set maps you wish to have fogs here. Format:
    # Fog_maps = {mapID => Fog number, mapID2 => Fog number, ...}
    #============================================================================
    Fog_maps = {7 => 1, 10 => 1, 8 => 1, 11 => 1}
    #============================================================================
    # * Set up fog settings. Uses (fog number => setting, ...) format
    # - Opacity - Opacity of fog, ranging from 0 (invisible) to 255 (opaque)
    # - Zoom - size of fog. '1' is normal not '100'.
    # - Blend - 0 - Normal, 1 - Add, 2 - Subtract
    # - SxSy - Scroll settings. (fog number => [sx,sy] ...)
    #============================================================================
    Fog_opacity = {1 => 100}
    Fog_zoom = {1 => 3}
    Fog_blend = {1 => 2}
    Fog_sxsy = {1 => [4, 4]}
    end

    class Game_Map
    #--------------------------------------------------------------------------
    # * Public Instance Variables
    #--------------------------------------------------------------------------
    attr_reader :map_id # map ID
    attr_reader :fog_ox # fog oX
    attr_reader :fog_oy # fog oY
    #--------------------------------------------------------------------------
    # * Alias Definitions
    #--------------------------------------------------------------------------
    alias hev_fog_feature_map_update update
    alias hev_fog_feature_map_initialize initialize
    #--------------------------------------------------------------------------
    # * Object Initialization
    #--------------------------------------------------------------------------
    def initialize
    @fog_ox = 0
    @fog_oy = 0
    hev_fog_feature_map_initialize
    end
    #--------------------------------------------------------------------------
    # * Update Fog
    #--------------------------------------------------------------------------
    def update_fog
    if Fog_Map_Settings::Fog_maps.include?($game_map.map_id)
    @fog_ox -= Fog_Map_Settings::Fog_sxsy[Fog_Map_Settings::Fog_maps[@map_id]][0] / 8.0
    @fog_oy -= Fog_Map_Settings::Fog_sxsy[Fog_Map_Settings::Fog_maps[@map_id]][1] / 8.0
    end
    end
    #--------------------------------------------------------------------------
    # * Frame Update
    #--------------------------------------------------------------------------
    def update
    hev_fog_feature_map_update
    update_fog
    end
    end

    class Spriteset_Map
    #--------------------------------------------------------------------------
    # * Alias Definitions
    #--------------------------------------------------------------------------
    alias hev_fog_feature_initialize initialize
    alias hev_fog_feature_create_viewports create_viewports
    alias hev_fog_feature_dispose dispose
    alias hev_fog_feature_update_viewports update_viewports
    alias hev_fog_feature_update update
    #--------------------------------------------------------------------------
    # * Object Initialization
    #--------------------------------------------------------------------------
    def initialize
    hev_fog_feature_initialize
    create_fog
    end
    #--------------------------------------------------------------------------
    # * Create Viewport
    #--------------------------------------------------------------------------
    def create_viewports
    @viewport4 = Viewport.new(0, 0, 544, 416)
    @viewport4.z = 9
    hev_fog_feature_create_viewports
    end
    #--------------------------------------------------------------------------
    # * Create Fog
    #--------------------------------------------------------------------------
    def create_fog
    @fog = Plane.new(@viewport4)
    if Fog_Map_Settings::Fog_maps.include?($game_map.map_id)
    fog_number = Fog_Map_Settings::Fog_maps[$game_map.map_id]
    update_fog
    @fog.bitmap = Cache.picture(Fog_Map_Settings::Fog_names[fog_number])
    @fog.opacity = Fog_Map_Settings::Fog_opacity[fog_number]
    @fog.zoom_x = @fog.zoom_y = Fog_Map_Settings::Fog_zoom[fog_number]
    @fog.blend_type = Fog_Map_Settings::Fog_blend[fog_number]
    end
    end
    #--------------------------------------------------------------------------
    # * Update Fog Sprite
    #--------------------------------------------------------------------------
    def update_fog
    if @fog != nil
    @fog.ox = $game_map.display_x / 8 + $game_map.fog_ox
    @fog.oy = $game_map.display_y / 8 + $game_map.fog_oy
    end
    end
    #--------------------------------------------------------------------------
    # * Frame Update
    #--------------------------------------------------------------------------
    def update
    hev_fog_feature_update
    update_fog
    end
    #--------------------------------------------------------------------------
    # * Dispose of Fog Sprite
    #--------------------------------------------------------------------------
    def dispose_fog
    @fog.dispose
    end
    #--------------------------------------------------------------------------
    # * Dispose
    #--------------------------------------------------------------------------
    def dispose
    dispose_fog
    hev_fog_feature_dispose
    end
    end




    스크립트입니다.
    인터넷에 fog 검색하셔서 안개 사진 다운로드 하시고
    런타임 패키지 그래픽 폴더에 picture에 넣으시고
    이 스크립트 입력하시면 됩니다.

    출처 : https://cafe.naver.com/dd00oo/47757

  1. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 87 

    @brrsim_7텔레그램 선불유심내구제 급전 뽀로로통신 선불유심매입 뽀로로통신 선불유심현금화하는업체 선불유심구매 간편무서류소액급전

  2. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 119 

    선불유심내구제 텔레그램@brrsim_7 선불유심매입 선불유심구매 뽀로로통신 급전 대학생내구제 비상금 연체자바로소액급전 주말소액급전

  3. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 88 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 선불폰내구제 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 무직신불자소액급전

  4. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 107 

    선불유심내구제 텔레그램@brrsim_7 급전 선불유심매입 뽀로로통신 청년비상금급전 내구제소액 소액급전 정식업체 선불유심구매

  5. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 107 

    선불유심내구제 텔레그램@brrsim_7 뽀로로통신 급전 선불유심매입 신불자소액내구제 연체자바로소액급전 선불유심구매 바로모바일급전

  6. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 115 

    선불유심삽니다 텔레그램@brrsim_7 선불유심내구제 뽀로로통신 선불유심매입 선불유심구매 소액내구제 급전 연체대납 바로소액급전 법인소액작업급전

  7. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 89 

    @brrsim_7텔레그램 선불폰유심내구제 선불유심매입 뽀로로통신 급전 선불유심내구제 급전해결내구제 선불유심현금화하는업체 선불유심구매 바로무직자급전

  8. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 111 

    선불유심매입 텔레그램@brrsim_7 선불유심내구제 뽀로로통신 바로소액내구제급전 선불유심구매 급전 선불유심매입 바로소액급전 무서류무방문급전

  9. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 113 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 백수바로급전내구제

  10. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 106 

    선불유심내구제 텔레그램@brrsim_7 선불유심매입 뽀로로통신 소액급전내구제 급전 연체자바로소액급전 선불유심구매 대학생용돈

  11. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 90 

    @brrsim_7텔레그램 선불유심내구제 뽀로로통신 급전 선불유심매입 유심현금화하는업체 무직비상금바로급전 선불유심구매

  12. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 87 

    선불유심내구제 정식업체 텔레그램@brrsim_7선불유심매입 뽀로로통신 소상공인긴급생활안정자금 급전 선불유심구매 선불유심내구제 소액급전대출 바로신불급전가능

  13. No Image 07Jul
    by 선불유심내구제뽀로로통신
    2026/07/07 by 선불유심내구제뽀로로통신
    Views 104 

    @brrsim_7텔레그램 선불유심매입 선불유심내구제 뽀로로통신 선불유심현금화하는업체 프리랜서소액급전 선불폰유심매입합니다 급전 선불유심구매 바로정산

  14. No Image 06Jul
    by 선불유심내구제뽀로로통신
    2026/07/06 by 선불유심내구제뽀로로통신
    Views 139 

    @brrsim_7텔레그램 선불유심내구제 선불유심매입 뽀로로통신 급전 선불유심현금화하는업체 선불유심구매 백수바로급전내구제

  15. 쯔꾸르 mv 게임을 apk 파일로 변환했는데...

  16. 쯔꾸르 젖소이야기 결혼 방법좀 알려주세요...

  17. No Image 29Nov
    by game메이커xp
    2021/11/29 by game메이커xp
    Views 2139 

    apk포팅 승인 어케 하나요?

  18. No Image 15Jul
    by Neuromancer
    2021/07/15 by Neuromancer
    Views 2676 

    Yanfly님의 Action Sequence Pack 질문드립니다

  19. 싸게 MV 를 먼저? 아니면 돈을 더 들어서라도 MZ?

  20. RMMV - 스탯창과 대화창 변견 관련 질문입니다. (초보입니다 도움좀 주세요 ㅜㅜ)

Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 443 Next
/ 443


[privacy statements] | [Terms of Use] | [Contact us] | [Sponsorship] | [Indiside History]

Copyright © 1999 - 2016 INdiSide.com/CL3D Co., Ltd. All Rights Reserved.
Owner : Chunmu(Jiseon Lee) | kernys(Wonbae Kim) | Sasinji(Byungkook Kim)