질문과 답변

Extra Form

ex)새로시작

     이어하기

     끝내기

     제작자 홈페이지


이렇게 되있으면 제작자의 홈페이지를 누를 경우 홈페이지로 이동이 가능하게 만드는 방법 좀 가르쳐주세요 ㅠ

Comment '1'
  • profile
    러닝은빛 2014.10.26 16:03

    메인 위에 삽입하세요.


    아래 인터넷 주소는 이 게시물의 주소로 되어있으니 수정하시기 바랍니다.



    class Scene_Title

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

      # * Main Processing

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

      def main

        # If battle test

        if $BTEST

          battle_test

          return

        end

        # Load database

        $data_actors        = load_data("Data/Actors.rxdata")

        $data_classes       = load_data("Data/Classes.rxdata")

        $data_skills        = load_data("Data/Skills.rxdata")

        $data_items         = load_data("Data/Items.rxdata")

        $data_weapons       = load_data("Data/Weapons.rxdata")

        $data_armors        = load_data("Data/Armors.rxdata")

        $data_enemies       = load_data("Data/Enemies.rxdata")

        $data_troops        = load_data("Data/Troops.rxdata")

        $data_states        = load_data("Data/States.rxdata")

        $data_animations    = load_data("Data/Animations.rxdata")

        $data_tilesets      = load_data("Data/Tilesets.rxdata")

        $data_common_events = load_data("Data/CommonEvents.rxdata")

        $data_system        = load_data("Data/System.rxdata")

        # Make system object

        $game_system = Game_System.new

        # Make title graphic

        @sprite = Sprite.new

        @sprite.bitmap = RPG::Cache.title($data_system.title_name)

        # Make command window

        s1 = "새로 시작"

        s2 = "이어 하기"

        s3 = "끝내기"

        s4 = "제작자 홈페이지"

        @command_window = Window_Command.new(192, [s1, s2, s3, s4])

        @command_window.back_opacity = 160

        @command_window.x = 320 - @command_window.width / 2

        @command_window.y = 430 - @command_window.height

        # Continue enabled determinant

        # Check if at least one save file exists

        # If enabled, make @continue_enabled true; if disabled, make it false

        @continue_enabled = false

        for i in 0..3

          if FileTest.exist?("Save#{i+1}.rxdata")

            @continue_enabled = true

          end

        end

        # If continue is enabled, move cursor to "Continue"

        # If disabled, display "Continue" text in gray

        if @continue_enabled

          @command_window.index = 1

        else

          @command_window.disable_item(1)

        end

        # Play title BGM

        $game_system.bgm_play($data_system.title_bgm)

        # Stop playing ME and BGS

        Audio.me_stop

        Audio.bgs_stop

        # Execute transition

        Graphics.transition

        # Main loop

        loop do

          # Update game screen

          Graphics.update

          # Update input information

          Input.update

          # Frame update

          update

          # Abort loop if screen is changed

          if $scene != self

            break

          end

        end

        # Prepare for transition

        Graphics.freeze

        # Dispose of command window

        @command_window.dispose

        # Dispose of title graphic

        @sprite.bitmap.dispose

        @sprite.dispose

      end

      

      def update

        # Update command window

        @command_window.update

        # If C button was pressed

        if Input.trigger?(Input::C)

          # Branch by command window cursor position

          case @command_window.index

          when 0  # New game

            command_new_game

          when 1  # Continue

            command_continue

          when 2  # Shutdown

            command_shutdown

          when 3 

            command_hompage

          end

        end

      end  

      

      def page_open(url)

        md = Win32API.new("shell32","ShellExecute",['L','P','P','P','P','L'],'L')

        md.call(0,"open",url,0,0,0)

      end


      def command_hompage

        page_open("http://avangs.info/kin/1392344")

      end

    end




List of Articles
종류 분류 제목 글쓴이 날짜 조회 수
공지 묻고 답하기 가이드 습작 2014.06.14 12392
RMVXA rpg vx ace 레이어 벽 1 file pray 2014.10.27 606
RMVX rpg 만들기 VX 맵칩 관련 질문이요!! 2 file 라늬야 2014.10.27 1046
RMVXA rpg vx ace 카메라 고정법 2 나의인간 2014.10.27 1041
Visual Novel 네코노벨로 안드로이드 apk 만드는 방법 2 김훈 2014.10.26 1155
RMXP 타이틀 메뉴 추가를 어떻게 하나요? 1 작삼 2014.10.26 951
RMVXA 가끔가다 저장하면 캐릭터가 이동할 때 발이 안 움직이고 그대로 쭉 가는 모습이 되네요 1 라뛰 2014.10.25 364
RMVXA 체력 재생 시간단위로 바꾸기..? 5 q평e평rq평e평 2014.10.25 422
RMVXA 캐릭터 이름을 입력할 때 스크립트 변경 2 file leon13a 2014.10.22 1610
RMVX Graphics/Tilesets 폴더가 없어요... 4 코코몽보는한율 2014.10.22 1063
RMVXA 스크립트 작성 시, 발생되는 렉의 원인이 뭔가요? 4 일단 2014.10.22 486
RMXP 스킬북 만드는법 1 Ka이라 2014.10.22 452
RMVXA rpgvx, vxa 스크립트에서 "이 이벤트" 1 SCUD 2014.10.21 469
RMVXA HP 에 따른 상태이상 부여 를 스크립트로 만드는 방법이 없을까요? 에코 2014.10.20 383
RMXP 스크립트 적용하는법이여 1 시오날 2014.10.20 443
RMVXA 장비,직업,그래픽을 변수에 저장된 아이디의 액터를 바꾸고 싶습니다. 2 귀칸 2014.10.20 572
RMXP 타이틀화면 움짤(xp입니다) 8 강성욱 2014.10.19 669
RMVXA 혹시 특정 스테이트에 걸렸을 때 또 다른 스테이트를 강제로 추가하는 스크립트가 있습니까? 3 복돌류 2014.10.19 405
RMVXA 파티 멤버 변수 저장 스크립트 질문입니다. 4 귀칸 2014.10.19 468
RMVX 벽이나 장애물 뒤로 모습이 가려지면서 지나갈 수 있게 하는 방법은 없나요 2 file Poy 2014.10.19 550
VXAce) 아이템이름, 직업이름 등 한글패치는 따로해야하나요?? 3 file hghg00 2014.10.19 880
Board Pagination Prev 1 ... 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 ... 516 Next
/ 516