Equinox80's Forum Posts

  • Oh haha 1 second, sorry. I'll get a screen of what I mean. You should have an "Add Action" setting p1 to something. I'll respond in a second.

    Edit: This is what I mean:

    On start of layout (or any time you want) make it so that it sets the variable p1 to round(random(1,10)).

    And then you have it check to see what p1 is and set the position. The way you had it wasn't working because it wasn't setting the variable, it was checking it.

    Sorry, I should have realized that sooner.

  • It should be random(1,10) a comma not a - Let me know how it goes.

    Edit: Also, as I observe I notice that random doesn't do 1,2,3 it is odd numbers like 1.123232, 2.2325252. So I personally like to round my randoms. Such as Round(Random(1,10)).

    Edit 2: Also, as far as the image goes, you could also change the image itself (Have different images in different animation frames). So instead of Set position, you could set frame based on the number If you need help just let me know.

  • You do not have permission to view this post

  • I wish I had something to test it myself, but I would try something along the lines of:

    For each: slotTile

    slotTile > Animation: onFinished

    Edit: That is assuming that I understood correctly. You want it to play the sound when the tile's "animation" stops moving right?

  • Thanks for your answer! And sorry for the long delay in the answer.

    It seems my answer does not truly exist, there is no way to actually organize it, it seems.

    However that is okay, because I have seen a fellow dev (you)'s way of doing things. I learn by examining others, and seeing how you yourself have done things has helped. I have the combat system done (Prototype obviously, it's never truly done). I have not done any items yet, instead I have statically made the damage based upon a game developer's own logic (For example, physical damage is based upon (attacker’s ATK + rand(minAtk, maxAtk)) – (defender’s DEF + rand(minDef, maxDef))). A tutorial on that helped me out a lot. I only used the formula's as I did not like the rest of it.

    It was very funny, it took me a long time of frustration trying to make the radius for npc detection before just doing it my own way (his was based upon x and y, and I could not get it right for some reason). Then I realized that I could just make an invisible "MobRadius" square sprite, and have the npc activate the chasing mechanism if ally is overlapping Mobradius As soon as I did that, I realized how to do it with X and Y haha. Too bad, I'm doing it my way. I have the MobRadius square sprite set size X and Y based upon Mob.Radius.

    The whole families thing was annoying me (AllyAnimations being the sprite, AllyAnimation being the Family), so I decided to give all Families a Fam at the beginning (FamMobAnimations and FamMob), ran into too many naming issues. Still organizing my code, learning functions, groups, comments, etc.

    What I want to do next is figure out how to do a ForEach FamMob so that I can just drop and drag a bunch of mobs and it places their Animation sprite to whatever one it belongs to. Currently they all just go to the first FamMob there is, and not individually.

    I made the game screen (Where the player moves, talks to npcs, etc), on collision with a mob he enters the BattleScreen, with options using Up and Down or Mouse clicking on the option. After the battle he goes to a BattleVictory screen where his stats/experience/items etc are applied accordingly, and then presses enter to proceed to the GameScreen again. I had a difficult time figuring out how to make the player apply his stats because the player was not carried over (Could not do FamAlly.XP + Battle_XP). So what I did was make a whole set of global variables for the player (Global number Player_HP, Player_SP, Player_XP) and have the battle add to those, then set the FamAlly's (Player right now, eventually a whole party of Allies) variables to the global variable. Works this way, doesn't feel right but whatever works. Eventually I'll have to make a Player1_HP, Player2_HP, and so on.

    I haven't played around with arrays yet though, could you please tell me what they are typically used for? Since I never used them yet for now I was just going to make global variables for things like (Item_Shortsword_Obtained, Item_Shortsword_Quantity, Item_Shortsword_OwnedBy, Item_Shortsword_Equipped, Item_Shortsword_EquippedBy etc).

    And before I go on and on more, I shall click Submit lol. I love Game Development but really it's just for pure fun

  • Well yes that partially answers my question. I was just wondering how to organize my time better while making this, for example: What should I start first.

    I can't start the battle system yet, because I need items and equipment/characters for that.

    I would start out on items, but then I need to first start out on stats and that. I got the base structure for my stats done so far, so I am thinking of working on items.

    Thanks though, it does answer some of it.

  • Hello, not sure where to post this however it is related to C2 and a beginner question.

    I am trying to make a simple RPG such as RPG Maker VX Ace/XP (Horrible thing severely limits the resolution, I want it fullscreen 1920x1080 but also scale to other resolutions and Rpg Maker does not do that) but with C2, and a different feature set.

    However I am having a hard to figuring out which features to add first. I want to develop the character movement (done), with enemy AI to move around the map randomly, and then send the player to a map to battle with. Obviously that is not the full game but that is my first step right now. However I do not know where to start, I need to make the inventory/menu system, battle system, item system, and so on. How do I know what I start on first? Just make them as I come across them? I guess the main thing I need here is to know how to manage the Game Development process.

    Thanks in advance!

  • My other map generator is currently disabled while I was testing the new beta Tilemap plugin. It's not doing anything.

  • Link is here: dl.dropboxusercontent.com/u/73299017/capx/ORPG.capx

    Thanks a lot for the help.

  • Maybe I am not understanding the use of Tilemaps correctly, then again it did just get released. However should we not be able to use it so that multiple layer can go over top of each other on the same Tilemap? For example I tried to place a tree with a transparent background on the Tilemap over grass but the background turned white, and removed the grass.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Ah okay. Figured I'd give it to people now.

    Haven't tried it beyond 1600x1600px layout. No load time through that so far (50x50 tiles going at 32x32 pixels) and 3 tilesets 512x512, 512,512, 512x384.

    Although a Scirra Construct 2 TileMap editor, that works with RPG Maker, or at least a customizable (would be better for compatibility) Map Editor would be AWESOME.

    Edit: Then again not everybody has an intel i7 processor and 16 gb ddr3 ram. So longer load times I suppose on other devices.

  • For multiple Tilesets in 1 Sprite:

    In order to do this I made the TileSet name in Tiled Map Editor = to an animation name in the tile itself. And then proceed to set the animation = to the TMXImporter.TilesetName and animation frame = to TMXImporter.Frame.

    For example in the animation I have it named Outside_B and in Tiled the tileset is named Outside_B.

    After that my code ends up like this:

    <img src="https://dl.dropboxusercontent.com/u/73299017/Various/TMXImporter-MultipleTilesets.png" border="0" />

    The code is just a test, not my actual code as I am still developing the Map Generation as of now, paused everything for a while lol.

    That simple :)

    I recommend this be added to the post if you find this efficient as this will help ALOT of people trying to use Tiled Map Editor making RMVX styled games.

    NOTE: I am using Pacman tutorial for movement hence the Spawn [] Solid on layer Self.LayerNumber (This is not needed, just what I am doing).

  • Is there a reason for that? Had to remove it from steam. I own it for PC however I am not also buying it for Steam, I see no reason for two version of the same product.

  • I didn't know that, only what was in the tutorial, I haven't did much with Ajax except load NPC templates from an xml file. I'll try to do this using Ajax, thanks :)

    Edit: Okay! Here is the capx:

    dl.dropbox.com/u/73299017/capx/MYOJRPG.capx

    Rex - I got it working, is this what I should do?

    Ashley, happened again just from opening the large box, it's okay now since I learned how to put it in a file, but just incase I believe that a scrollbar should be added. It's best not to put so much text in, but I feel it's still a bug and I think it should be fixed :D

    Also, within the last two version I have noticed that I can't properly close C2 :/ It closes the project, then stays on the screen with a blank canvas, in order to close it I have to crash it by pressing Ctrl (Which I found out when I went to press Ctrl+Alt+Delete). Could just be my computer acting up but I do not know as nothing else is affected.

    ------------------
    System Information
    ------------------
    Time of this report: 4/2/2013, 23:27:31
           Machine name: JESSE-ROG
       Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130104-1431)
               Language: English (Regional Setting: English)
    System Manufacturer: ASUSTeK Computer Inc.
           System Model: G74Sx
                   BIOS: BIOS Date: 09/23/11 16:59:53 Ver: 04.06.03
              Processor: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz (8 CPUs), ~2.0GHz
                 Memory: 16384MB RAM
    Available OS Memory: 16362MB RAM
              Page File: 5346MB used, 27374MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: 96 DPI (100 percent)
     System DPI Setting: 120 DPI (125 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 32bit Unicode
    
    ------------
    DxDiag Notes
    ------------
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
              Input Tab: No problems found.
    
    --------------------
    DirectX Debug Levels
    --------------------
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    
    ---------------
    Display Devices
    ---------------
              Card name: NVIDIA GeForce GTX 560M   
           Manufacturer: NVIDIA
              Chip type: GeForce GTX 560M
               DAC type: Integrated RAMDAC
             Device Key: Enum\PCI\VEN_10DE&DEV_1251&SUBSYS_204A1043&REV_A1
         Display Memory: 4095 MB
       Dedicated Memory: 3019 MB
          Shared Memory: 1076 MB
           Current Mode: 1920 x 1080 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: CMO1726
            Native Mode: 1920 x 1080(p) (60.020Hz)
            Output Type: Internal
            Driver Name: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Driver File Version: 9.18.0013.1407 (English)
         Driver Version: 9.18.13.1407
            DDI Version: 11
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 2/9/2013 23:25:27, 17987192 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp: 
      Device Identifier: {D7B71E3E-5111-11CF-8C76-47001CC2C435}
              Vendor ID: 0x10DE
              Device ID: 0x1251
              SubSys ID: 0x204A1043
            Revision ID: 0x00A1
     Driver Strong Name: oem86.inf:NVIDIA_SetA_Devices.NTamd64.6.1:Section193:9.18.13.1407:pci\ven_10de&dev_1251&subsys_204a1043
         Rank Of Driver: 00E00001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C 
       Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive 
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY 
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch 
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    
    -------------
    Sound Devices
    -------------
                Description: Speakers (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_10431B33&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6564 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/6/2012 18:41:14, 4740456 bytes
                Other Files: 
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    
                Description: Realtek Digital Output (Realtek High Definition Audio)
     Default Sound Playback: No
     Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_10431B33&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6564 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 2/6/2012 18:41:14, 4740456 bytes
                Other Files: 
            Driver Provider: Realtek Semiconductor Corp.
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
     Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
     EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    
    ---------------------
    Sound Capture Devices
    ---------------------
                Description: Stereo Mix (Realtek High Definition Audio)
      Default Sound Capture: Yes
      Default Voice Capture: No
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6564 (English)
          Driver Attributes: Final Retail
              Date and Size: 2/6/2012 18:41:14, 4740456 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    
                Description: Microphone (ManyCam Virtual Microphone)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: mcaudrv_x64.sys
             Driver Version: 3.01.0000.0000 (English)
          Driver Attributes: Final Retail
              Date and Size: 10/10/2012 23:08:08, 29696 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    
                Description: Microphone (Realtek High Definition Audio)
      Default Sound Capture: No
      Default Voice Capture: Yes
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6564 (English)
          Driver Attributes: Final Retail
              Date and Size: 2/6/2012 18:41:14, 4740456 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    
    -------------------
    DirectInput Devices
    -------------------
          Device Name: Mouse
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
    
          Device Name: Keyboard
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
    
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    
          Device Name: USB Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    
          Device Name: Cordless Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    
          Device Name: Cordless Receiver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC52B
            FF Driver: n/a
    
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
    
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
    
          Device Name: Wacom Virtual Hid Driver
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x1001
            FF Driver: n/a
    
    Poll w/ Interrupt: No
    
    -----------
    USB Devices
    -----------
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x1C2D
    | Matching Device ID: usb\root_hub20
    | Service: usbhub
    | 
    +-+ Generic USB Hub
    | | Vendor/Product ID: 0x8087, 0x0024
    | | Location: Port_#0001.Hub_#0001
    | | Matching Device ID: usb\class_09
    | | Service: usbhub
    
    ----------------
    Gameport Devices
    ----------------
    
    ------------
    PS/2 Devices
    ------------
    + Keyboard Device Filter
    | Matching Device ID: *pnp0303
    | Upper Filters: kbfiltr
    | Service: i8042prt
    | 
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | 
    + HID Keyboard Device
    | Vendor/Product ID: 0x8888, 0x0208
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | 
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | 
    + Finger Sensing Pad
    | Matching Device ID: *stlc141
    | Upper Filters: fspad_win764
    | Service: i8042prt
    | 
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | 
    + Logitech HID-compliant Unifying mouse
    | Vendor/Product ID: 0x046D, 0xC52B
    | Matching Device ID: hid\vid_046d&class_0004
    | Upper Filters: LMouFilt
    | Lower Filters: LHidFilt
    | Service: mouhid
    | 
    + HID-compliant mouse
    | Vendor/Product ID: 0x8888, 0x0108
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | 
    + Wacom Mouse
    | Matching Device ID: hid\wacomvirtualhid&col03
    | Upper Filters: wacommousefilter
    | Service: mouhid
    | 
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    
    ------------------------
    Disk & DVD/CD-ROM Drives
    ------------------------
          Drive: C:
     Free Space: 22.2 GB
    Total Space: 190.8 GB
    File System: NTFS
          Model: ST9500423AS
    
          Drive: D:
     Free Space: 18.7 GB
    Total Space: 260.6 GB
    File System: NTFS
          Model: ST9500423AS
    
          Drive: E:
     Free Space: 13.0 GB
    Total Space: 238.5 GB
    File System: NTFS
          Model: ST9500423AS
    
          Drive: F:
     Free Space: 19.1 GB
    Total Space: 238.5 GB
    File System: NTFS
          Model: ST9500423AS
    
          Drive: H:
          Model: MagicISO Virtual DVD-ROM0000
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    
          Drive: G:
          Model: HL-DT-ST DVDRAM GT34N
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
    
    --------------
    System Devices
    --------------
         Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C2D
    Device ID: PCI\VEN_8086&DEV_1C2D&SUBSYS_13071043&REV_05\3&11583659&2&D0
       Driver: n/a
    
         Name: Intel(R) Mobile Express Chipset SATA AHCI Controller
    Device ID: PCI\VEN_8086&DEV_1C03&SUBSYS_13071043&REV_05\3&11583659&2&FA
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family USB Enhanced Host Controller - 1C26
    Device ID: PCI\VEN_8086&DEV_1C26&SUBSYS_13071043&REV_05\3&11583659&2&E8
       Driver: n/a
    
         Name: 2nd generation Intel? Core? processor family DRAM Controller - 0104
    Device ID: PCI\VEN_8086&DEV_0104&SUBSYS_13071043&REV_09\3&11583659&2&00
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family SMBus Controller - 1C22
    Device ID: PCI\VEN_8086&DEV_1C22&SUBSYS_13071043&REV_05\3&11583659&2&FB
       Driver: n/a
    
         Name: 2nd generation Intel? Core? processor family PCI Express Controller - 0101
    Device ID: PCI\VEN_8086&DEV_0101&SUBSYS_13071043&REV_09\3&11583659&2&08
       Driver: n/a
    
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_8086&DEV_1C20&SUBSYS_1B331043&REV_05\3&11583659&2&D8
       Driver: n/a
    
         Name: Fresco Logic xHCI (USB3) Controller FL1000 Series
    Device ID: PCI\VEN_1B73&DEV_1000&SUBSYS_10391043&REV_04\4&20298E&0&00E3
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 6 - 1C1A
    Device ID: PCI\VEN_8086&DEV_1C1A&SUBSYS_13071043&REV_B5\3&11583659&2&E5
       Driver: n/a
    
         Name: Qualcomm Atheros AR9002WB-1NG Wireless Network Adapter
    Device ID: PCI\VEN_168C&DEV_002B&SUBSYS_2C371A3B&REV_01\001517FFFF24141200
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 4 - 1C16
    Device ID: PCI\VEN_8086&DEV_1C16&SUBSYS_13071043&REV_B5\3&11583659&2&E3
       Driver: n/a
    
         Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_16D51043&REV_06\34356928684CE00000
       Driver: n/a
    
         Name: Intel(R) HM65 Express Chipset Family LPC Interface Controller - 1C49
    Device ID: PCI\VEN_8086&DEV_1C49&SUBSYS_13071043&REV_05\3&11583659&2&F8
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 2 - 1C12
    Device ID: PCI\VEN_8086&DEV_1C12&SUBSYS_13071043&REV_B5\3&11583659&2&E1
       Driver: n/a
    
         Name: NVIDIA GeForce GTX 560M   
    Device ID: PCI\VEN_10DE&DEV_1251&SUBSYS_204A1043&REV_A1\4&24DEE14F&0&0008
       Driver: n/a
    
         Name: Intel(R) Management Engine Interface 
    Device ID: PCI\VEN_8086&DEV_1C3A&SUBSYS_13071043&REV_04\3&11583659&2&B0
       Driver: n/a
    
         Name: Intel(R) 6 Series/C200 Series Chipset Family PCI Express Root Port 1 - 1C10
    Device ID: PCI\VEN_8086&DEV_1C10&SUBSYS_13071043&REV_B5\3&11583659&2&E0
       Driver: n/a
    
         Name: High Definition Audio Controller
    Device ID: PCI\VEN_10DE&DEV_0BEE&SUBSYS_204A1043&REV_A1\4&24DEE14F&0&0108
       Driver: n/a
    
    ------------------
    DirectShow Filters
    ------------------
    
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7601.17514
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7601.17514
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    G2M Session Decoder,0x00600000,1,1,G2M.dll,5.01.0000.0880
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7601.17514
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7601.17514
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    DivX Decoder Filter,0x00800000,1,1,divxdec.ax,5.02.0001.1335
    VP6 Decompressor,0x00800000,1,1,vp6dec.ax,6.04.0002.0000
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.02.4436.0000
    Xiph.Org Vorbis Decoder,0x00600000,1,1,dsfVorbisDecoder.dll,
    WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,15.04.3555.0308
    Record Queue,0x00200000,1,1,WLXVAFilt.dll,15.04.3555.0308
    WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3555.0308
    WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,15.04.3555.0308
    WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,15.04.3555.0308
    WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,15.04.3555.0308
    WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,15.04.3555.0308
    CoreVorbis Audio Decoder,0x00800000,1,1,CoreVorbis.ax,1.00.0000.0002
    CyberLink MPEG Video Encoder,0x00200000,1,1,P2GVidEnc.ax,6.00.0001.2226
    ROXIO MKV Source,0x00200000,0,0,RoxMkvSplitter.ax,8.00.0000.0047
    Matroska Source,0x00600000,0,0,MatroskaSplitter.ax,1.00.0002.0006
    ffdshow DXVA Video Decoder,0xff800002,2,1,ffdshow.ax,1.02.4436.0000
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.02.4436.0000
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    ffdshow Audio Decoder,0xff800001,1,1,ffdshow.ax,1.02.4436.0000
    CyberLink MP3/WAV Wrapper,0x00200000,1,1,P2GMP3Wrap.ax,3.07.0000.1314
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7601.17514
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    MainConcept MPEG Demultiplexer,0x00800100,1,2,mc_demux_mp2_ds.ax,8.05.0000.53657
    Matroska Splitter,0x00600000,1,1,MatroskaSplitter.ax,1.00.0002.0006
    CyberLink AudioCD Filter,0x00200000,0,1,P2GAudioCD.ax,5.00.0000.1321
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7601.17713
    LAV Splitter,0x00400001,1,1,LAVSplitter.ax,0.50.0001.0000
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7601.17514
    MainConcept AAC Decoder,0x00400000,1,1,mc_dec_aac_ds.ax,8.05.0000.53657
    Video Memory Render Filter,0x00200000,1,0,VideoMemoryRenderFilter.ax,
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7601.17514
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7601.17713
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    CyberMedia FLV Decoder,0x01000000,0,2,viscomflvdec.dll,9.00.0000.0000
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Indeo? video 5.10 Compression Filter,0x00200000,1,1,Ir50_32.dll,5.2562.0015.0055
    CyberLink Editing Service 3.0 (Source),0x00200000,0,2,P2GEdtKrn.dll,3.00.0000.2911
    Viscomsoft QuickTime Source Filter,0x00200000,0,1,viscomquickde.dll,4.00.0019.0000
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,12.00.9200.16426
    SmartLogon_Effect,0x00200000,1,1,face_filter.ax,1.00.0005.0001
    Sonic HD Demuxer,0x005ffffe,1,2,SonicHDDemuxer.dll,5.00.0000.0157
    CyberMedia FLV Encoder,0x00200000,2,0,viscomflashenc.dll,1.00.0000.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    MainConcept MP4 Demultiplexer,0x00400000,1,2,,
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7601.17528
    ASUS Virtual Camera,0x00200000,0,1,virtualCamera.ax,
    MainConcept Layer II Audio Decoder,0x00600000,1,1,mc_dec_mpa_ds.ax,8.05.0000.53657
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Indeo? video 5.10 Decompression Filter,0x00640000,1,1,Ir50_32.dll,5.2562.0015.0055
    DivX for Blizzard Decoder Filter,0x00800000,1,1,blizzard.ax,5.00.0002.0000
    Track2Filter,0x00200000,0,0,Track2Filter.dll,10.00.0000.0000
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7601.17713
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    P2G Video Decoder,0x00200000,2,3,P2GVSD.ax,6.00.0000.2310
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.09.0000.0311
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7601.17528
    Internal LMRT Renderer,0x00800001,1,0,LMRTREND.dll,6.00.0004.0827
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7601.17514
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    VISCOM Overlay Text Filter,0x00200000,1,1,viscomoverlaytran.dll,
    MPC - FLV Splitter (Gabest),0x00600000,1,1,FLVSplitter.ax,1.03.2099.0000
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    CyberLink Video Regulator,0x00200000,1,1,P2GRGL.ax,2.00.0000.3328
    P2G Audio Decoder,0x00200000,1,1,P2GAud.ax,6.01.0000.3601
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7601.17713
    WavPack Audio Decoder,0x00600000,1,1,WavPackDSDecoder.ax,1.00.0003.0431
    ROXIO MKV Splitter,0x00200000,1,1,RoxMkvSplitter.ax,8.00.0000.0047
    ROXIO FLV Splitter,0x00200000,1,1,RoxFlvSplitter.ax,13.03.0001.0050
    TrueMotion 2.0 Decompressor,0x00600001,1,1,tm20dec.ax,1.00.0000.0001
    Viscomsoft MPEG Video Decoder,0x00800000,1,1,viscommpgdec.dll,1.00.0000.0003
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7601.17514
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7601.17713
    CoreFLAC Audio Source,0x00600000,0,0,CoreFLACDecoder.ax,0.04.0000.0046
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    CyberLink Video Effect,0x00200000,1,1,P2GVidFx.ax,1.00.0000.2030
    Haali Media Splitter,0x00800001,0,1,splitter.ax,1.11.0288.0000
    Haali Media Splitter (AR),0x00400000,1,1,splitter.ax,1.11.0288.0000
    MainConcept (Consumer) AVC/H.264 Video Decoder,0x00400000,1,2,,
    Xiph.Org Vorbis Encoder,0x00200000,1,1,dsfVorbisEncoder.dll,
    CoreFLAC Audio Decoder,0x00600000,1,1,CoreFLACDecoder.ax,0.04.0000.0046
    CyberLink Audio Noise Reduction,0x00200000,1,1,P2GAuNRWrapper.ax,2.00.0000.1017
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7601.17514
    CyberLink Load Image Filter,0x00200000,0,1,CLImage.ax,3.00.0000.2307
    CyberLink MPEG-2 Splitter,0x00200000,1,2,P2Gm2spliter.ax,2.04.0000.2301
    XviD MPEG-4 Video Decoder,0x00800000,1,1,xvid.ax,
    CyberLink Audio VolumeBooster,0x00200000,1,1,P2GVB.ax,1.00.0000.1008
    MainConcept MPEG Push Demultiplexer,0x00200000,1,2,mc_demuxpush_mp2_ds.ax,8.05.0000.53657
    File Source (Monkey Audio),0x00400000,0,1,MonkeySource.ax,
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    ASUS SplitVCam Pump,0x00200000,0,1,virtualCamera.ax,
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7601.17713
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7601.17528
    Cyberlink Dump Dispatch Filter,0x00200000,1,0,P2GDumpDispatch.ax,1.02.0001.2412
    Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.06.7601.17835
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7601.17713
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7601.17713
    CyberLink Audio Resampler,0x00200000,1,1,P2GAuRsmpl.ax,1.00.0000.2625
    Haali Video Renderer,0x00200000,1,0,dxr.dll,
    File Writer,0x00200000,1,0,WLXVAFilt.dll,15.04.3555.0308
    DivX Decoder Filter,0xff800000,1,1,divxdec.ax,5.02.0001.1335
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7601.17514
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7601.17514
    CyberLink MPEG-1 Splitter,0x00200000,1,2,P2Gm1spliter.ax,2.04.0000.2301
    ASUS SplitVCam Renderer,0x00200000,1,0,splitvcamrenderer.ax,
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7601.17514
    File writer,0x00200000,1,0,qcap.dll,6.06.7601.17514
    RadLight MPC DirectShow Filter,0x00600000,0,1,MPCDec.ax,1.00.0000.0003
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7601.17514
    Bandisoft MPEG-1 Video Decoder,0xff800001,1,1,bdfilters.dll,1.00.0004.0014
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7601.17514
    Cyberlink File Reader (Async.),0x00200000,0,1,P2GReader.ax,3.00.0000.3016
    CyberLink M2V Writer,0x00200000,1,0,P2GM2VWriter.ax,1.03.0000.2017
    Haali Simple Media Splitter,0x00200000,0,1,splitter.ax,1.11.0288.0000
    MainConcept Dolby Digital Audio Decoder,0x00600000,1,1,mc_dec_dd_ds.ax,7.04.0000.47388
    DirectVobSub,0x00200000,2,1,vsfilter.dll,1.06.0002.4485
    Viscomsoft MPEG Audio Decoder,0x00800000,1,1,viscommpgadec.dll,1.00.0000.0003
    Cyberlink Dump Filter,0x00200000,1,0,P2GDump.ax,3.00.0000.7122
    CyberLink Video Stabilizer,0x00200000,1,1,P2GVideoStabilizer.ax,1.00.0000.1017
    Image Effects,0x00200000,2,1,viscomaudiodata.dll,9.00.0000.0000
    MainConcept AVC/H.264 Video Decoder,0x00800001,1,2,mc_dec_avc_ds.ax,8.05.0000.53657
    Viscomsoft Mpeg Source,0x00800000,0,0,viscomsplitter.dll,1.00.0000.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.06.0002.4485
    ASUS Color Convert,0x00200000,1,1,RGBTran.ax,1.00.0000.0003
    CyberLink PCM Wrapper,0x00200000,1,1,P2GPCMEnc.ax,1.01.0000.0321
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7601.17835
    Overlay Mixer2,0x00200000,1,1,qdvd.dll,6.06.7601.17835
    CyberMedia Audio Encoder,0x00200000,1,0,viscomaudioencoder.dll,9.00.0000.0000
    Haali Matroska Muxer,0x00200000,1,0,splitter.ax,1.11.0288.0000
    Cutlist File Source,0x00200000,0,1,qcut.dll,6.00.0002.0902
    AC3Filter,0x40000000,1,1,ac3filter.ax,0.07.0000.0000
    AVI Draw,0x00600064,9,1,quartz.dll,6.06.7601.17713
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7601.17514
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7601.17514
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7601.17528
    MainConcept (Broadcast) AVC/H.264 Video Decoder,0x00800002,1,2,mc_bc_dec_avc_ds.ax,8.05.0000.53657
    ASUS Color Preview Filter,0x00200000,1,1,RGBTran.ax,1.00.0000.0003
    YUV Transform,0x00400000,1,1,YUVxfm.dll,2.00.0000.0004
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7601.17514
    Indeo? audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.02.4436.0000
    LAV Splitter Source,0x00400001,0,1,LAVSplitter.ax,0.50.0001.0000
    MainConcept MPEG-2 Video Decoder,0x00800001,2,2,mc_dec_mp2v_ds.ax,8.05.0000.53657
    URL StreamRenderer,0x00600000,1,0,LMRTREND.dll,6.00.0004.0827
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7601.17514
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7601.17514
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7601.17514
    IVF source filter,0x00600000,0,1,Ivfsrc.ax,5.10.0002.0051
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7601.17514
    MPC - FLV Source (Gabest),0x00600000,0,0,FLVSplitter.ax,1.03.2099.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7601.17528
    ASUS SplitVCam Relayer,0x00200000,1,0,virtualCamera.ax,
    CyberLink TimeStretch Filter (CES),0x00200000,1,1,P2Gauts.ax,1.00.0000.2212
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7601.17514
    Overlay Mixer,0x00200000,0,0,qdvd.dll,6.06.7601.17835
    CyberLink TL MPEG Splitter,0x00200000,1,2,P2GTLMSplter.ax,3.02.0000.2219
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7601.17713
    CyberLink MPEG Muxer,0x00200000,2,1,P2GMpgMux.ax,5.01.0000.1723
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7601.17713
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7601.17713
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7601.17713
    Track1Filter,0x00200000,0,0,Track1Filter.dll,10.00.0000.0000
    TechSmith File Source,0x00400000,0,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith SWF Writer,0x00200000,2,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith WMFSDK Writer,0x00200000,1,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Simple PIP,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    ImageSource,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TitleSource,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Time Adjust,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Splitter Filter,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Frame Skip Filter,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Perf Skip Filter,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ZoomPIP Filter,0x00200000,2,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith PushVMR Source,0x00200000,0,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith PushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith PushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith SimplePushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Wave Dest,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Overlay,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Wave Buffer,0x00200000,1,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ForceColor 8,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ForceColor 555,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ForceColor 565,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ForceColor 24,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith ForceColor 32,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Force Color32A,0x00200000,0,0,CamtasiaFilters.dll,7.01.0001.1785
    SSFileWriter,0x00200000,1,0,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Frame Rate Tuner,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Camera Adjust,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    Techsmith Quicktime MOV Source,0x00600000,0,2,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Sound Effects Filter,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Flv Key Frame Setter,0x00200000,1,1,CamtasiaFilters.dll,7.01.0001.1785
    TechSmith Floating Point Wave Filter,0x003fffff,1,1,CamtasiaFilters.dll,7.01.0001.1785
    WavPack Audio Splitter,0x00600000,1,1,WavPackDSSplitter.ax,1.00.0003.0277
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.02.4436.0000
    Viscomsoft Mpeg Splitter,0x00800000,1,1,viscomsplitter.dll,1.00.0000.0000
    MainConcept Stream Parser,0x00400000,1,2,mc_demux_mp2_ds.ax,8.05.0000.53657
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7601.17528
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7601.17514
    Bandisoft MPEG-1 Audio Decoder,0xff800001,1,1,bdfilters.dll,1.00.0004.0014
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7601.17713
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7601.17713
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7601.17713
    P2G Video Regulator,0x00200000,1,1,P2GResample.ax,2.05.0000.1818
    LAV Audio Decoder,0x00800003,1,1,LAVAudio.ax,0.50.0001.0000
    P2G Audio Encoder,0x00200000,2,0,P2GAudEnc.ax,2.00.0000.4815
    LAME Audio Encoder,0x00100000,2,1,lame_dshow.ax,1.00.0054.50801
    WebM Muxer Filter,0x00200000,2,1,Webmmux.dll,0.09.0012.0000
    WebM VP8 Decoder Filter,0x00600000,1,1,vp8decoder.dll,0.09.0012.0000
    WebM VP8 Encoder Filter,0x00200000,1,1,vp8encoder.dll,0.09.0012.0000
    WebM Source Filter,0x00600000,0,1,webmsource.dll,0.09.0012.0000
    WebM Splitter Filter,0x00600000,1,1,webmsplit.dll,0.09.0012.0000
    LAV Video Decoder,0x00800003,1,1,LAVVideo.ax,0.50.0001.0000
    Haali Video Sink,0x00200000,1,0,splitter.ax,1.11.0288.0000
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7601.17514
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7601.17669
    Sonic MP4 Demultiplexer,0x00200000,1,2,roxio86_demux_mp4_ds.ax,8.05.0000.28926
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7601.17713
    CyberLink MPEG Decoder,0x00200000,2,3,P2GMVD.ax,5.00.0000.0929
    IL FL Studio DXi,0x00200000,1,1,FLSTUD~2.DLL,1.00.0013.0000
    Indeo? video 4.4 Decompression Filter,0x00640000,1,1,Ir41_32.ax,4.51.0016.0003
    IL Multi FL Studio DXi,0x00200000,1,1,FLSTUD~1.DLL,1.00.0013.0000
    iZotope Vocal Enhancement,0x00200000,1,1,iZotope_VocalEnhancement.dll,1.00.0000.0024
    iZotope Consumer Restoration,0x00200000,1,1,iZotope_ConsumerRestoration.dll,1.00.0000.0024
    Indeo? video 4.4 Compression Filter,0x00200000,1,1,Ir41_32.ax,4.51.0016.0003
    
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7601.17514
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.02.4436.0000
    Indeo? video 5.10 Compression Filter,0x00100000,1,1,Ir50_32.dll,5.2562.0015.0055
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7601.17713
    WebM VP8 Encoder Filter,0x00200000,1,1,vp8encoder.dll,0.09.0012.0000
    CamStudio Lossless Codec v1.4,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.06.7601.17514
    DivX? 5.2.1 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Fraps Video Decompressor,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Huffyuv v2.1.1 - CCESP Patch v0.2.5,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel Indeo? Video 4.5,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Indeo? video 5.10,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Intel IYUV codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Bandi MJPEG Video Decoder,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft MPEG-4 Video Codec V2,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft MPEG-4 Video Codec V3,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Bandi MPEG-1 Video Decoder,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft MPEG-4 Video Codec V1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft RLE,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Video 1,0x00200000,1,1,qcap.dll,6.06.7601.17514
    TechSmith Screen Capture Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    VP31? Compressor,0x00200000,1,1,qcap.dll,6.06.7601.17514
    VP60? Simple Profile ,0x00200000,1,1,qcap.dll,6.06.7601.17514
    VP61? Advanced Profile,0x00200000,1,1,qcap.dll,6.06.7601.17514
    VP62? Heightened Sharpness Profile,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Microsoft Windows Media Video 9,0x00200000,1,1,qcap.dll,6.06.7601.17514
    Xfire Video Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    XviD MPEG-4 Codec,0x00200000,1,1,qcap.dll,6.06.7601.17514
    
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    Xiph.Org Vorbis Encoder,0x00200000,1,1,dsfVorbisEncoder.dll,
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    PCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode1),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode2),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode3),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode1+),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode2+),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Ogg Vorbis (mode3+),0x00200000,1,1,quartz.dll,6.06.7601.17713
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7601.17713
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7601.17713
    Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MP2,0x00200000,1,1,quartz.dll,6.06.7601.17713
    AC-3 ACM Decompressor,0x00200000,1,1,quartz.dll,6.06.7601.17713
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7601.17713
    
    Audio Capture Sources:
    Stereo Mix (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Microphone (ManyCam Virtual Mic,0x00200000,0,0,qcap.dll,6.06.7601.17514
    Microphone (Realtek High Defini,0x00200000,0,0,qcap.dll,6.06.7601.17514
    
    3ivx Filters:
    3ivx D4 Audio Decoder,0x00600000,1,1,3ivxDSAudioDecoder.ax,4.05.0001.0030
    3ivx D4 Media Muxer,0x00200000,1,1,3ivxDSMediaMux.ax,4.05.0001.0030
    3ivx D4 Media Splitter,0x00800000,1,1,3ivxDSMediaSplitter.ax,4.05.0001.0030
    3ivx D4 Video Decoder,0x00800000,1,1,3ivxDSDecoder.ax,4.05.0001.0030
    3ivx D4 Video Encoder,0x00100000,1,1,3ivxDSEncoder.ax,4.05.0001.0030
    
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7601.17528
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7601.17528
    
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7601.17713
    
    WDM Streaming Capture Devices:
    Mic in at front panel (black),0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Mic input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HD Audio Stereo input,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ManyCam Virtual Webcam,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    ManyCam Wave,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ASUS USB2.0 Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    
    WDM Streaming Rendering Devices:
    Realtek HD Audio output,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    Realtek HDA SPDIF Out,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ,0x00000000,0,0,,
    
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7601.17514
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7601.17514
    
    Video Capture Sources:
    ManyCam Virtual Webcam,0x00200000,1,2,ksproxy.ax,6.01.7601.17514
    ASUS USB2.0 Webcam,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    ASUS Virtual Camera,0x00200000,0,1,virtualCamera.ax,
    ManyCam Video Source,0x00200000,0,2,VideoSrcrtw.dll,3.01.0021.3991
    
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7601.17514
    
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7601.17669
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7601.17514
    
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7601.17708
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7601.17708
    
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink Converter,0x00200000,1,1,ksproxy.ax,6.01.7601.17514
    
    Audio Renderers:
    Speakers (Realtek High Definiti,0x00200000,1,0,quartz.dll,6.06.7601.17713
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7601.17713
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Realtek Digital Output (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    DirectSound: Speakers (Realtek High Definition Audio),0x00200000,1,0,quartz.dll,6.06.7601.17713
    Realtek Digital Output (Realtek,0x00200000,1,0,quartz.dll,6.06.7601.17713
    
    ---------------
    EVR Power Information
    ---------------
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality) 
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0
  • Well, it's ridiculous to paste such large amounts of text in that dialog anyway... a much better solution is to add it as a project file and AJAX request it!

    I would LOVE to have a file that contained the data, but TMXImporter contains only that option.

    Just figured I'd show this to you since you were curious about it before.

    Here is the capx file:

    dl.dropbox.com/u/73299017/capx/MYOJRPG.capx

    Not my most recent but it contains the dialogue button issue as long as you reproduce the steps.