기타

↓ 날씨 자동설정 스크립트

by 백호 posted Feb 22, 2009
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
밑에있는 날씨 스크립트를 일일이 설정안하고

자동으로 시간마다 바꿔주는 스크립트입니다

아까그 AWS위에 삽입해주세요

#=========================================
# Random_Weather
#-----------------------------------------
# A simple script made by
# me(destined) to make all weather random
#=========================================
class Random_Weather
  def initialize
    type = rand(14)
    power = rand(20)
    hue = rand(255)
    $game_screen.weather(type, power, hue)
  end
end

복사하시고 난후에 Scene_Map으로 가셔서

def main 밑에 Random_Weater.new라고 넣어주세요

예를들어서

class Scene_Map
  #--------------------------------------------------------------------------
  # ● 메인 처리
  #--------------------------------------------------------------------------
  def main
    Random_Weather.new
    # 스프라이트 세트를 작성
    @spriteset = Spriteset_Map.new

이렇게...