외부 소재

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 228449
공지 인터페이스 그래픽 소재 게시판 이용 안내 11 습작 2012.07.05 259555
공지 인터페이스 【RM2k/2k3】각종 소재 모음 30 아방스 2008.01.25 206533
공지 인터페이스 【RMXP】통합 맵칩 155 아방스 2008.08.23 556334
공지 인터페이스 【RMXP】,【RMVX/Ace】캐릭터 생성 사이트 44 file 아방스 2008.12.02 297308
공지 인터페이스 【RMVX/Ace】타일세트 그래픽 규정 17 file 아방스 2008.01.22 279934
공지 인터페이스 【RMVX/Ace → RMXP】,【RM2k/2k3/XP → RMVX/Ace】캐릭터 소재 변환기 15 file 아방스 2008.01.21 232607
1660 VX/Ace Characters 노랑머리 / 수녀 / 경비병 / 왕 / 귀족 / 할머니 file 아방스 2009.01.10 1047
1659 캐:VX/Ace 네온사인 화살표 오브젝트 4 file Bunny_Boy 2014.12.08 1046
1658 캐:생성기(XP) 네로 카오스 [ MELTY BLOOD 대방출 ] 3 file 극사 2009.08.28 1046
1657 캐:VX/Ace 전사 file M.I 2009.05.04 1046
1656 얼:2000/2003 몬스터18 3 file 괴도키드 2009.02.02 1045
1655 얼:2000/2003 야마타노 오로이치 3 file 아템 2008.03.10 1045
1654 아:XP 사파엘 셋트아이콘 12 file 화이트독 2010.03.13 1045
1653 캐:생성기(XP) 티아라.. 5 file 리키도 2010.02.03 1045
1652 캐:XP 캐칩다방출 3 file ☆사스케☆ 2010.01.26 1045
1651 캐:XP 검은 내가 그렸다/.. 4 file 씁쓸한 인생 2010.01.08 1045
1650 캐:XP 낚시꾼. 23 file 할렘 2009.02.16 1045
1649 맵타일 드라큘라의 성 11 file 아템 2008.06.01 1043
1648 기타 제가 만든 타이틀입니다.,, 1 file 코스튬 2010.09.04 1043
1647 VX/Ace Characters 평범한 사람들 1 file Aakerse 2009.01.31 1043
1646 캐:2000/2003 ㄷㄷ;; 결국 대응칩을 만들었다..;; 3 file 아템 2008.05.28 1042
1645 아:자작소재 자작아이콘(8) 8 file 흰수염고래 2010.02.10 1042
1644 캐:XP 졸라맨2명 1 file 베드보이닉쿤 2011.02.06 1042
1643 캐:생성기(VX/Ace) 캐릭터칩 네번째 file Cracker 2010.02.25 1042
1642 원:VX/Ace 학원(분수대) 10 file 카르와푸딩의아틀리에 2009.06.18 1041
1641 캐:생성기(VX/Ace) 장군 1 file 바론아벨 2011.01.04 1040
Board Pagination Prev 1 ... 152 153 154 155 156 157 158 159 160 161 ... 239 Next
/ 239