XP 스크립트

Maplinks script by Wachunga@rmxp.net  (이 @이 e-mail주소를 가리키는 것이 아니란 것을 염두에 두시길)

  스크립트를 이용해서 맵의 가장자리로 갔을 때 다음 맵으로 워프하게 하는 것입니다.(맵의 가장자리를 이벤트로 도배하는 것보다 효율적이다?)


=begin

 ============

  Maplinks - version 0.95 (2005-11-10)

 ============

  by Wachunga


 This script simplifies linking maps together: a single event sets up an

 entire edge of the map as a teleport to another map. Players trying to

 leave that edge of the current map are automatically teleported.


 (This can also be achieved with many copies of teleport events along the edges

 of a map or with a parallel-process event that sets variables and uses them to

 teleport, but these methods are not optimal -- causing lag and/or inconvenience

 for the mapper.)


 To link a map with another on a specific edge (north, east, south or west),

 create an event with <maplink> included in its name on the appropriate edge of

 the map. (To avoid confusion, maplink events on corners of the map are

 not valid.) Then, add a teleport ("Transfer Player") command to the event

 to specify the destination map and other details (e.g. player direction,

 fading on/off). If the destination is an east or west edge, then the Y

 coordinate is calculated based on the player's Y coordinate when

 teleporting; likewise, the X coordinate is calculated automatically when

 the destination is a north or south edge.

 

 Note: unlike normal teleport events, maplinks are activated when the player

 tries to leave the screen instead of when stepping on the last tile. This

 behaviour could be changed, but I feel that it's more natural this way:

 it leaves the whole map open for actual exploration, instead of "wasting"

 the outer tiles of a map.


=end


#-------------------------------------------------------------------------------


class Game_Event < Game_Character

  alias ml_ge_init initialize

  def initialize(map_id, event)

    ml_ge_init(map_id, event)

    if @event.name.upcase.include?('<MAPLINK>')

      dir = nil

      if @event.y == $game_map.height-1

        dir = 2 unless @event.x == 0 or @event.x == $game_map.width-1

      elsif @event.x == 0

        dir = 4 unless @event.y == 0 or @event.y == $game_map.height-1

      elsif @event.x == $game_map.width-1

        dir = 6 unless @event.y == 0 or @event.y == $game_map.height-1

      elsif @event.y == 0

        dir = 8 unless @event.x == 0 or @event.x == $game_map.width-1

      end

      if dir != nil

        @list.each { |command|

          if command.code == 201

            # make sure new location isn't be specified by variables

            if command.parameters[0] == 0

              $game_map.maplinks[dir] = Maplink.new(command.parameters)

              break

            end

          end

        }

      end

    end

  end

end


#-------------------------------------------------------------------------------


class Game_Map

  attr_accessor :maplinks

 

  alias ml_gm_setup setup

  def setup(map_id)

    @maplinks = {}

    ml_gm_setup(map_id)

  end

 

  def width(map_id = @map_id)

    if map_id == @map_id

      return @map.width

    else

      return load_data(sprintf("Data/Map%03d.rxdata", map_id)).width     

    end

  end 


  def height(map_id = @map_id)

    if map_id == @map_id

      return @map.height

    else

      return load_data(sprintf("Data/Map%03d.rxdata", map_id)).height

    end

  end   

 

end


#-------------------------------------------------------------------------------


class Maplink

 

  def initialize(parameters)

    @param = parameters

  end


  def activate

    width = $game_map.width(@param[1])

    height = $game_map.height(@param[1])

    # modify x (p[2]) or y (p[3]) coordinates appropriately

    if @param[2] == 0 or @param[2] == width-1

      @param[3] = $game_player.y

    elsif @param[3] == 0 or @param[3] == height-1

      @param[2] = $game_player.x

    end

    # set up a dummy interpreter just for teleport

    interpreter = Interpreter.new

    interpreter.parameters = @param

    interpreter.index = 0

    interpreter.command_201

  end

 

end


#-------------------------------------------------------------------------------


class Game_Player


  alias ml_cett check_event_trigger_touch

  def check_event_trigger_touch(x, y)

    check_maplinks(x,y)

    ml_cett(x,y)

  end

 

  def check_maplinks(x,y)

    if $game_map.valid?(x, y) then return end

    dir = nil

    if y == $game_map.height then dir = 2

    elsif x == -1 then dir = 4

    elsif x == $game_map.width then dir = 6

    elsif y == -1 then dir = 8

    end

    if dir != nil

      if $game_map.maplinks[dir] != nil

        $game_map.maplinks[dir].activate

      end

    end

  end


end


#-------------------------------------------------------------------------------


class Interpreter

  attr_accessor :parameters

  attr_accessor :index

end

Who's 백호

?

이상혁입니다.

http://elab.kr


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 스크립트 자료 게시물 작성시 주의사항 습작 2012.12.24 6159
641 메뉴 메뉴화면 변경 스크립트 1 file 백호 2009.02.21 2772
640 파티 메뉴커맨드로 파티 멤버들 순서 바꾸기 by Yargovish 1 백호 2009.02.22 1622
639 메뉴 메뉴에서 커맨더실행하기 5 WMN 2008.04.06 1682
638 메뉴 메뉴에서 실제시간 보기 2 백호 2009.02.21 1124
637 메뉴 메뉴에 얼굴 그래픽 표시 4 file 백호 2009.02.21 3113
636 메뉴 메뉴에 그림넣기 4 file 백호 2009.02.22 4413
635 변수/스위치 메뉴변수표시 스크립트 1 file 백호 2009.02.22 1644
634 메뉴 메뉴바꾸기 4 file ureazy 2012.07.23 2847
633 메뉴 메뉴를 바꾸는 스크립트 14 №1 2012.08.04 4209
632 메뉴 메뉴등에서 움직이는 엑터 9 file 백호 2009.02.22 3163
631 메뉴 메뉴....있길래올립니다. 9 벨☆ 2010.01.23 2001
630 메뉴 메뉴 화면 변경 스크립트 file 백호 2009.02.21 2237
629 메뉴 메뉴 화면 개조 스크립트 1 백호 2009.02.21 1668
628 메뉴 메뉴 변경 스크립트 2 file 백호 2009.02.21 2360
627 메뉴 메뉴 단축키 스크립트 14 백호 2009.02.22 2958
626 기타 멋진...제작자 정보를 그림으로 1 백호 2009.02.22 1233
625 이동 및 탈것 멈췄을때 행동. 17 file Bera 2010.10.17 3408
624 온라인 멀티넷플레이 99Q Beta 3 27 백호 2009.02.22 3107
623 온라인 멀티넷스크립트 => 채팅보완 스크립트 8 file 백호 2009.02.22 2931
622 저장 멀티넷스크립트 -> 아이피 세이브,로드 스크립트 9 file 백호 2009.02.22 2204
Board Pagination Prev 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 ... 52 Next
/ 52