Urgent Help Needed - Fatal Errors in my TD

CixxyZ

Active Member
Reaction score
7
24xfo94.jpg


211syvn.png


Been bugging me for like few months ... so much testing to no avail. So as a last resort im gonna post an unprotected ver of my TD so that someone might be able to figure out what is causing the fatal errors. It usually occurs after 20 min into the game when there are a lot of towers.

Will give a lot of credit if you can help!!

If you need to know anything about the map just ask here.

Thanks in advance.
 

Attachments

  • Alchemy TD.w3x
    287.8 KB · Views: 90

Sooda

Diversity enchants
Reaction score
318
In trigger 'Special Effect Destruction instant' local effect tempEffect is not set to null in the end of trigger. I might check and post more.

EDIT:
I think TempPoint offset by 200 leaks, store it to another TempPoint variable and remove it after use. Found in 'Water' trigger.
TempPoint offset by <value> creates new point, fix looks like 'set TempPoint2 = TempPoint offset by 200' and then use TempPoint2 in 'Unit Order to Cast Ability At Point'. When you are done with points remove leaks.

Found your crash cause, at least this makes your map unstable for sure:
JASS:
local unit udg_LocalUnit

DO NOT use hybrid globals/ locals! They crash your map. We got nice MUI GUI tutorials around tutorials repository, in my signature and on http://wiki.thehelper.net/wc3/MUI
pick one of these and fix your map.
 

CixxyZ

Active Member
Reaction score
7
Thanks, corrected that rep+. Though I don't think such a small thing would cause the fatal.
 

CixxyZ

Active Member
Reaction score
7
found this
tamisrah said:
Ability Connected:
- Chainlightning: end game crash
- orb effect + attack ground
- modified flamestrike interacting with non modified
- tooltip with invalid expression followed by atleast 63 characters
- spellbook inside spellbook
- morph, alternate destroyer form, avatar, metamorphosis: various bugs & errors

Triggers
- call GetWorldBounds on global initialization
- using a rect created upon init
- Player(n) 15<n or 0>n
- non existant array index
- handling null handles <- not confirmed
- ExecuteFunc on non-existant function
- non initialized event responses (GetExpiredTimer)
- doing stuff outside map bounds
- H2I + Addition
- BJDebugMsg(H2S(someHandle))
- infinte loop
- moving a destroyed lightning
- native -> codevar

Other:
- ColorCodes within Team Names <- not confirmed

When the Thor tower attacks, it creates 5 dummies and they cast a total of 5 chain lightnings simultaneously. Do you think it could be that?

edit. Tested in single player and made 10 thors... no crash.
 

CixxyZ

Active Member
Reaction score
7
Sooda, I've done what you asked. The Localunit was actually an attempt to try fix the fatals , lol. Gonna go test it and if it works I'd love you long time :D
BTW, are the triggers MUI enough?

Jesus4lyf, not using mac its just a skin.

Edit: It was working fine for over 20 min until I made a lot of Thanatos towers around the same spot. Then it crashed. Can you please go over that trigger and see what's wrong?
 

CixxyZ

Active Member
Reaction score
7
Trigger:
  • Thanatos Copy
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacking unit)) Equal to Thánatos Esper
    • Actions
      • For each (Integer A) from 1 to 5, do (Actions)
        • Loop - Actions
          • Set TempThanatosGroup[(Player number of (Owner of (Attacking unit)))] = (Units within 1000.00 of TempPoint matching (((Owner of (Matching unit)) Equal to Player 12 (Brown)) and (((Matching unit) is alive) Equal to True)))
          • Set TempPoint = (Position of (Attacking unit))
          • Unit - Create 1 dummy [thanatos] for (Owner of (Attacking unit)) at TempPoint facing Default building facing degrees
          • Set TempUnit = (Random unit from TempThanatosGroup[(Player number of (Owner of (Attacking unit)))])
          • Unit - Order (Last created unit) to Neutral Alchemist - Acid Bomb TempUnit
          • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
          • Unit - Cause (Attacking unit) to damage TempUnit, dealing 66.00 damage of attack type Spells and damage type Death
          • Set TempInteger = (Random integer number between 1 and 20)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • TempInteger Equal to 6
            • Then - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • ((Triggering unit) is A Hero) Equal to False
                • Then - Actions
                  • Special Effect - Create a special effect at (Position of TempUnit) using Objects\Spawnmodels\Undead\UndeadDissipate\UndeadDissipate.mdl
                  • Special Effect - Destroy (Last created special effect)
                  • Floating Text - Create floating text that reads Death!!! above TempUnit with Z offset 0.00, using font size 12.00, color (75.00%, 0.00%, 75.00%), and 0.00% transparency
                  • Floating Text - Set the velocity of (Last created floating text) to 96.00 towards 90.00 degrees
                  • Floating Text - Change (Last created floating text): Disable permanence
                  • Floating Text - Change the lifespan of (Last created floating text) to 1.50 seconds
                  • Floating Text - Change the fading age of (Last created floating text) to 0.00 seconds
                  • Unit - Kill TempUnit
                • Else - Actions
                  • Do nothing
            • Else - Actions
              • Do nothing
          • Unit Group - Remove TempUnit from TempThanatosGroup[(Player number of (Owner of (Attacking unit)))]
      • Custom script: call DestroyGroup (udg_TempThanatosGroup[GetConvertedPlayerId(GetOwningPlayer(GetAttacker()))])
      • Custom script: call RemoveLocation (udg_TempPoint)


I think it might be this trigger. I created 3 of these towers close by and it crashed. They are supposed to be a multiple shot tower that has a chance for instant death. Any one know if this trigger has bugs?
 

afisakov

You can change this now in User CP.
Reaction score
37
Code:
# Set TempThanatosGroup[(Player number of (Owner of (Attacking unit)))] = (Units within 1000.00 of TempPoint matching (((Owner of (Matching unit)) Equal to Player 12 (Brown)) and (((Matching unit) is alive) Equal to True)))
# Set TempPoint = (Position of (Attacking unit))
I don't think it is a good idea to use a TempPoint before you set it, that could cause some problems

Code:
Special Effect - Create a special effect at (Position of TempUnit) using Objects\Spawnmodels\Undead\UndeadDissipate\UndeadDissipate.mdl
Special Effect - Create a special effect at (Position of TempUnit) using Objects\Spawnmodels\Undead\UndeadDissipate\UndeadDissipate.mdl
pretty sure this (position of tempunit) is a point leak, and since it attacks all surrounding units at once they will build up fast.

btw, I noticed it says to
Cause (Attacking unit) to damage
and I am not sure if this would leak. I read over elmjir's tutorial and it didn't specify unit leaks of this sort.
 

Sooda

Diversity enchants
Reaction score
318
Afisakov is right, position of TempUnit leaks. It needs to be stored first and then used.

Code:
set TempPoint = Position of Unit
Do something with TempPoint
call RemoveLocation(udg_TempPoint)

Other than that which Afisakov wrote I don't see any problems.

EDIT:

In Tower Air trigger Removelocation needs to be inside loop end.

EDIT:
Played 40 minutes without critical error and then quited. I build <20 normal towers, 8 Thors (lightning) and ~4 Strong Wind Guys. Can it be your computer can not handle more than 5 Thors shooting lightning? You got new computer?
I tested it in single player, maybe that is reason why I did not got critical error. I suggest you to create testing builder who can directly build Thors and other strong towers. Start new game, build many Thors and examine what happens. Do same with other towers, new game and build only these towers. Observe and see will something occur.

I have 1.2 Ghz Intel Celeron, 756 MB SDRAM, 256 GDDR2 video memory (Club 3D, Gforce 6200AGP), Running Ubuntu 8.10 operating system. Ran Warcraft with Wine (latest).
 

CixxyZ

Active Member
Reaction score
7
Thanks so much both of you. Pointed out mistakes I overlooked. Gonna try to test when I've fixed them.

Sooda, it crashes in multiplayer and I haven't had a crash either in single player. When it fatals, people playing it also fatal - it's not just me.

If it still crashes, I'll do what you said about making only one type of tower.

My comp's about a year old heres the Dxdiag info

------------------
System Information
------------------
Time of this report: 7/10/2009, 19:32:55
Machine name: CLARENCE
Operating System: Windows XP Home Edition (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.090206-1234)
Language: English (Regional Setting: English)
System Manufacturer: Gigabyte Technology Co., Ltd.
System Model: P35C-DS3R
BIOS: Award Modular BIOS v6.00PG
Processor: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz (4 CPUs)
Memory: 3582MB RAM
Page File: 1566MB used, 3897MB available
Windows Dir: C:\WINDOWS
DirectX Version: DirectX 9.0c (4.09.0000.0904)
DX Setup Parameters: Not found
DxDiag Version: 5.03.2600.5512 32bit Unicode

------------
DxDiag Notes
------------
DirectX Files Tab: No problems found.
Display Tab 1: No problems found.
Sound Tab 1: No problems found.
Music Tab: No problems found.
Input Tab: No problems found.
Network Tab: No problems found.

--------------------
DirectX Debug Levels
--------------------
Direct3D: 0/4 (n/a)
DirectDraw: 0/4 (retail)
DirectInput: 0/5 (n/a)
DirectMusic: 0/5 (n/a)
DirectPlay: 0/9 (retail)
DirectSound: 0/5 (retail)
DirectShow: 0/6 (retail)

---------------
Display Devices
---------------
Card name: NVIDIA GeForce 8800 GTX
Manufacturer: NVIDIA
Chip type: GeForce 8800 GTX
DAC type: Integrated RAMDAC
Device Key: Enum\PCI\VEN_10DE&DEV_0191&SUBSYS_039C10DE&REV_A2
Display Memory: 768.0 MB
Current Mode: 1680 x 1050 (32 bit) (60Hz)
Monitor: Plug and Play Monitor
Monitor Max Res: 1600,1200
Driver Name: nv4_disp.dll
Driver Version: 6.14.0011.8122 (English)
DDI Version: 9 (or higher)
Driver Attributes: Final Retail
Driver Date/Size: 1/15/2009 07:19:00, 6168960 bytes
WHQL Logo'd: Yes
WHQL Date Stamp: n/a
VDD: n/a
Mini VDD: nv4_mini.sys
Mini VDD Date: 1/15/2009 07:19:00, 6301248 bytes
Device Identifier: {D7B71E3E-42D1-11CF-D46C-972303C2CB35}
Vendor ID: 0x10DE
Device ID: 0x0191
SubSys ID: 0x039C10DE
Revision ID: 0x00A2
Revision ID: 0x00A2
Video Accel: ModeMPEG2_A ModeMPEG2_B ModeMPEG2_C ModeMPEG2_D ModeWMV9_B ModeWMV9_A
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
{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,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,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)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,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)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
{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
Registry: OK
DDraw Status: Enabled
D3D Status: Enabled
AGP Status: Enabled
DDraw Test Result: Not run
D3D7 Test Result: Not run
D3D8 Test Result: Not run
D3D9 Test Result: Not run

-------------
Sound Devices
-------------
Description: Realtek HD Audio output
Default Sound Playback: Yes
Default Voice Playback: Yes
Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0885&SUBSYS_1458A002&REV_1001
Manufacturer ID: 1
Product ID: 100
Type: WDM
Driver Name: RtkHDAud.sys
Driver Version: 5.10.0000.5404 (English)
Driver Attributes: Final Retail
WHQL Logo'd: Yes
Date and Size: 4/23/2007 20:12:28, 4402176 bytes
Other Files:
Driver Provider: Realtek Semiconductor Corp.
HW Accel Level: Full
Cap Flags: 0xF5F
Min/Max Sample Rate: 8000, 192000
Static/Strm HW Mix Bufs: 33, 12
Static/Strm HW 3D Bufs: 33, 12
HW Memory: 0
Voice Management: No
EAX(tm) 2.0 Listen/Src: Yes, Yes
I3DL2(tm) Listen/Src: Yes, Yes
Sensaura(tm) ZoomFX(tm): No
Registry: OK
Sound Test Result: Not run

---------------------
Sound Capture Devices
---------------------
Description: Realtek HD Audio Input
Default Sound Capture: Yes
Default Voice Capture: Yes
Driver Name: RtkHDAud.sys
Driver Version: 5.10.0000.5404 (English)
Driver Attributes: Final Retail
Date and Size: 4/23/2007 20:12:28, 4402176 bytes
Cap Flags: 0x41
Format Flags: 0xFFF

Description: Realtek HD Digital input
Default Sound Capture: No
Default Voice Capture: No
Driver Name: RtkHDAud.sys
Driver Version: 5.10.0000.5404 (English)
Driver Attributes: Final Retail
Date and Size: 4/23/2007 20:12:28, 4402176 bytes
Cap Flags: 0x41
Format Flags: 0xFFF

-----------
DirectMusic
-----------
DLS Path: C:\WINDOWS\SYSTEM32\drivers\GM.DLS
DLS Version: 1.00.0016.0002
Acceleration: n/a
Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port
Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal
Registry: OK
Test Result: Not run

-------------------
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: PTZ-630
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x056A, 0x00B1
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

Device Name: Virtual Keyboard Driver
Attached: 1
Controller ID: 0x0
Vendor/Product ID: 0x056A, 0x2001
FF Driver: n/a

Poll w/ Interrupt: No
Registry: OK

-----------
USB Devices
-----------
+ USB Root Hub
| Vendor/Product ID: 0x8086, 0x2936
| Matching Device ID: usb\root_hub
| Service: usbhub
| Driver: usbhub.sys, 4/14/2008 04:45:37, 59520 bytes
| Driver: usbd.sys, 8/4/2004 22:00:00, 4736 bytes

----------------
Gameport Devices
----------------

------------
PS/2 Devices
------------
+ Standard 101/102-Key or Microsoft Natural PS/2 Keyboard
| Matching Device ID: *pnp0303
| Service: i8042prt
| Driver: i8042prt.sys, 4/14/2008 05:18:00, 52480 bytes
| Driver: kbdclass.sys, 4/14/2008 04:39:47, 24576 bytes
|
+ HID Keyboard Device
| Matching Device ID: hid_device_system_keyboard
| Service: kbdhid
| Driver: kbdhid.sys, 4/14/2008 04:39:48, 14592 bytes
| Driver: kbdclass.sys, 4/14/2008 04:39:47, 24576 bytes
|
+ Terminal Server Keyboard Driver
| Matching Device ID: root\rdp_kbd
| Upper Filters: kbdclass
| Service: TermDD
| Driver: termdd.sys, 4/14/2008 10:13:20, 40840 bytes
| Driver: kbdclass.sys, 4/14/2008 04:39:47, 24576 bytes
|
+ HID-compliant mouse
| Vendor/Product ID: 0x056A, 0x00B1
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| Driver: mouclass.sys, 4/14/2008 04:39:47, 23040 bytes
| Driver: mouhid.sys, 8/4/2004 22:00:00, 12160 bytes
|
+ HID-compliant mouse
| Vendor/Product ID: 0x1532, 0x0012
| Matching Device ID: hid_device_system_mouse
| Service: mouhid
| Driver: mouclass.sys, 4/14/2008 04:39:47, 23040 bytes
| Driver: mouhid.sys, 8/4/2004 22:00:00, 12160 bytes
|
+ Wacom Mouse
| Matching Device ID: hid\wacomvirtualhid&col03
| Upper Filters: wacommousefilter
| Service: mouhid
| Driver: mouhid.sys, 8/4/2004 22:00:00, 12160 bytes
| Driver: mouclass.sys, 4/14/2008 04:39:47, 23040 bytes
| Driver: wacommousefilter.sys, 2/16/2007 11:12:36, 11312 bytes
|
+ Terminal Server Mouse Driver
| Matching Device ID: root\rdp_mou
| Upper Filters: mouclass
| Service: TermDD
| Driver: termdd.sys, 4/14/2008 10:13:20, 40840 bytes
| Driver: mouclass.sys, 4/14/2008 04:39:47, 23040 bytes

----------------------------
DirectPlay Service Providers
----------------------------
DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
DirectPlay8 TCP/IP Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
Internet TCP/IP Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512)
IPX Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512)
Modem Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512)
Serial Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512)

DirectPlay Voice Wizard Tests: Full Duplex: Not run, Half Duplex: Not run, Mic: Not run
DirectPlay Test Result: Not run
Registry: OK

-------------------
DirectPlay Adapters
-------------------
DirectPlay8 Serial Service Provider: COM1
DirectPlay8 TCP/IP Service Provider: Local Area Connection - IPv4 -

-----------------------
DirectPlay Voice Codecs
-----------------------
Voxware VR12 1.4kbit/s
Voxware SC06 6.4kbit/s
Voxware SC03 3.2kbit/s
MS-PCM 64 kbit/s
MS-ADPCM 32.8 kbit/s
Microsoft GSM 6.10 13 kbit/s
TrueSpeech(TM) 8.6 kbit/s

-------------------------
DirectPlay Lobbyable Apps
-------------------------
Dungeon Siege 2 (DX7) - Registry: OK, ExeFile: DS2.icd (<File Missing>)

------------------------
Disk & DVD/CD-ROM Drives
------------------------
Drive: C:
Free Space: 15.0 GB
Total Space: 427.2 GB
File System: NTFS
Model: WDC WD5000AAKS-00YGA0

Drive: D:
Free Space: 6.7 GB
Total Space: 49.7 GB
File System: NTFS
Model: WDC WD5000AAKS-00YGA0

Drive: F:
Model: LITE-ON DVDRW LH-20A1H SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: J:
Model: VU8502K MKB505C SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: E:
Model: DKJOFO RO92NG9U SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: G:
Model: DKJOFO RO92NG9U SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: I:
Model: DKJOFO RO92NG9U SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: L:
Model: DKJOFO RO92NG9U SCSI CdRom Device
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

Drive: H:
Model: MagicISO Virtual DVD-ROM0000
Driver: c:\windows\system32\drivers\cdrom.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:46, 62976 bytes

--------------
System Devices
--------------
Name: Intel(R) G33/G31/P35 Express Chipset PCI Express Root Port - 29C1
Device ID: PCI\VEN_8086&DEV_29C1&SUBSYS_00000000&REV_02\3&13C0B0C5&0&08
Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:44, 68224 bytes

Name: Intel(R) G33/G31/P35 Express Chipset Processor to I/O Controller - 29C0
Device ID: PCI\VEN_8086&DEV_29C0&SUBSYS_00000000&REV_02\3&13C0B0C5&0&00
Driver: n/a

Name: Intel(R) ICH9 Family PCI Express Root Port 5 - 2948
Device ID: PCI\VEN_8086&DEV_2948&SUBSYS_00000000&REV_02\3&13C0B0C5&0&E4
Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:44, 68224 bytes

Name: Intel(R) ICH9 Family PCI Express Root Port 4 - 2946
Device ID: PCI\VEN_8086&DEV_2946&SUBSYS_00000000&REV_02\3&13C0B0C5&0&E3
Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:44, 68224 bytes

Name: Intel(R) ICH9 Family PCI Express Root Port 1 - 2940
Device ID: PCI\VEN_8086&DEV_2940&SUBSYS_00000000&REV_02\3&13C0B0C5&0&E0
Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:44, 68224 bytes

Name: Microsoft UAA Bus Driver for High Definition Audio
Device ID: PCI\VEN_8086&DEV_293E&SUBSYS_A0021458&REV_02\3&13C0B0C5&0&D8
Driver: C:\WINDOWS\system32\DRIVERS\hdaudbus.sys, 5.10.0001.5013 (English), 4/13/2008 22:06:06, 144384 bytes

Name: Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293C
Device ID: PCI\VEN_8086&DEV_293C&SUBSYS_50061458&REV_02\3&13C0B0C5&0&D7
Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 30208 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes
Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 10:11:54, 7168 bytes

Name: Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A
Device ID: PCI\VEN_8086&DEV_293A&SUBSYS_50061458&REV_02\3&13C0B0C5&0&EF
Driver: C:\WINDOWS\system32\drivers\usbehci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 30208 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes
Driver: C:\WINDOWS\system32\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 10:11:54, 7168 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2939
Device ID: PCI\VEN_8086&DEV_2939&SUBSYS_50041458&REV_02\3&13C0B0C5&0&D2
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2938
Device ID: PCI\VEN_8086&DEV_2938&SUBSYS_50041458&REV_02\3&13C0B0C5&0&D1
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2937
Device ID: PCI\VEN_8086&DEV_2937&SUBSYS_50041458&REV_02\3&13C0B0C5&0&D0
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_50041458&REV_02\3&13C0B0C5&0&EA
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2935
Device ID: PCI\VEN_8086&DEV_2935&SUBSYS_50041458&REV_02\3&13C0B0C5&0&E9
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family USB Universal Host Controller - 2934
Device ID: PCI\VEN_8086&DEV_2934&SUBSYS_50041458&REV_02\3&13C0B0C5&0&E8
Driver: C:\WINDOWS\system32\drivers\usbuhci.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:35, 20608 bytes
Driver: C:\WINDOWS\system32\drivers\usbport.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:36, 143872 bytes
Driver: C:\WINDOWS\system32\usbui.dll, 5.01.2600.5512 (English), 4/14/2008 10:12:08, 74240 bytes
Driver: C:\WINDOWS\system32\drivers\usbhub.sys, 5.01.2600.5512 (English), 4/14/2008 04:45:37, 59520 bytes

Name: Intel(R) ICH9 Family SMBus Controller - 2930
Device ID: PCI\VEN_8086&DEV_2930&SUBSYS_50011458&REV_02\3&13C0B0C5&0&FB
Driver: n/a

Name: Intel(R) ICH9 2 port Serial ATA Storage Controller 2 - 2926
Device ID: PCI\VEN_8086&DEV_2926&SUBSYS_B0021458&REV_02\3&13C0B0C5&0&FD
Driver: C:\WINDOWS\system32\DRIVERS\pciide.sys, 5.01.2600.0000 (English), 8/4/2004 22:00:00, 3328 bytes
Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:29, 24960 bytes
Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:30, 96512 bytes

Name: Intel(R) ICH9 4 port Serial ATA Storage Controller 1 - 2920
Device ID: PCI\VEN_8086&DEV_2920&SUBSYS_B0021458&REV_02\3&13C0B0C5&0&FA
Driver: C:\WINDOWS\system32\DRIVERS\pciide.sys, 5.01.2600.0000 (English), 8/4/2004 22:00:00, 3328 bytes
Driver: C:\WINDOWS\system32\DRIVERS\pciidex.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:29, 24960 bytes
Driver: C:\WINDOWS\system32\DRIVERS\atapi.sys, 5.01.2600.5512 (English), 4/14/2008 04:40:30, 96512 bytes

Name: PCI standard ISA bridge
Device ID: PCI\VEN_8086&DEV_2916&SUBSYS_00000000&REV_02\3&13C0B0C5&0&F8
Driver: C:\WINDOWS\system32\DRIVERS\isapnp.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:41, 37248 bytes

Name: Intel(R) 82801 PCI Bridge - 244E
Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_00000000&REV_92\3&13C0B0C5&0&F0
Driver: C:\WINDOWS\system32\DRIVERS\pci.sys, 5.01.2600.5512 (English), 4/14/2008 04:36:44, 68224 bytes

Name: GIGABYTE GBB36X Controller
Device ID: PCI\VEN_197B&DEV_2363&SUBSYS_B0001458&REV_02\4&24C54F4F&0&00E3
Driver: C:\WINDOWS\system32\DRIVERS\jraid.sys, 1.17.0013.0001 (English), 2/16/2007 12:27:10, 44928 bytes
Driver: C:\WINDOWS\system32\DRIVERS\JGOGO.sys, 5.00.3790.0001 (English), 2/7/2006 21:52:58, 6912 bytes

Name: Realtek RTL8168/8111 PCI-E Gigabit Ethernet NIC
Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_01\4&345CAFAF&0&00E4
Driver: C:\WINDOWS\system32\DRIVERS\Rtenicxp.sys, 5.698.0701.2008 (English), 7/1/2008 11:27:44, 108800 bytes
Driver: C:\WINDOWS\system32\RtNicProp32.dll, 1.01.0716.2008 (English), 7/22/2008 00:14:10, 9728 bytes

Name: NVIDIA GeForce 8800 GTX
Device ID: PCI\VEN_10DE&DEV_0191&SUBSYS_039C10DE&REV_A2\4&1A9C9F1A&0&0008
Driver: C:\WINDOWS\system32\DRIVERS\nv4_mini.sys, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 6301248 bytes
Driver: C:\WINDOWS\system32\nv4_disp.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 6168960 bytes
Driver: C:\WINDOWS\system32\nvsvc32.exe, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 163908 bytes
Driver: C:\WINDOWS\system32\nvapi.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 663552 bytes
Driver: C:\WINDOWS\system32\nvcuda.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 1560576 bytes
Driver: C:\WINDOWS\system32\nvoglnt.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 9412608 bytes
Driver: C:\WINDOWS\system32\nvcpl.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 13680640 bytes
Driver: C:\WINDOWS\system32\nvmctray.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 86016 bytes
Driver: C:\WINDOWS\system32\nvwddi.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 81920 bytes
Driver: C:\WINDOWS\system32\nvmccs.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 229376 bytes
Driver: C:\WINDOWS\system32\nvmccsrs.dll, 6.14.0011.8122 (Arabic), 1/15/2009 07:19:00, 45056 bytes
Driver: C:\WINDOWS\system32\nvdisps.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 4710400 bytes
Driver: C:\WINDOWS\system32\nvgames.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 3489792 bytes
Driver: C:\WINDOWS\system32\nvmccss.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 188416 bytes
Driver: C:\WINDOWS\system32\nvmobls.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 1286144 bytes
Driver: C:\WINDOWS\system32\nvvitvs.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 3796992 bytes
Driver: C:\WINDOWS\system32\nvwss.dll, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 2744320 bytes
Driver: C:\WINDOWS\system32\NvPVEnc.ax, 6.14.0011.8122 (English), 1/15/2009 07:19:00, 1253376 bytes
Driver: C:\WINDOWS\help\nvcpl.hlp, 1/15/2009 07:19:00, 177897 bytes
Driver: C:\WINDOWS\help\nvwcplen.hlp, 1/15/2009 07:19:00, 55444 bytes
Driver: C:\WINDOWS\system32\nvcod.dll, 1.03.0007.0030 (English), 1/15/2009 07:19:00, 135168 bytes
Driver: C:\WINDOWS\system32\nvcodins.dll, 1.03.0007.0030 (English), 1/15/2009 07:19:00, 135168 bytes

------------------
DirectX Components
------------------
ddraw.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 279552 bytes
ddrawex.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 27136 bytes
dxapi.sys: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 10496 bytes
d3d8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 1179648 bytes
d3d8thk.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 8192 bytes
d3d9.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 1689088 bytes
d3dim.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 436224 bytes
d3dim700.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:51 824320 bytes
d3dramp.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 590336 bytes
d3drm.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 350208 bytes
d3dxof.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 47616 bytes
d3dpmesh.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 34816 bytes
dplay.dll: 5.00.2134.0001 English Final Retail 8/4/2004 22:00:00 33040 bytes
dplayx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 229888 bytes
dpmodemx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 23552 bytes
dpwsock.dll: 5.00.2134.0001 English Final Retail 8/4/2004 22:00:00 42768 bytes
dpwsockx.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 57344 bytes
dplaysvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:17 29696 bytes
dpnsvr.exe: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:17 17920 bytes
dpnet.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 375296 bytes
dpnlobby.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:09:20 3072 bytes
dpnaddr.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:09:19 3072 bytes
dpvoice.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 212480 bytes
dpvsetup.exe: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:18 83456 bytes
dpvvox.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 116736 bytes
dpvacm.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 21504 bytes
dpnhpast.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 35328 bytes
dpnhupnp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 60928 bytes
dpserial.dll: 5.00.2134.0001 English Final Retail 8/4/2004 22:00:00 53520 bytes
dinput.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 158720 bytes
dinput8.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 181760 bytes
dimap.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 44032 bytes
diactfrm.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 394240 bytes
joy.cpl: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:41 68608 bytes
gcdef.dll: 5.01.2600.0000 English Final Retail 8/4/2004 22:00:00 76800 bytes
pid.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:02 35328 bytes
dsound.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 367616 bytes
dsound3d.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 1293824 bytes
dswave.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 19456 bytes
dsdmo.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 181248 bytes
dsdmoprp.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 71680 bytes
dmusic.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 104448 bytes
dmband.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 28672 bytes
dmcompos.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 61440 bytes
dmime.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 181248 bytes
dmloader.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 35840 bytes
dmstyle.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 105984 bytes
dmsynth.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 103424 bytes
dmscript.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 82432 bytes
system.dll: 1.01.4322.2407 English Final Retail 1/11/2008 02:00:57 1232896 bytes
Microsoft.DirectX.Direct3D.dll: 9.05.0132.0000 English Final Retail 3/31/2009 02:37:04 473600 bytes
Microsoft.DirectX.Direct3DX.dll: 5.04.0000.3900 English Final Retail 3/31/2009 02:36:53 2676224 bytes
Microsoft.DirectX.Direct3DX.dll: 9.04.0091.0000 English Final Retail 3/31/2009 02:36:54 2846720 bytes
Microsoft.DirectX.Direct3DX.dll: 9.05.0132.0000 English Final Retail 3/31/2009 02:36:55 563712 bytes
Microsoft.DirectX.Direct3DX.dll: 9.06.0168.0000 English Final Retail 3/31/2009 02:36:56 567296 bytes
Microsoft.DirectX.Direct3DX.dll: 9.07.0239.0000 English Final Retail 3/31/2009 02:36:57 576000 bytes
Microsoft.DirectX.Direct3DX.dll: 9.08.0299.0000 English Final Retail 3/31/2009 02:36:58 577024 bytes
Microsoft.DirectX.Direct3DX.dll: 9.09.0376.0000 English Final Retail 3/31/2009 02:36:59 577536 bytes
Microsoft.DirectX.Direct3DX.dll: 9.10.0455.0000 English Final Retail 3/31/2009 02:37:00 577536 bytes
Microsoft.DirectX.Direct3DX.dll: 9.11.0519.0000 English Final Retail 3/31/2009 02:37:00 578560 bytes
Microsoft.DirectX.Direct3DX.dll: 9.12.0589.0000 English Final Retail 3/31/2009 02:37:04 578560 bytes
Microsoft.DirectX.DirectDraw.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:05 145920 bytes
Microsoft.DirectX.DirectInput.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:06 159232 bytes
Microsoft.DirectX.DirectPlay.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:07 364544 bytes
Microsoft.DirectX.DirectSound.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:08 178176 bytes
Microsoft.DirectX.AudioVideoPlayback.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:03 53248 bytes
Microsoft.DirectX.Diagnostics.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:03 12800 bytes
Microsoft.DirectX.dll: 5.04.0000.2904 English Final Retail 3/31/2009 02:37:02 223232 bytes
dx7vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 619008 bytes
dx8vb.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 1227264 bytes
dxdiagn.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:52 2113536 bytes
mfc40.dll: 4.01.0000.6140 English Final Retail 8/4/2004 22:00:00 924432 bytes
mfc42.dll: 6.02.4131.0000 English Final Retail 4/14/2008 10:11:56 1028096 bytes
wsock32.dll: 5.01.2600.5512 English Final Retail 4/14/2008 10:12:10 22528 bytes
amstream.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:11:49 70656 bytes
devenum.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:11:51 59904 bytes
dxmasf.dll: 6.04.0009.1133 English Final Retail 4/14/2008 10:11:52 498742 bytes
mciqtz.drv: 4.00.0096.0729 English Final Retail 8/17/1998 19:21:54 11776 bytes
mciqtz32.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:11:56 35328 bytes
mpg2splt.ax: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:42 148992 bytes
msdmo.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:11:59 14336 bytes
encapi.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:53 20480 bytes
qasf.dll: 11.00.5721.5145 English Final Retail 10/18/2006 21:47:18 211456 bytes
qcap.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:03 192512 bytes
qdv.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:03 279040 bytes
qdvd.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:03 386048 bytes
qedit.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:03 562176 bytes
qedwipes.dll: 6.05.2600.5512 English Final Retail 4/14/2008 03:21:32 733696 bytes
quartz.dll: 6.05.2600.5731 English Final Retail 12/21/2008 08:14:38 1288192 bytes
quartz.vxd: Final Retail 8/17/1998 19:21:56 5672 bytes
strmdll.dll: 4.01.0000.3937 English Final Retail 10/3/2008 20:02:42 247326 bytes
vidx16.dll: 0.00.0000.0000 English Final Retail 8/17/1998 19:21:56 10240 bytes
iac25_32.ax: 2.00.0005.0053 English Final Retail 4/14/2008 10:12:42 199680 bytes
ir41_32.ax: 4.51.0016.0003 English Final Retail 4/14/2008 10:12:42 848384 bytes
ir41_qc.dll: 4.30.0062.0002 English Final Retail 4/14/2008 10:11:55 120320 bytes
ir41_qcx.dll: 4.30.0064.0001 English Final Retail 4/14/2008 10:11:55 338432 bytes
ir50_32.dll: 5.2562.0015.0055 English Final Retail 4/14/2008 10:11:55 755200 bytes
ir50_qc.dll: 5.00.0063.0048 English Final Retail 4/14/2008 10:11:55 200192 bytes
ir50_qcx.dll: 5.00.0064.0048 English Final Retail 4/14/2008 10:11:55 183808 bytes
ivfsrc.ax: 5.10.0002.0051 English Final Retail 4/14/2008 10:12:42 154624 bytes
mswebdvd.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:01 203776 bytes
ks.sys: 5.03.2600.5512 English Final Retail 4/14/2008 05:16:36 141056 bytes
ksproxy.ax: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:42 129536 bytes
ksuser.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:11:56 4096 bytes
stream.sys: 5.03.2600.5512 English Final Retail 4/14/2008 04:45:15 49408 bytes
mspclock.sys: 5.03.2600.5512 English Final Retail 4/14/2008 04:39:50 5376 bytes
mspqm.sys: 5.01.2600.5512 English Final Retail 4/14/2008 04:39:51 4992 bytes
mskssrv.sys: 5.03.2600.5512 English Final Retail 4/14/2008 04:39:52 7552 bytes
swenum.sys: 5.03.2600.5512 English Final Retail 4/14/2008 04:39:53 4352 bytes
mpeg2data.ax: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:42 118272 bytes
msvidctl.dll: 6.05.2600.5512 English Final Retail 4/14/2008 10:12:01 1428992 bytes
vbisurf.ax: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:42 30208 bytes
msyuv.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:01 16896 bytes
wstdecod.dll: 5.03.2600.5512 English Final Retail 4/14/2008 10:12:10 50688 bytes

------------------
DirectShow Filters
------------------

DirectShow Filters:
WMAudio Decoder DMO,0x00800800,1,1,,
WMAPro over S/PDIF DMO,0x00600800,1,1,,
WMA Voice Decoder DMO,0x00600800,1,1,,
Mpeg4s Decoder DMO,0x00800001,1,1,,
WMV Screen decoder DMO,0x00800001,1,1,,
WMVideo Decoder DMO,0x00800001,1,1,,
Mpeg43 Decoder DMO,0x00800001,1,1,,
Mpeg4 Decoder DMO,0x00800001,1,1,,
WMT MuxDeMux Filter,0x00200000,0,0,wmm2filt.dll,2.01.4026.0000
Full Screen Renderer,0x00200000,1,0,quartz.dll,6.05.2600.5731
RealPlayer Video Filter,0x00200000,1,1,rdsf3260.dll,6.00.0013.0068
DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.5512
Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.5731
WM ASF Reader,0x00400000,0,0,qasf.dll,11.00.5721.5145
Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,11.00.5721.5145
AVI Splitter,0x00600000,1,1,quartz.dll,6.05.2600.5731
WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.5731
Indeo® video 5.10 Compression Filter,0x00200000,1,1,ir50_32.dll,5.2562.0015.0055
Windows Media Audio Decoder,0x00800001,1,1,msadds32.ax,8.00.0000.4487
AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.05.2600.5512
Dee Mon's Avi Writer,0x00200000,2,0,aviwr.ax,9.00.0000.0000
WMT Format Conversion,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
StreamBufferSink,0x00200000,0,0,sbe.dll,6.05.2600.5512
WMT Black Frame Generator,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5731
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
WMT Screen Capture filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
Microsoft Screen Video Decompressor,0x00800000,1,1,msscds32.ax,8.00.0000.4487
MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.05.2600.5731
SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.5731
MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.05.0000.0050
TechSmith Camera Adjust,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.5512
Internal LMRT Renderer,0x00800001,1,0,LMRTREND.dll,6.00.0004.0827
ACELP.net Sipro Lab Audio Decoder,0x00800001,1,1,acelpdec.ax,1.04.0000.0000
Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.05.2600.5731
MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.5731
File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,11.00.5721.5145
TrueMotion 2.0 Decompressor,0x00600001,1,1,tm20dec.ax,1.00.0000.0001
WMT Import Filter,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
DV Splitter,0x00600000,1,2,qdv.dll,6.05.2600.5512
Bitmap Generate,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Windows Media Video Decoder,0x00800000,1,1,wmvds32.ax,8.00.0000.4487
Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.05.2600.5731
Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000
Dee Mon's VIH,0x00200000,1,1,VIH.ax,9.00.0000.0000
WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Dee Mon's Super Resolution,0x00200000,1,1,SR.ax,9.00.0000.0000
Windows Media Multiplexer,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASX file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASX v.2 file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
NSC file Parser,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ACM Wrapper,0x00600000,1,1,quartz.dll,6.05.2600.5731
Windows Media source filter,0x00600000,0,2,wmpasf.dll,11.00.5721.5145
Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.5731
Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
VDFilter,0x00200000,1,1,VDFilter.ax,9.00.0000.0000
MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.05.2600.5512
Line 21 Decoder,0x00600000,1,1,qdvd.dll,6.05.2600.5512
Video Port Manager,0x00600000,2,1,quartz.dll,6.05.2600.5731
WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.5512
Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.5731
DivX Decoder Filter,0xff800000,1,1,divxdec.ax,6.03.0000.0084
WM ASF Writer,0x00400000,0,0,qasf.dll,11.00.5721.5145
WMT Sample Information Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,5.03.2600.5512
Microsoft MPEG-4 Video Decompressor,0x00800000,1,1,mpg4ds32.ax,8.00.0000.4487
File writer,0x00200000,1,0,qcap.dll,6.05.2600.5512
WMT Log Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WMT Virtual Renderer,0x00200000,1,0,wmm2filt.dll,2.01.4026.0000
WAV Dest,0x00000000,0,0,,
DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.5512
Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.5512
Cutlist File Source,0x00200000,0,1,qcut.dll,6.00.0002.0902
AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.5731
.RAM file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145
LAME Audio Encoder,0x00100000,2,1,lame_dshow.ax,1.00.0054.50801
WMT DirectX Transform Wrapper,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
G.711 Codec,0x00200000,1,1,g711codc.ax,5.01.2600.0000
MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.05.2600.5512
ULead AC3 Audio Decoder,0x00400000,1,1,ulac3.ax,1.00.0000.0000
DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.5512
RealPlayer Transcode Filter,0x00600000,0,0,rdsf3260.dll,6.00.0013.0068
Indeo® audio software,0x00500000,1,1,iac25_32.ax,2.00.0005.0053
Windows Media Update Filter,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
ASF DIB Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF ACM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF ICM Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF URL Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF JPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF DJPEG Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
ASF embedded stuff Handler,0x00600000,1,1,wmpasf.dll,11.00.5721.5145
9x8Resize,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WIA Stream Snapshot Filter,0x00200000,1,1,wiasf.ax,1.00.0000.0000
URL StreamRenderer,0x00600000,1,0,LMRTREND.dll,6.00.0004.0827
Allocator Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
SampleGrabber,0x00200000,1,1,qedit.dll,6.05.2600.5512
Null Renderer,0x00200000,1,0,qedit.dll,6.05.2600.5512
VP7 Decompressor,0x00800000,1,1,vp7dec.ax,7.00.0010.0000
TechSmith File Source,0x00400000,0,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith SWF Writer,0x00200000,2,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith WMFSDK Writer,0x00200000,1,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Simple PIP,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
ImageSource,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TitleSource,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Time Adjust,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Splitter Filter,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Frame Skip Filter,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Perf Skip Filter,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ZoomPIP Filter,0x00200000,2,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith PushVMR Source,0x00200000,0,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith PushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,5.00.0002.0000
TechSmith PushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,5.00.0002.0000
TechSmith SimplePushBitmap Source,0x00200000,0,2,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Wave Dest,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Overlay,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Wave Buffer,0x00200000,1,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ForceColor 8,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ForceColor 555,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ForceColor 565,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ForceColor 24,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith ForceColor 32,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
TechSmith Force Color32A,0x00200000,0,0,CamtasiaFilters.dll,5.00.0002.0000
SSFileWriter,0x00200000,1,0,CamtasiaFilters.dll,5.00.0002.0000
WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000
MPEG-2 Sections and Tables,0x005fffff,1,0,mpeg2data.ax,
IVF source filter,0x00600000,0,1,ivfsrc.ax,5.10.0002.0051
WMT Interlacer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
StreamBufferSource,0x00200000,0,0,sbe.dll,6.05.2600.5512
Smart Tee,0x00200000,1,2,qcap.dll,6.05.2600.5512
Overlay Mixer,0x00200000,0,0,qdvd.dll,6.05.2600.5512
Parallelizer2,0x00200000,1,1,Parallelizer.ax,8.01.0000.0000
RealPlayer Audio Filter,0x00200000,1,1,rdsf3260.dll,6.00.0013.0068
AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5731
ULead MPEG Splitter,0x00400002,1,2,ulspmpeg.ax,1.00.0000.0032
ULead MPEG Audio Decoder,0x00400000,1,1,uldsmpeg.ax,1.00.0000.0045
ULead MPEG Video Decoder,0x00400000,1,1,uldsmpeg.ax,1.00.0000.0045
ULead MPEG Encoder,0x00200000,2,1,ulesmpeg.ax,1.00.0001.0009
Uncompressed Domain Shot Detection Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.05.2600.5731
QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.5731
Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.5731
MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.5731
Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.5731
File stream renderer,0x00400000,1,1,quartz.dll,6.05.2600.5731
XML Playlist,0x00400000,1,0,wmpasf.dll,11.00.5721.5145
AVI Mux,0x00200000,1,0,qcap.dll,6.05.2600.5512
Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.05.2600.5731
File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.5731
File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.5731
WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
TechSmith Frame Rate Tuner,0x00200000,1,1,CamtasiaFilters.dll,5.00.0002.0000
WMT Switch Filter,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
WMT Volume,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Stretch Video,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000
Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.05.2600.5512
QT Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5731
MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.5731
Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003
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 Data Transforms:
Microsoft Kernel Acoustic Echo Canceller,0x00000000,0,0,,
Microsoft Kernel GS Wavetable Synthesizer,0x00200000,1,1,,5.03.2600.5512
Microsoft Kernel DLS Synthesizer,0x00200000,1,1,,5.03.2600.5512
Microsoft Kernel DRM Audio Descrambler,0x00200000,1,1,,5.03.2600.5512

Video Compressors:
WMVideo8 Encoder DMO,0x00600800,1,1,,
MSScreen encoder DMO,0x00600800,1,1,,
WMVideo9 Encoder DMO,0x00600800,1,1,,
MSScreen 9 encoder DMO,0x00600800,1,1,,
DV Video Encoder,0x00200000,0,0,qdv.dll,6.05.2600.5512
Indeo? video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
Indeo® video 5.10 Compression Filter,0x00100000,1,1,ir50_32.dll,5.2562.0015.0055
MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.5731
CamStudio Lossless Codec v1.4,0x00200000,1,1,qcap.dll,6.05.2600.5512
Cinepak Codec by Radius,0x00200000,1,1,qcap.dll,6.05.2600.5512
DivX 6.8.5 Codec (4 Logical CPUs),0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel 4:2:0 Video V2.50,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel Indeo(R) Video R3.2,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel Indeo® Video 4.5,0x00200000,1,1,qcap.dll,6.05.2600.5512
Indeo® video 5.10,0x00200000,1,1,qcap.dll,6.05.2600.5512
Intel IYUV codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft H.261 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft H.263 Video Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft RLE,0x00200000,1,1,qcap.dll,6.05.2600.5512
Microsoft Video 1,0x00200000,1,1,qcap.dll,6.05.2600.5512
MSU Screen Capture Lossless Codec v1.2,0x00200000,1,1,qcap.dll,6.05.2600.5512
TechSmith Screen Capture Codec,0x00200000,1,1,qcap.dll,6.05.2600.5512
VP70® General Profile,0x00200000,1,1,qcap.dll,6.05.2600.5512
DivX 6.8.5 YV12 Decoder,0x00200000,1,1,qcap.dll,6.05.2600.5512

Audio Compressors:
WMA Voice Encoder DMO,0x00600800,1,1,,
WM Speech Encoder DMO,0x00600800,1,1,,
WMAudio Encoder DMO,0x00600800,1,1,,
IAC2,0x00200000,1,1,quartz.dll,6.05.2600.5731
IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5731
PCM,0x00200000,1,1,quartz.dll,6.05.2600.5731
Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5731
ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.5731
DSP Group TrueSpeech(TM),0x00200000,1,1,quartz.dll,6.05.2600.5731
Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.5731
Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.5731
GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.5731
Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.05.2600.5731
Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.5731
CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.5731
CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.5731
MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.5731

Audio Capture Sources:
Realtek HD Audio Input,0x00200000,0,0,qcap.dll,6.05.2600.5512
Realtek HD Digital input,0x00200000,0,0,qcap.dll,6.05.2600.5512

Midi Renderers:
Default MidiOut Device,0x00800000,1,0,quartz.dll,6.05.2600.5731
Microsoft GS Wavetable SW Synth,0x00200000,1,0,quartz.dll,6.05.2600.5731

WDM Streaming Capture Devices:
Realtek HD Digital input,0x00200000,1,1,,5.03.2600.5512
,0x00000000,0,0,,

WDM Streaming Rendering Devices:
Realtek HD Audio output,0x00200000,3,1,,5.03.2600.5512

BDA Transport Information Renderers:
MPEG-2 Sections and Tables,0x00600000,1,0,mpeg2data.ax,

WDM Streaming Mixer Devices:
Microsoft Kernel Wave Audio Mixer,0x00000000,0,0,,

BDA CP/CA Filters:
Decrypt/Tag,0x00600000,1,0,encdec.dll,6.05.2600.5512
Encrypt/Tag,0x00200000,0,0,encdec.dll,6.05.2600.5512
XDS Codec,0x00200000,0,0,encdec.dll,6.05.2600.5512

Audio Renderers:
Realtek HD Audio output,0x00200000,1,0,quartz.dll,6.05.2600.5731
Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.5731
Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.5731
DirectSound: Realtek HD Audio output,0x00200000,1,0,quartz.dll,6.05.2600.5731

WDM Streaming System Devices:
Realtek HD Digital input,0x00200000,1,1,,5.03.2600.5512
Realtek HD Audio Input,0x00200000,4,1,,5.03.2600.5512
Realtek HD Audio output,0x00200000,18,1,,5.03.2600.5512
 

CixxyZ

Active Member
Reaction score
7
Ok it still crashes. Uhmm.. going to try test each individual tower in single player (because I don';t have any long term beta testers).
Hope anyone has more ideas in the meantime.'

Edit: I built a lot of water & earth & light elemental towers at around the same spot. It crashes with those 3. Going to try and pinpoint which one exactly.

Edit: Built a lot of light towers around the same spot.. Crashed! What it does is creates a dummy on attack and drains life on the enemy and uses a mana flare lighting projectile. I'll try reworking it I guess.

Trigger:
  • Light
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Unit-type of (Attacking unit)) Equal to Lucis Elemental
    • Actions
      • Set TempPoint = (Position of (Attacking unit))
      • Unit - Create 1 light-missile for (Owner of (Attacking unit)) at TempPoint facing Default building facing degrees
      • Unit - Add a 5.00 second Generic expiration timer to (Last created unit)
      • Unit - Order (Last created unit) to Neutral Dark Ranger - Life Drain (Attacked unit)
      • Custom script: call RemoveLocation (udg_TempPoint)
      • Wait 1.00 game-time seconds
 

CixxyZ

Active Member
Reaction score
7
thanks so much Sooda and afisakov for the debugging help! No fatals anymore :D

Will credit in map.
 
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top