외부 소재

Extra Form

으아.....

만든 후에 용량이 너무 크다고

줄이느라 죽는 줄 알았어요....;;

움직이는 뒷배경_네오.gif

잘 쓰세요..

Who's J H L

profile

한국가고싶어요...

Comment '15'
  • profile
    Lathrion 2010.04.02 17:25

    원래 매트릭스에서는 한자도 나오지않나요 ㅠㅠ

  • profile
    J H L 2010.04.02 18:09

    보통은 0과1 코드죠 이것은 로봇언어입니다.

  • ?
    白月のはる 2010.04.02 18:05

    으음..? 이런것도 쓸수가 있남..(?)

  • profile
    J H L 2010.04.02 23:59

    글쎄요...?

  • ?
    1000℃ 복숭아 2010.04.04 12:36

    gjf = 헐

     

    gjf파일은 쓸수가 없어요,.

    자삭해주세요 ㅅ;

  • ?
    아다스 2010.04.11 12:47

    쓸수잇엇음?

  • ?
    나이트퓨리 2010.07.08 18:55

    #==============================================================================
    # ** Keyboard Input Module
    #==============================================================================
    # Near Fantastica
    # Version 5
    # 29.11.05
    #==============================================================================
    # The Keyboard Input Module is designed to function as the default Input module
    # dose. It is better then other methods keyboard input because as a key is
    # tested it is not removed form the list. so you can test the same key multiple
    # times the same loop.
    #==============================================================================

    module Keyboard
      #--------------------------------------------------------------------------
      @keys = []
      @pressed = []
      Mouse_Left = 1
      Mouse_Right = 2
      Back= 8
      Tab = 9
      Enter = 13
      Shift = 16
      Ctrl = 17
      Alt = 18
      Capslook = 20
      Change = 21
      Esc = 27
      Space = 32
      Numberkeys = {}
      Numberkeys[0] = 48
      Numberkeys[1] = 49
      Numberkeys[2] = 50
      Numberkeys[3] = 51
      Numberkeys[4] = 52
      Numberkeys[5] = 53
      Numberkeys[6] = 54
      Numberkeys[7] = 55
      Numberkeys[8] = 56
      Numberkeys[9] = 57
      Numberpad = {}
      Numberpad[0] = 96
      Numberpad[1] = 97
      Numberpad[2] = 98
      Numberpad[3] = 99
      Numberpad[4] = 100
      Numberpad[5] = 101
      Numberpad[6] = 102
      Numberpad[7] = 103
      Numberpad[8] = 104
      Numberpad[9] = 105
      Numberpad[10] = 106
      Numberpad[11] = 107
      Numberpad[12] = 109
      Numberpad[13] = 110
      Numberpad[14] = 111
      Letters = {}
      Letters["A"] = 65
      Letters["B"] = 66
      Letters["C"] = 67
      Letters["D"] = 68
      Letters["E"] = 69
      Letters["F"] = 70
      Letters["G"] = 71
      Letters["H"] = 72
      Letters["I"] = 73
      Letters["J"] = 74
      Letters["K"] = 75
      Letters["L"] = 76
      Letters["M"] = 77
      Letters["N"] = 78
      Letters["O"] = 79
      Letters["P"] = 80
      Letters["Q"] = 81
      Letters["R"] = 82
      Letters["S"] = 83
      Letters["T"] = 84
      Letters["U"] = 85
      Letters["V"] = 86
      Letters["W"] = 87
      Letters["X"] = 88
      Letters["Y"] = 89
      Letters["Z"] = 90
      Fkeys = {}
      Fkeys[1] = 112
      Fkeys[2] = 113
      Fkeys[3] = 114
      Fkeys[4] = 115
      Fkeys[5] = 116
      Fkeys[6] = 117
      Fkeys[7] = 118
      Fkeys[8] = 119
      Fkeys[9] = 120
      Fkeys[10] = 121
      Fkeys[11] = 122
      Fkeys[12] = 123
      Collon = 186
      Equal = 187
      Comma = 188
      Underscore = 189
      Dot = 190
      Slash = 191
      Wave = 192
      Lb = 219
      Backslash = 220
      Rb = 221
      Quote = 222
      State = Win32API.new("user32","GetKeyState",['i'],'i')
      Key = Win32API.new("user32","GetAsyncKeyState",['i'],'i')
      #-------------------------------------------------------------------------- 
      def Keyboard.getstate(key)
        return true unless State.call(key).between?(0, 1)
        return false
      end
      #--------------------------------------------------------------------------
      def Keyboard.testkey(key)
        Key.call(key) & 0x01 == 1
      end
      #--------------------------------------------------------------------------
      def Keyboard.teststate(key, set = 0)
        State.call(key) & 0x01 == set
      end
      #--------------------------------------------------------------------------
      def Keyboard.update
        @keys = []
        @keys.push(Keyboard::Mouse_Left) if Keyboard.testkey(Keyboard::Mouse_Left)
        @keys.push(Keyboard::Mouse_Right) if Keyboard.testkey(Keyboard::Mouse_Right)
        @keys.push(Keyboard::Back) if Keyboard.testkey(Keyboard::Back)
        @keys.push(Keyboard::Tab) if Keyboard.testkey(Keyboard::Tab)
        @keys.push(Keyboard::Enter) if Keyboard.testkey(Keyboard::Enter)
        @keys.push(Keyboard::Shift) if Keyboard.testkey(Keyboard::Shift)
        @keys.push(Keyboard::Ctrl) if Keyboard.testkey(Keyboard::Ctrl)
        @keys.push(Keyboard::Alt) if Keyboard.testkey(Keyboard::Alt)
        @keys.push(Keyboard::Change) if Keyboard.testkey(Keyboard::Change)
        @keys.push(Keyboard::Esc) if Keyboard.testkey(Keyboard::Esc)
        @keys.push(Keyboard::Space) if Keyboard.testkey(Keyboard::Space)
        for key in Keyboard::Numberkeys.values
          @keys.push(key) if Keyboard.testkey(key)
        end
        for key in Keyboard::Numberpad.values
          @keys.push(key) if Keyboard.testkey(key)
        end
        for key in Keyboard::Letters.values
          @keys.push(key) if Keyboard.testkey(key)
        end
        for key in Keyboard::Fkeys.values
          @keys.push(key) if Keyboard.testkey(key)
        end
        @keys.push(Keyboard::Collon) if Keyboard.testkey(Keyboard::Collon)
        @keys.push(Keyboard::Equal) if Keyboard.testkey(Keyboard::Equal)
        @keys.push(Keyboard::Comma) if Keyboard.testkey(Keyboard::Comma)
        @keys.push(Keyboard::Underscore) if Keyboard.testkey(Keyboard::Underscore)
        @keys.push(Keyboard::Dot) if Keyboard.testkey(Keyboard::Dot)
        @keys.push(Keyboard::Slash) if Keyboard.testkey(Keyboard::Slash)
        @keys.push(Keyboard::Wave) if Keyboard.testkey(Keyboard::Wave)
        @keys.push(Keyboard::Backslash) if Keyboard.testkey(Keyboard::Backslash)
        @keys.push(Keyboard::Lb) if Keyboard.testkey(Keyboard::Lb)
        @keys.push(Keyboard::Rb) if Keyboard.testkey(Keyboard::Rb)
        @keys.push(Keyboard::Quote) if Keyboard.testkey(Keyboard::Quote)
        @pressed = []
        @pressed.push(Keyboard::Mouse_Left) if Keyboard.getstate(Keyboard::Mouse_Left)
        @pressed.push(Keyboard::Mouse_Right) if Keyboard.getstate(Keyboard::Mouse_Right)
        @pressed.push(Keyboard::Back) if Keyboard.getstate(Keyboard::Back)
        @pressed.push(Keyboard::Tab) if Keyboard.getstate(Keyboard::Tab)
        @pressed.push(Keyboard::Enter) if Keyboard.getstate(Keyboard::Enter)
        @pressed.push(Keyboard::Shift) if Keyboard.getstate(Keyboard::Shift)
        @pressed.push(Keyboard::Ctrl) if Keyboard.getstate(Keyboard::Ctrl)
        @pressed.push(Keyboard::Alt) if Keyboard.getstate(Keyboard::Alt)
        @pressed.push(Keyboard::Change) if Keyboard.getstate(Keyboard::Change)
        @pressed.push(Keyboard::Esc) if Keyboard.getstate(Keyboard::Esc)
        @pressed.push(Keyboard::Space) if Keyboard.getstate(Keyboard::Space)
        for key in Keyboard::Numberkeys.values
          @pressed.push(key) if Keyboard.getstate(key)
        end
        for key in Keyboard::Numberpad.values
          @pressed.push(key) if Keyboard.getstate(key)
        end
        for key in Keyboard::Letters.values
          @pressed.push(key) if Keyboard.getstate(key)
        end
        for key in Keyboard::Fkeys.values
          @pressed.push(key) if Keyboard.getstate(key)
        end
        @pressed.push(Keyboard::Collon) if Keyboard.getstate(Keyboard::Collon)
        @pressed.push(Keyboard::Equal) if Keyboard.getstate(Keyboard::Equal)
        @pressed.push(Keyboard::Comma) if Keyboard.getstate(Keyboard::Comma)
        @pressed.push(Keyboard::Underscore) if Keyboard.getstate(Keyboard::Underscore)
        @pressed.push(Keyboard::Dot) if Keyboard.getstate(Keyboard::Dot)
        @pressed.push(Keyboard::Slash) if Keyboard.getstate(Keyboard::Slash)
        @pressed.push(Keyboard::Wave) if Keyboard.getstate(Keyboard::Wave)
        @pressed.push(Keyboard::Backslash) if Keyboard.getstate(Keyboard::Backslash)
        @pressed.push(Keyboard::Lb) if Keyboard.getstate(Keyboard::Lb)
        @pressed.push(Keyboard::Rb) if Keyboard.getstate(Keyboard::Rb)
        @pressed.push(Keyboard::Quote) if Keyboard.getstate(Keyboard::Quote) 
      end
      #--------------------------------------------------------------------------
      def Keyboard.trigger?(key)
        return true if @keys.include?(key)
        return false
      end
      #--------------------------------------------------------------------------
      def Keyboard.pressed?(key)
        return true if @pressed.include?(key)
        return false
      end
    end

  • ?
    오황불 2010.07.08 23:47

    뭐져이거?

  • profile
    게임잘날아가는닝겐 2014.11.29 15:58
    웬 키보드
  • ?
    ID미니군 2010.07.28 20:41

    대단합니다.

    근데 도라에몽 게임에 이런걸 넣기는 좀 그렇잖아요?

    ㅈㅅ...근데 대단해요!!^^캡짱~!!!

  • profile
    언인스톨 2010.08.28 18:51

    550*400 돋네

    플래시 돋네

  • ?
    포인트팡팡 2010.08.28 18:51
    축하합니다. 언인스톨님은 60포인트에 당첨되셨습니다
  • profile
    게임잘날아가는닝겐 2014.11.29 15:58
    ㅋㅋㅋㅋㅋ 플래시였어?
  • ?
    ???????? 2010.12.30 12:58

    대단하다~!

  • ?
    빌리진 낫뫄이럽 2011.01.22 13:59

    오옷 매트릭스!!!


List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
공지 인터페이스 【RPG Maker → Wolf RPG Editor】그래픽 소재 변환기 습작 2013.09.30 11480
공지 인터페이스 그래픽 소재 게시판 이용 안내 11 습작 2012.07.05 25589
공지 인터페이스 【RM2k/2k3】각종 소재 모음 30 아방스 2008.01.25 50939
공지 인터페이스 【RMXP】통합 맵칩 155 아방스 2008.08.23 62575
공지 인터페이스 【RMXP】,【RMVX/Ace】캐릭터 생성 사이트 44 file 아방스 2008.12.02 81269
공지 인터페이스 【RMVX/Ace】타일세트 그래픽 규정 17 file 아방스 2008.01.22 49728
공지 인터페이스 【RMVX/Ace → RMXP】,【RM2k/2k3/XP → RMVX/Ace】캐릭터 소재 변환기 15 file 아방스 2008.01.21 47692
1659 얼:VX/Ace 쩔어 file 뽀대열 2010.06.13 922
1658 몬:XP/VX/Ace 뱀 귀신. 6 file 걸인소년 2008.03.17 921
1657 얼:2000/2003 페가수스 file 괴도키드 2009.07.12 921
1656 얼:2000/2003 말과 용을 탄 기사 1 file 괴도키드 2009.07.12 921
1655 맵타일 산길용 오토타일 2 file 나뚜루 2009.02.22 921
1654 기타 사진에 편집한거 1 file 사랑해 2010.02.19 921
1653 캐:XP 똥퀄의 미식축구 file 세종오니 2013.03.31 920
1652 아:XP 덥제님요청 음식아이콘 10 file Assault Meteoric Star 2010.08.07 920
1651 캐:XP 풍차 / 바람개비 / 6 file 아방스 2009.02.28 920
1650 캐:생성기(VX/Ace) 캐릭터칩67개 (제가 올린거 전부) 1 file Aakerse 2009.01.25 920
1649 아:VX/Ace 아템 7 file black cat 2008.08.25 920
1648 인터페이스 메세지 배경 그래픽 1 file 아방스 2008.01.23 920
1647 몬:XP/VX/Ace 위치 5 file 걸인소년 2008.03.17 919
1646 얼:2000/2003 각종 인간들 2 file 괴도키드 2009.07.12 918
1645 맵타일 교회 2 file 괴도키드 2009.01.09 918
1644 아:XP Ak-47 5 file 강현문 2010.03.31 918
1643 캐:생성기(VX/Ace) 캐릭터... file 씁쓸한 인생 2009.12.07 917
1642 캐:XP DJ뼈대 4 file 아템 2008.06.09 917
1641 캐:XP 작은사이즈의얼음 10 file 아템 2008.04.13 917
1640 몬:XP/VX/Ace 야만女 4 file 걸인소년 2008.03.23 915
Board Pagination Prev 1 ... 152 153 154 155 156 157 158 159 160 161 ... 239 Next
/ 239