Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.
Üzenetek - Stricica
Oldalak: 1 ... 29 30 [31] 32 33 34
451
« Dátum: 2011. január 01. - 14:28:04 »
Hello!Ez egy nagyon egyszerû kis script, kb. 1 percembe telt kipróbálni és tesztelni. A lényege annyi hogy ha egy játékos rákattint a játékos listában egy játékosra akkor kiírja mindenkinek, hogy megbökte. SolidfilesA példa: Béla megbökte a(z) Józsi nevû játékost![/quote]
452
« Dátum: 2011. január 01. - 13:44:30 »
Hm, mondasz valamit
453
« Dátum: 2011. január 01. - 13:20:09 »
Nekem egy ugyan ilyen telés parancs-hoz nem kellett, anélkül is ment :amazed:
454
« Dátum: 2011. január 01. - 12:29:23 »
Így esetleg mûködhet: #include <a_samp> #include <a_objects> #define red 0xFF0000A forward GateCheck(playerid); new mygate; public OnFilterScriptInit() { mygate=CreateObject(980, 2293.5500488281, 1942.3273925781, 16.994842529297, 0, 0, 0); //object (kapu) ID és a koordinata SetTimer(\"GateCheck\",1000,1); return 1; } public GateCheck(playerid) { new name[24]; if(strfind(name, \"[Knights]\", true)) { if(IsPlayerInRangeOfPoint(playerid,10.0,2293.5500488281, 1942.3273925781, 16.994842529297)) //object (kapu) koordinata { MoveObject(mygate, 2305.0737304688, 1942.3419189453, 17.044841766357, 6.00); //nyitott kapu koordinata a 6.00 a sebessége } else { MoveObject(mygate,2293.5500488281, 1942.3273925781, 16.994842529297, 6.00); //zárt kapu koordinata } } else return; }
455
« Dátum: 2011. január 01. - 03:58:05 »
Hát bocs, tõlem ennyire futotta (még kezdõ vagyok.. ::| )
456
« Dátum: 2011. január 01. - 03:28:00 »
Hello! Én sscanf-al megtudtam oldani, tökéletesen mûködik így is, de ez csak egy sima /goto parancs: #include <a_samp> #define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == \'\\0\') && (dcmd_%1(playerid, \"\"))) || (((%3)[(%2) + 1] == \' \') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1 public OnPlayerCommandText(playerid, cmdtext[]) { dcmd(goto, 4, cmdtext); return 0; } dcmd_goto(playerid, params[]) { new giveplayerid; if (sscanf(params, \"u\", giveplayerid)) SendClientMessage(playerid, 0xa61515FF, \"Használat: /goto [playerid]\"); else if (giveplayerid == INVALID_PLAYER_ID) SendClientMessage(playerid, 0xa61515FF, \"Hiba: Nincs ilyen játékos!\"); else{ new name1[MAX_PLAYER_NAME],string[200]; GetPlayerName(playerid, name1, sizeof(name1)); new name2[MAX_PLAYER_NAME]; GetPlayerName(giveplayerid, name2, sizeof(name2)); format(string, sizeof string, \"%s odeteleportált %s nevû játékoshoz!\", name1, name2); SendClientMessageToAll(0xB3D5B2AA,string); new Float:x, Float:y, Float:z; GetPlayerPos(giveplayerid, x, y, z); SetPlayerPos(playerid,x,y,z); } return 1; } stock sscanf(string[], format[], {Float,_}:...) { #if defined isnull if (isnull(string)) #else if (string[0] == 0 || (string[0] == 1 && string[1] == 0)) #endif { return format[0]; } #pragma tabsize 4 new formatPos = 0, stringPos = 0, paramPos = 2, paramCount = numargs(), delim = \' \'; while (string[stringPos] && string[stringPos] <= \' \') { stringPos++; } while (paramPos < paramCount && string[stringPos]) { switch (format[formatPos++]) { case \'\\0\': { return 0; } case \'i\', \'d\': { new neg = 1, num = 0, ch = string[stringPos]; if (ch == \'-\') { neg = -1; ch = string[++stringPos]; } do { stringPos++; if (\'0\' <= ch <= \'9\') { num = (num * 10) + (ch - \'0\'); } else { return -1; } } while ((ch = string[stringPos]) > \' \' && ch != delim); setarg(paramPos, 0, num * neg); } case \'h\', \'x\': { new num = 0, ch = string[stringPos]; do { stringPos++; switch (ch) { case \'x\', \'X\': { num = 0; continue; } case \'0\' .. \'9\': { num = (num << 4) | (ch - \'0\'); } case \'a\' .. \'f\': { num = (num << 4) | (ch - (\'a\' - 10)); } case \'A\' .. \'F\': { num = (num << 4) | (ch - (\'A\' - 10)); } default: { return -1; } } } while ((ch = string[stringPos]) > \' \' && ch != delim); setarg(paramPos, 0, num); } case \'c\': { setarg(paramPos, 0, string[stringPos++]); } case \'f\': { new changestr[16], changepos = 0, strpos = stringPos; while(changepos < 16 && string[strpos] && string[strpos] != delim) { changestr[changepos++] = string[strpos++]; } changestr[changepos] = \'\\0\'; setarg(paramPos,0,_:floatstr(changestr)); } case \'p\': { delim = format[formatPos++]; continue; } case \'\\\'\': { new end = formatPos - 1, ch; while ((ch = format[++end]) && ch != \'\\\'\') {} if (!ch) { return -1; } format[end] = \'\\0\'; if ((ch = strfind(string, format[formatPos], false, stringPos)) == -1) { if (format[end + 1]) { return -1; } return 0; } format[end] = \'\\\'\'; stringPos = ch + (end - formatPos); formatPos = end + 1; } case \'u\': { new end = stringPos - 1, id = 0, bool:num = true, ch; while ((ch = string[++end]) && ch != delim) { if (num) { if (\'0\' <= ch <= \'9\') { id = (id * 10) + (ch - \'0\'); } else { num = false; } } } if (num && IsPlayerConnected(id)) { setarg(paramPos, 0, id); } else { #if !defined foreach #define foreach(%1,%2) for (new %2 = 0; %2 < MAX_PLAYERS; %2++) if (IsPlayerConnected(%2)) #define __SSCANF_FOREACH__ #endif string[end] = \'\\0\'; num = false; new name[MAX_PLAYER_NAME]; id = end - stringPos; foreach (Player, playerid) { GetPlayerName(playerid, name, sizeof (name)); if (!strcmp(name, string[stringPos], true, id)) { setarg(paramPos, 0, playerid); num = true; break; } } if (!num) { setarg(paramPos, 0, INVALID_PLAYER_ID); } string[end] = ch; #if defined __SSCANF_FOREACH__ #undef foreach #undef __SSCANF_FOREACH__ #endif } stringPos = end; } case \'s\', \'z\': { new i = 0, ch; if (format[formatPos]) { while ((ch = string[stringPos++]) && ch != delim) { setarg(paramPos, i++, ch); } if (!i) { return -1; } } else { while ((ch = string[stringPos++])) { setarg(paramPos, i++, ch); } } stringPos--; setarg(paramPos, i, \'\\0\'); } default: { continue; } } while (string[stringPos] && string[stringPos] != delim && string[stringPos] > \' \') { stringPos++; } while (string[stringPos] && (string[stringPos] == delim || string[stringPos] <= \' \')) { stringPos++; } paramPos++; } do { if ((delim = format[formatPos++]) > \' \') { if (delim == \'\\\'\') { while ((delim = format[formatPos++]) && delim != \'\\\'\') {} } else if (delim != \'z\') { return delim; } } } while (delim > \' \'); return 0; }
457
« Dátum: 2010. december 31. - 20:15:00 »
Lécci Solidfiles-ra, nem hozza be a linket ::|
458
« Dátum: 2010. december 31. - 13:13:01 »
Jó kis script
459
« Dátum: 2010. december 31. - 13:10:22 »
Nem rossz script bár én nem RCON adminokra készítettem volna hanem sima adminokra de így se rossz.
Köszi Am lehet átírom majd admin-osra, ha lesz igény rá
460
« Dátum: 2010. december 31. - 12:45:08 »
461
« Dátum: 2010. december 31. - 12:38:44 »
Ez nekem nagyon teccik,és jó is lessz a szerverembe köszönöm!! 10/10
Na ennek örülök
462
« Dátum: 2010. december 30. - 20:34:40 »
Megnéztem a Pastebint és szerintem ötletes. Grat! Nekem is ilyesmi van (saját).
Szép script jól van megcsinálva Grat! [/quote] Köszi
463
« Dátum: 2010. december 30. - 11:11:12 »
Na bemásolom az egész-et a .txt fáljból : System Information ------------------ Time of this report: 12/30/2010, 11:14:43 Machine name: FREEDOM Operating System: Windows XP Professional (5.1, Build 2600) Szervizcsomag 3 (2600.xpsp_sp3_qfe.080814-1300) Language: Hungarian (Regional Setting: Hungarian) System Manufacturer: Gigabyte Technology Co., Ltd. System Model: 945GZM-S2 BIOS: Award Modular BIOS v6.00PG Processor: Intel® Celeron® CPU 420 @ 1.60GHz Memory: 2040MB RAM Page File: 612MB used, 3318MB available Windows Dir: D:\\WINDOWS DirectX Version: DirectX 10.0 (4.10.0000.5512) 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: Intel® 82945G Express Chipset Family Manufacturer: Intel Corporation Chip type: Intel® 82945G Express Chipset Family DAC type: Internal Device Key: Enum\\PCI\\VEN_8086&DEV_2772&SUBSYS_D0001458&REV_02 Display Memory: 128.0 MB Current Mode: 1280 x 1024 (32 bit) (60Hz) Monitor: Plug and Play monitor Monitor Max Res: 1600,1200 Driver Name: ialmrnt5.dll Driver Version: 6.14.0010.4497 (English) DDI Version: 9 (or higher) Driver Attributes: Final Retail Driver Date/Size: 2/7/2006 13:26:16, 45697 bytes WHQL Logo\'d: Yes WHQL Date Stamp: n/a VDD: n/a Mini VDD: ialmnt5.sys Mini VDD Date: 2/7/2006 13:34:34, 1399615 bytes Device Identifier: {D7B78E66-6432-11CF-7966-0AF0A3C2CB35} Vendor ID: 0x8086 Device ID: 0x2772 SubSys ID: 0xD0001458 Revision ID: 0x0002 Revision ID: 0x0002 Video Accel: Deinterlace Caps: n/a Registry: OK DDraw Status: Enabled D3D Status: Enabled AGP Status: Not Available 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_0883&SUBSYS_1458E601&REV_1000 Manufacturer ID: 1 Product ID: 100 Type: WDM Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.5605 (English) Driver Attributes: Final Retail WHQL Logo\'d: Yes Date and Size: 4/17/2008 19:03:26, 4707328 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, 32 Static/Strm HW 3D Bufs: 33, 32 HW Memory: 0 Voice Management: No EAX 2.0 Listen/Src: Yes, Yes I3DL2 Listen/Src: Yes, Yes Sensaura ZoomFX: No Registry: OK Sound Test Result: Not run --------------------- Sound Capture Devices --------------------- Description: PC Camera Default Sound Capture: Yes Default Voice Capture: Yes Driver Name: usbaudio.sys Driver Version: 5.01.2600.5512 (English) Driver Attributes: Final Retail Date and Size: 4/13/2008 11:45:14, 60032 bytes Cap Flags: 0x41 Format Flags: 0x4 Description: Realtek HD Digital input Default Sound Capture: No Default Voice Capture: No Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.5605 (English) Driver Attributes: Final Retail Date and Size: 4/17/2008 19:03:26, 4707328 bytes Cap Flags: 0x41 Format Flags: 0xFFF Description: Realtek HD Audio Input Default Sound Capture: No Default Voice Capture: No Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.5605 (English) Driver Attributes: Final Retail Date and Size: 4/17/2008 19:03:26, 4707328 bytes Cap Flags: 0x41 Format Flags: 0xFFF ----------- DirectMusic ----------- DLS Path: D:\\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 [Emulált], Hardware (Not Kernel Mode), Output, No DLS, Internal MS GS hullßmt. SW-szintetizßtor [Emulált], Hardware (Not Kernel Mode), Output, No DLS, Internal Registry: OK Test Result: Not run ------------------- DirectInput Devices ------------------- Device Name: Egér Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Device Name: Billenty Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Poll w/ Interrupt: No Registry: OK ----------- USB Devices ----------- + USB gyökérhub | Vendor/Product ID: 0x8086, 0x27C9 | Matching Device ID: usb\\root_hub | Service: usbhub | Driver: usbhub.sys, 4/13/2008 16:15:38, 59520 bytes | Driver: usbd.sys, 11/21/2008 12:00:00, 4736 bytes ---------------- Gameport Devices ---------------- ------------ PS/2 Devices ------------ + Szabványos 101/102 gombos vagy Microsoft Natural PS/2 billenty| Matching Device ID: *pnp0303 | Service: i8042prt | Driver: i8042prt.sys, 11/21/2008 12:00:00, 52736 bytes | Driver: kbdclass.sys, 11/21/2008 12:00:00, 24960 bytes | + Terminálkiszolgáló - billenty| Matching Device ID: root\\rdp_kbd | Upper Filters: kbdclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 13:32:54, 40840 bytes | Driver: kbdclass.sys, 11/21/2008 12:00:00, 24960 bytes | + HID-szabványnak megfelel| Vendor/Product ID: 0x0458, 0x002E | Matching Device ID: hid_device_system_mouse | Service: mouhid | Driver: mouclass.sys, 11/21/2008 12:00:00, 23424 bytes | Driver: mouhid.sys, 11/21/2008 12:00:00, 12160 bytes | + Terminálkiszolgáló - egér-illeszt| Matching Device ID: root\\rdp_mou | Upper Filters: mouclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 13:32:54, 40840 bytes | Driver: mouclass.sys, 11/21/2008 12:00:00, 23424 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 Serial Service Provider: COM2 DirectPlay8 TCP/IP Service Provider: Helyi kapcsolat - 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 8.6 kbit/s ------------------------- DirectPlay Lobbyable Apps ------------------------- ------------------------ Disk & DVD/CD-ROM Drives ------------------------ Drive: C: Free Space: 30.2 GB Total Space: 50.0 GB File System: NTFS Model: ST3160815AS Drive: D: Free Space: 95.1 GB Total Space: 102.6 GB File System: NTFS Model: ST3160815AS Drive: E: Model: TSSTcorp CDDVDW SH-S202J Driver: d:\\windows\\system32\\drivers\\cdrom.sys, 5.01.2600.5512 (Hungarian), 11/21/2008 12:00:00, 62976 bytes Drive: F: Model: LOJ V4D2B8L6RK SCSI CdRom Device Driver: d:\\windows\\system32\\drivers\\cdrom.sys, 5.01.2600.5512 (Hungarian), 11/21/2008 12:00:00, 62976 bytes -------------- System Devices -------------- Name: Intel® 82801G (ICH7 Family) SMBus Controller - 27DA Device ID: PCI\\VEN_8086&DEV_27DA&SUBSYS_50011458&REV_01\\3&13C0B0C5&0&FB Driver: n/a Name: Microsoft UAA busz-illesztDevice ID: PCI\\VEN_8086&DEV_27D8&SUBSYS_A0021458&REV_01\\3&13C0B0C5&0&D8 Driver: D:\\WINDOWS\\system32\\DRIVERS\\hdaudbus.sys, 5.10.0001.5013 (English), 11/21/2008 12:00:00, 144384 bytes Name: Intel® 82801G (ICH7 Family) USB2 Enhanced Host Controller - 27CC Device ID: PCI\\VEN_8086&DEV_27CC&SUBSYS_50061458&REV_01\\3&13C0B0C5&0&EF Driver: D:\\WINDOWS\\system32\\drivers\\usbehci.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:36, 30208 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 143872 bytes Driver: D:\\WINDOWS\\system32\\usbui.dll, 5.01.2600.5512 (Hungarian), 4/14/2008 13:32:06, 85504 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 59520 bytes Driver: D:\\WINDOWS\\system32\\hccoin.dll, 5.01.2600.5512 (English), 4/14/2008 13:31:52, 7168 bytes Name: Intel® 82801G (ICH7 Family) USB Universal Host Controller - 27CB Device ID: PCI\\VEN_8086&DEV_27CB&SUBSYS_50041458&REV_01\\3&13C0B0C5&0&EB Driver: D:\\WINDOWS\\system32\\drivers\\usbuhci.sys, 5.01.2600.5512 (English), 11/21/2008 12:00:00, 20608 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 143872 bytes Driver: D:\\WINDOWS\\system32\\usbui.dll, 5.01.2600.5512 (Hungarian), 4/14/2008 13:32:06, 85504 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 59520 bytes Name: Intel® 82801G (ICH7 Family) USB Universal Host Controller - 27CA Device ID: PCI\\VEN_8086&DEV_27CA&SUBSYS_50041458&REV_01\\3&13C0B0C5&0&EA Driver: D:\\WINDOWS\\system32\\drivers\\usbuhci.sys, 5.01.2600.5512 (English), 11/21/2008 12:00:00, 20608 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 143872 bytes Driver: D:\\WINDOWS\\system32\\usbui.dll, 5.01.2600.5512 (Hungarian), 4/14/2008 13:32:06, 85504 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 59520 bytes Name: Intel® 82801G (ICH7 Family) USB Universal Host Controller - 27C9 Device ID: PCI\\VEN_8086&DEV_27C9&SUBSYS_50041458&REV_01\\3&13C0B0C5&0&E9 Driver: D:\\WINDOWS\\system32\\drivers\\usbuhci.sys, 5.01.2600.5512 (English), 11/21/2008 12:00:00, 20608 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 143872 bytes Driver: D:\\WINDOWS\\system32\\usbui.dll, 5.01.2600.5512 (Hungarian), 4/14/2008 13:32:06, 85504 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 59520 bytes Name: Intel® 82801G (ICH7 Family) USB Universal Host Controller - 27C8 Device ID: PCI\\VEN_8086&DEV_27C8&SUBSYS_50041458&REV_01\\3&13C0B0C5&0&E8 Driver: D:\\WINDOWS\\system32\\drivers\\usbuhci.sys, 5.01.2600.5512 (English), 11/21/2008 12:00:00, 20608 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbport.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 143872 bytes Driver: D:\\WINDOWS\\system32\\usbui.dll, 5.01.2600.5512 (Hungarian), 4/14/2008 13:32:06, 85504 bytes Driver: D:\\WINDOWS\\system32\\drivers\\usbhub.sys, 5.01.2600.5512 (English), 4/13/2008 16:15:38, 59520 bytes Name: Intel® 82801GB/GR/GH (ICH7 Family) Serial ATA Storage Controller - 27C0 Device ID: PCI\\VEN_8086&DEV_27C0&SUBSYS_B0021458&REV_01\\3&13C0B0C5&0&FA Driver: D:\\WINDOWS\\system32\\DRIVERS\\pciide.sys, 5.01.2600.0000 (Hungarian), 10/27/2001 00:40:22, 3328 bytes Driver: D:\\WINDOWS\\system32\\DRIVERS\\pciidex.sys, 5.01.2600.5512 (Hungarian), 4/13/2008 16:10:30, 24960 bytes Driver: D:\\WINDOWS\\system32\\DRIVERS\\atapi.sys, 5.01.2600.5512 (English), 4/13/2008 16:10:32, 96512 bytes Name: Intel® 82801GB/GR (ICH7 Family) LPC Interface Controller - 27B8 Device ID: PCI\\VEN_8086&DEV_27B8&SUBSYS_00000000&REV_01\\3&13C0B0C5&0&F8 Driver: D:\\WINDOWS\\system32\\DRIVERS\\isapnp.sys, 5.01.2600.5512 (Hungarian), 11/21/2008 12:00:00, 37504 bytes Name: Intel® 82945G Express Chipset Family Device ID: PCI\\VEN_8086&DEV_2772&SUBSYS_D0001458&REV_02\\3&13C0B0C5&0&10 Driver: D:\\WINDOWS\\system32\\DRIVERS\\ialmnt5.sys, 6.14.0010.4497 (English), 2/7/2006 13:34:34, 1399615 bytes Driver: D:\\WINDOWS\\system32\\ialmrnt5.dll, 6.14.0010.4497 (English), 2/7/2006 13:26:16, 45697 bytes Driver: D:\\WINDOWS\\system32\\ialmdnt5.dll, 6.14.0010.4497 (English), 2/7/2006 13:26:08, 121470 bytes Driver: D:\\WINDOWS\\system32\\ialmdev5.dll, 6.14.0010.4497 (English), 2/7/2006 13:25:58, 232733 bytes Driver: D:\\WINDOWS\\system32\\ialmdd5.dll, 6.14.0010.4497 (English), 2/7/2006 13:33:32, 956029 bytes Driver: D:\\WINDOWS\\system32\\igxpxa32.cpa, 2/7/2006 13:00:58, 524850 bytes Driver: D:\\WINDOWS\\system32\\igxpxa32.vp, 2/7/2006 13:00:58, 929 bytes Driver: D:\\WINDOWS\\system32\\igxpxk32.vp, 2/7/2006 13:00:58, 58704 bytes Driver: D:\\WINDOWS\\system32\\igxpxs32.vp, 2/7/2006 13:57:44, 26752 bytes Driver: D:\\WINDOWS\\system32\\hccutils.dll, 3.00.0000.4497 (English), 2/7/2006 13:04:56, 73728 bytes Driver: D:\\WINDOWS\\system32\\igfxsrvc.dll, 3.00.0000.4497 (English), 2/7/2006 13:05:58, 61440 bytes Driver: D:\\WINDOWS\\system32\\igfxsrvc.exe, 3.00.0000.4497 (English), 2/7/2006 13:05:58, 163840 bytes Driver: D:\\WINDOWS\\system32\\igfxpph.dll, 3.00.0000.4497 (English), 2/7/2006 13:09:06, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxcpl.cpl, 3.00.0000.4497 (English), 2/7/2006 13:08:52, 81920 bytes Driver: D:\\WINDOWS\\system32\\igfxcfg.exe, 3.00.0000.4497 (English), 2/7/2006 13:08:44, 450560 bytes Driver: D:\\WINDOWS\\system32\\igfxdev.dll, 3.00.0000.4497 (English), 2/7/2006 13:05:12, 139264 bytes Driver: D:\\WINDOWS\\system32\\igfxdo.dll, 3.00.0000.4497 (English), 2/7/2006 13:06:12, 86016 bytes Driver: D:\\WINDOWS\\system32\\igfxtray.exe, 3.00.0000.4497 (English), 2/7/2006 13:09:20, 94208 bytes Driver: D:\\WINDOWS\\system32\\igfxzoom.exe, 3.00.0000.4497 (English), 2/7/2006 13:09:48, 114688 bytes Driver: D:\\WINDOWS\\system32\\hkcmd.exe, 3.00.0000.4497 (English), 2/7/2006 13:06:06, 77824 bytes Driver: D:\\WINDOWS\\system32\\igfxress.dll, 3.00.0000.4497 (English), 2/7/2006 13:09:10, 1503232 bytes Driver: D:\\WINDOWS\\system32\\igfxpers.exe, 3.00.0000.4497 (English), 2/7/2006 13:10:02, 118784 bytes Driver: D:\\WINDOWS\\system32\\igfxrara.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:10, 126976 bytes Driver: D:\\WINDOWS\\system32\\igfxrchs.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:10, 81920 bytes Driver: D:\\WINDOWS\\system32\\igfxrcht.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:10, 81920 bytes Driver: D:\\WINDOWS\\system32\\igfxrdan.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:12, 139264 bytes Driver: D:\\WINDOWS\\system32\\igfxrdeu.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:12, 155648 bytes Driver: D:\\WINDOWS\\system32\\igfxrenu.lrc, 3.00.0000.4497 (English), 2/7/2006 13:05:16, 135168 bytes Driver: D:\\WINDOWS\\system32\\igfxresp.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:14, 151552 bytes Driver: D:\\WINDOWS\\system32\\igfxrfin.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:14, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxrfra.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:14, 151552 bytes Driver: D:\\WINDOWS\\system32\\igfxrheb.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:14, 122880 bytes Driver: D:\\WINDOWS\\system32\\igfxrita.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:16, 155648 bytes Driver: D:\\WINDOWS\\system32\\igfxrjpn.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:16, 98304 bytes Driver: D:\\WINDOWS\\system32\\igfxrkor.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:16, 98304 bytes Driver: D:\\WINDOWS\\system32\\igfxrnld.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:16, 151552 bytes Driver: D:\\WINDOWS\\system32\\igfxrnor.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:18, 139264 bytes Driver: D:\\WINDOWS\\system32\\igfxrplk.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:18, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxrptb.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:18, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxrptg.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:18, 147456 bytes Driver: D:\\WINDOWS\\system32\\igfxrrus.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:20, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxrsve.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:20, 139264 bytes Driver: D:\\WINDOWS\\system32\\igfxrtha.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:20, 131072 bytes Driver: D:\\WINDOWS\\system32\\igfxrcsy.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:12, 143360 bytes Driver: D:\\WINDOWS\\system32\\igfxrell.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:12, 155648 bytes Driver: D:\\WINDOWS\\system32\\igfxrhun.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:14, 147456 bytes Driver: D:\\WINDOWS\\system32\\igfxrtrk.lrc, 3.00.0000.4497 (English), 2/7/2006 13:10:20, 139264 bytes Driver: D:\\WINDOWS\\system32\\igfxext.exe, 3.00.0000.4497 (English), 2/7/2006 13:09:54, 94208 bytes Driver: D:\\WINDOWS\\system32\\igfxexps.dll, 3.00.0000.4497 (English), 2/7/2006 13:09:54, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmrem.dll, 6.14.0010.4497 (English), 2/7/2006 13:26:12, 49152 bytes Driver: D:\\WINDOWS\\system32\\iglicd32.dll, 6.14.0010.4497 (English), 2/7/2006 13:16:40, 2310144 bytes Driver: D:\\WINDOWS\\system32\\igldev32.dll, 6.14.0010.4497 (English), 2/7/2006 13:18:30, 524288 bytes Driver: D:\\WINDOWS\\system32\\ialmudlg.exe, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 114688 bytes Driver: D:\\WINDOWS\\system32\\ialmuARA.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuARB.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuCHS.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuCHT.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuCSY.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuDAN.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:38, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuDEU.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuELL.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuENG.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuESP.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuFIN.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuFRA.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuFRC.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuHEB.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:40, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuHUN.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuITA.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuJPN.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuKOR.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuNLD.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuNOR.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuPLK.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuPTB.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuPTG.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:42, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuRUS.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuSVE.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuTHA.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\ialmuTRK.dll, 0.00.0000.0000 (English), 2/7/2006 13:10:44, 40960 bytes Driver: D:\\WINDOWS\\system32\\iAlmCoIn_v4497.dll, 1.00.1000.0001 (English), 2/7/2006 13:26:10, 61440 bytes Name: Intel® 945G/GZ/GC/P/PL PCI Express Root Port - 2771 Device ID: PCI\\VEN_8086&DEV_2771&SUBSYS_00000000&REV_02\\3&13C0B0C5&0&08 Driver: D:\\WINDOWS\\system32\\DRIVERS\\pci.sys, 5.01.2600.5512 (Hungarian), 4/14/2008 13:14:28, 67968 bytes Name: Intel® 945G/GZ/GC/P/PL Processor to I/O Controller - 2770 Device ID: PCI\\VEN_8086&DEV_2770&SUBSYS_00000000&REV_02\\3&13C0B0C5&0&00 Driver: n/a Name: Intel® 82801 PCI Bridge - 244E Device ID: PCI\\VEN_8086&DEV_244E&SUBSYS_00000000&REV_E1\\3&13C0B0C5&0&F0 Driver: D:\\WINDOWS\\system32\\DRIVERS\\pci.sys, 5.01.2600.5512 (Hungarian), 4/14/2008 13:14:28, 67968 bytes Name: Realtek RTL8169/8110 Family Gigabit Ethernet NIC Device ID: PCI\\VEN_10EC&DEV_8167&SUBSYS_E0001458&REV_10\\4&BC67B8D&0&28F0 Driver: D:\\WINDOWS\\system32\\DRIVERS\\Rtnicxp.sys, 5.681.1120.2007 (English), 11/21/2007 03:39:22, 104320 bytes ------------------ DirectX Components ------------------ ddraw.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 279552 bytes ddrawex.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 27136 bytes dxapi.sys: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 10496 bytes d3d8.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 1179648 bytes d3d8thk.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 8192 bytes d3d9.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 1689088 bytes d3dim.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 436224 bytes d3dim700.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 824320 bytes d3dramp.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 590336 bytes d3drm.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 350208 bytes d3dxof.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 47616 bytes d3dpmesh.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 34816 bytes dplay.dll: 5.00.2134.0001 Hungarian Final Retail 11/21/2008 12:00:00 33040 bytes dplayx.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 229888 bytes dpmodemx.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 48128 bytes dpwsock.dll: 5.00.2134.0001 English Final Retail 11/21/2008 12:00:00 42768 bytes dpwsockx.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 57344 bytes dplaysvr.exe: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 29696 bytes dpnsvr.exe: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 18432 bytes dpnet.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 375296 bytes dpnlobby.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 3072 bytes dpnaddr.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 3072 bytes dpvoice.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 261120 bytes dpvsetup.exe: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 83456 bytes dpvvox.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 116736 bytes dpvacm.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 21504 bytes dpnhpast.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 35328 bytes dpnhupnp.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 60928 bytes dpserial.dll: 5.00.2134.0001 Hungarian Final Retail 11/21/2008 12:00:00 54032 bytes dinput.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 163840 bytes dinput8.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 186880 bytes dimap.dll: 5.01.2600.0000 English Final Retail 11/21/2008 12:00:00 44032 bytes diactfrm.dll: 5.01.2600.0000 Hungarian Final Retail 11/21/2008 12:00:00 395264 bytes joy.cpl: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 69120 bytes gcdef.dll: 5.01.2600.0000 Hungarian Final Retail 11/21/2008 12:00:00 174080 bytes pid.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 35328 bytes dsound.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 367616 bytes dsound3d.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 1293824 bytes dswave.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 19456 bytes dsdmo.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 181248 bytes dsdmoprp.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 72192 bytes dmusic.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 104448 bytes dmband.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 28672 bytes dmcompos.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 61440 bytes dmime.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 181248 bytes dmloader.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 35840 bytes dmstyle.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 105984 bytes dmsynth.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 103424 bytes dmscript.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 82432 bytes system.dll: 1.01.4322.2407 English Final Retail 12/29/2010 20:41:59 1232896 bytes Microsoft.DirectX.Direct3D.dll: 9.05.0132.0000 English Final Retail 12/29/2010 20:56:11 473600 bytes Microsoft.DirectX.Direct3DX.dll: 5.04.0000.3900 English Final Retail 12/29/2010 20:56:08 2676224 bytes Microsoft.DirectX.Direct3DX.dll: 9.04.0091.0000 English Final Retail 12/29/2010 20:56:09 2846720 bytes Microsoft.DirectX.Direct3DX.dll: 9.05.0132.0000 English Final Retail 12/29/2010 20:56:09 563712 bytes Microsoft.DirectX.Direct3DX.dll: 9.06.0168.0000 English Final Retail 12/29/2010 20:56:09 567296 bytes Microsoft.DirectX.Direct3DX.dll: 9.07.0239.0000 English Final Retail 12/29/2010 20:56:09 576000 bytes Microsoft.DirectX.Direct3DX.dll: 9.08.0299.0000 English Final Retail 12/29/2010 20:56:10 577024 bytes Microsoft.DirectX.Direct3DX.dll: 9.09.0376.0000 English Final Retail 12/29/2010 20:56:10 577536 bytes Microsoft.DirectX.Direct3DX.dll: 9.10.0455.0000 English Final Retail 12/29/2010 20:56:10 577536 bytes Microsoft.DirectX.Direct3DX.dll: 9.11.0519.0000 English Final Retail 12/29/2010 20:56:10 578560 bytes Microsoft.DirectX.Direct3DX.dll: 9.12.0589.0000 English Final Retail 12/29/2010 20:56:11 578560 bytes Microsoft.DirectX.DirectDraw.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 145920 bytes Microsoft.DirectX.DirectInput.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 159232 bytes Microsoft.DirectX.DirectPlay.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 364544 bytes Microsoft.DirectX.DirectSound.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 178176 bytes Microsoft.DirectX.AudioVideoPlayback.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 53248 bytes Microsoft.DirectX.Diagnostics.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 12800 bytes Microsoft.DirectX.dll: 5.04.0000.2904 English Final Retail 12/29/2010 20:56:11 223232 bytes dx7vb.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 619008 bytes dx8vb.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 1227264 bytes dxdiagn.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 2113536 bytes mfc40.dll: 4.01.0000.6140 English Final Retail 11/21/2008 12:00:00 924432 bytes mfc42.dll: 6.02.4131.0000 English Final Retail 11/21/2008 12:00:00 1028096 bytes wsock32.dll: 5.01.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 24064 bytes amstream.dll: 6.05.2600.5512 English Final Retail 11/21/2008 12:00:00 70656 bytes devenum.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 59904 bytes dxmasf.dll: 6.04.0009.1133 Hungarian Final Retail 11/21/2008 12:00:00 499254 bytes mciqtz32.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 35328 bytes mpg2splt.ax: 6.05.2600.5512 English Final Retail 11/21/2008 12:00:00 148992 bytes msdmo.dll: 6.05.2600.5512 English Final Retail 11/21/2008 12:00:00 14336 bytes encapi.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 20480 bytes qasf.dll: 11.00.5721.5145 English Final Retail 11/21/2008 12:00:00 211456 bytes qcap.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 192512 bytes qdv.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 279040 bytes qdvd.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 386560 bytes qedit.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 562688 bytes qedwipes.dll: 6.05.2600.5512 English Final Retail 11/21/2008 12:00:00 733696 bytes quartz.dll: 6.05.2600.5596 Hungarian Final Retail 11/21/2008 12:00:00 1536512 bytes strmdll.dll: 4.01.0000.3936 Hungarian Final Retail 11/21/2008 12:00:00 246814 bytes iac25_32.ax: 2.00.0005.0053 English Final Retail 11/21/2008 12:00:00 199680 bytes ir41_32.ax: 4.51.0016.0003 English Final Retail 11/21/2008 12:00:00 848384 bytes ir41_qc.dll: 4.30.0062.0002 English Final Retail 11/21/2008 12:00:00 120320 bytes ir41_qcx.dll: 4.30.0064.0001 English Final Retail 11/21/2008 12:00:00 338432 bytes ir50_32.dll: 5.2562.0015.0055 English Final Retail 11/21/2008 12:00:00 755200 bytes ir50_qc.dll: 5.00.0063.0048 English Final Retail 11/21/2008 12:00:00 200192 bytes ir50_qcx.dll: 5.00.0064.0048 English Final Retail 11/21/2008 12:00:00 183808 bytes ivfsrc.ax: 5.10.0002.0051 English Final Retail 11/21/2008 12:00:00 178688 bytes mswebdvd.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 204288 bytes ks.sys: 5.03.2600.5512 Hungarian Final Retail 4/13/2008 16:46:38 141056 bytes ksproxy.ax: 5.03.2600.5512 Hungarian Final Retail 4/14/2008 13:32:36 129536 bytes ksuser.dll: 5.03.2600.5512 Hungarian Final Retail 4/14/2008 13:31:54 4096 bytes stream.sys: 5.03.2600.5512 Hungarian Final Retail 4/13/2008 16:15:16 49408 bytes mspclock.sys: 5.03.2600.5512 Hungarian Final Retail 4/13/2008 16:09:52 5376 bytes mspqm.sys: 5.01.2600.5512 Hungarian Final Retail 4/13/2008 16:09:52 4992 bytes mskssrv.sys: 5.03.2600.5512 Hungarian Final Retail 4/13/2008 16:09:54 7552 bytes swenum.sys: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 4352 bytes mpeg2data.ax: 6.05.2600.5512 English Final Retail 11/21/2008 12:00:00 118272 bytes msvidctl.dll: 6.05.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 1431552 bytes vbisurf.ax: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 30208 bytes msyuv.dll: 5.03.2600.5512 English Final Retail 11/21/2008 12:00:00 16896 bytes wstdecod.dll: 5.03.2600.5512 Hungarian Final Retail 11/21/2008 12:00:00 51200 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,0x00600800,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.5596 WMT VIH2 Fix,0x00200000,1,1,WLXVAFilt.dll,14.00.8117.0416 Record Queue,0x00200000,1,1,WLXVAFilt.dll,14.00.8117.0416 WMT Switch Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8117.0416 WMT Virtual Renderer,0x00200000,1,0,WLXVAFilt.dll,14.00.8117.0416 WMT DV Extract,0x00200000,1,1,WLXVAFilt.dll,14.00.8117.0416 WMT Virtual Source,0x00200000,0,1,WLXVAFilt.dll,14.00.8117.0416 WMT Sample Information Filter,0x00200000,1,1,WLXVAFilt.dll,14.00.8117.0416 DV Muxer,0x00400000,0,0,qdv.dll,6.05.2600.5512 Color Space Converter,0x00400001,1,1,quartz.dll,6.05.2600.5596 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.5596 WMT AudioAnalyzer,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000 VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.05.2600.5596 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 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.5596 Indeo® video 5.10 Decompression Filter,0x00640000,1,1,ir50_32.dll,5.2562.0015.0055 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.5596 SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596 MPEG Layer-3 Decoder,0x00810000,1,1,l3codecx.ax,1.05.0000.0050 MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.05.2600.5512 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.5596 MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.05.2600.5596 File Source (Netshow URL),0x00400000,0,1,wmpasf.dll,11.00.5721.5145 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.5596 Windows Media Video Decoder,0x00800000,1,1,wmv8ds32.ax,8.00.0000.4000 WMT VIH2 Fix,0x00200000,1,1,wmm2filt.dll,2.01.4026.0000 Record Queue,0x00200000,1,1,wmm2filt.dll,2.01.4026.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.5596 Windows Media source filter,0x00600000,0,2,wmpasf.dll,11.00.5721.5145 Video Renderer,0x00800001,1,0,quartz.dll,6.05.2600.5596 Frame Eater,0x00200000,1,1,wmm2filt.dll,2.01.4026.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.5596 WST Decoder,0x00600000,1,1,wstdecod.dll,5.03.2600.5512 Video Renderer,0x00400000,1,0,quartz.dll,6.05.2600.5596 File Writer,0x00200000,1,0,WLXVAFilt.dll,14.00.8117.0416 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 DVD Navigator,0x00200000,0,2,qdvd.dll,6.05.2600.5512 Overlay Mixer2,0x00400000,1,1,qdvd.dll,6.05.2600.5512 AVI Draw,0x00600064,9,1,quartz.dll,6.05.2600.5596 .RAM file Parser,0x00600000,1,0,wmpasf.dll,11.00.5721.5145 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 DV Video Decoder,0x00800000,1,1,qdv.dll,6.05.2600.5512 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 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 WMT Virtual Source,0x00200000,0,1,wmm2filt.dll,2.01.4026.0000 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 AVI Decompressor,0x00600000,1,1,quartz.dll,6.05.2600.5596 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.5596 QuickTime Movie Parser,0x00600000,1,1,quartz.dll,6.05.2600.5596 Wave Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596 MIDI Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596 Multi-file Parser,0x00400000,1,1,quartz.dll,6.05.2600.5596 File stream renderer,0x00400000,1,1,quartz.dll,6.05.2600.5596 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.5596 File Source (Async.),0x00400000,0,1,quartz.dll,6.05.2600.5596 File Source (URL),0x00400000,0,1,quartz.dll,6.05.2600.5596 WMT DV Extract,0x00200000,1,1,wmm2filt.dll,2.01.4026.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.5596 MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.05.2600.5596 Indeo® video 4.4 Decompression Filter,0x00640000,1,1,ir41_32.ax,4.51.0016.0003 Indeo® video 4.4 Compression Filter,0x00200000,1,1,ir41_32.ax,4.51.0016.0003 WDM streaming adatátalakítások: Microsoft Kernel akusztikus visszhangelnyomás,0x00000000,0,0,, Microsoft kernel - GS hullámtábla szintetizátor,0x00200000,1,1,,5.03.2600.5512 Microsoft kernel DLS-szintetizátor,0x00200000,1,1,,5.03.2600.5512 Microsoft Kernel DRM-hangdekódoló,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 MJPEG Compressor,0x00200000,0,0,quartz.dll,6.05.2600.5596 Cinepak Codec by Radius,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® 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-kodek,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 Audio Compressors: WMA Voice Encoder DMO,0x00600800,1,1,, WMAudio Encoder DMO,0x00600800,1,1,, IAC2,0x00200000,1,1,quartz.dll,6.05.2600.5596 IMA ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5596 PCM,0x00200000,1,1,quartz.dll,6.05.2600.5596 Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.05.2600.5596 ACELP.net,0x00200000,1,1,quartz.dll,6.05.2600.5596 DSP Group TrueSpeech,0x00200000,1,1,quartz.dll,6.05.2600.5596 Windows Media Audio V1,0x00200000,1,1,quartz.dll,6.05.2600.5596 Windows Media Audio V2,0x00200000,1,1,quartz.dll,6.05.2600.5596 GSM 6.10,0x00200000,1,1,quartz.dll,6.05.2600.5596 Messenger Audio Codec,0x00200000,1,1,quartz.dll,6.05.2600.5596 Microsoft G.723.1,0x00200000,1,1,quartz.dll,6.05.2600.5596 CCITT A-Law,0x00200000,1,1,quartz.dll,6.05.2600.5596 CCITT u-Law,0x00200000,1,1,quartz.dll,6.05.2600.5596 MPEG Layer-3,0x00200000,1,1,quartz.dll,6.05.2600.5596 Audio Capture Sources: PC Camera,0x00200000,0,0,qcap.dll,6.05.2600.5512 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.5596 MS GS hullámt. SW-szintetizátor,0x00200000,1,0,quartz.dll,6.05.2600.5596 WDM streaming rögzítRealtek HD Digital input,0x00200000,1,1,,5.03.2600.5512 Realtek HD Audio Input,0x00200000,1,1,,5.03.2600.5512 USB audioeszköz,0x00200000,1,1,,5.03.2600.5512 WDM streaming eszközök: Realtek HD Audio output,0x00200000,2,1,,5.03.2600.5512 WDM streaming keverMicrosoft kernel - hanghullám hangkever0x00000000,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.5596 Default DirectSound Device,0x00800000,1,0,quartz.dll,6.05.2600.5596 Default WaveOut Device,0x00200000,1,0,quartz.dll,6.05.2600.5596 DirectSound: Realtek HD Audio output,0x00200000,1,0,quartz.dll,6.05.2600.5596 WDM Streaming-rendszerRealtek 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 USB audioeszköz,0x00200000,1,1,,5.03.2600.5512 [/quote]
464
« Dátum: 2010. december 30. - 10:22:29 »
Hello! Szerintetek elmenne 1 ilyen sz*r gépen a GTA IV? Konfiguráció: Operációs rendszer neve Microsoft Windows XP Professional Verziószám 5.1.2600 Szervizcsomag 3 build 2600 Operációs rendszer gyártója Microsoft Corporation Rendszer neve FREEDOM Rendszer gyártója Gigabyte Technology Co., Ltd. Rendszer modellje 945GZM-S2 Rendszer típusa X86 alapú PC Processzor x86 Family 6 Model 22 Stepping 1 GenuineIntel ~1607 Mhz BIOS-verzió/-dátum Award Software International, Inc. F2, 2007.05.25. SMBIOS verziója 2.4 Windows könyvtár D:\\WINDOWS Rendszerkönyvtár D:\\WINDOWS\\system32 Rendszerindító eszköz \\Device\\HarddiskVolume1 Területi beállítások Magyarország Hardverabsztrakciós réteg verziószám = \"5.1.2600.5512 (xpsp.080413-2111)\" Felhasználónév FREEDOM\\Rendszergazda Idõzóna Afganisztáni téli idõ Teljes fizikai memória 2 048,00 MB Szabad fizikai memória 1,28 GB Teljes virtuális memória 2,00 GB Szabad virtuális memória 1,94 GB Lapozófájl mérete 3,84 GB Lapozófájl D:\\pagefile.sys [/quote] Tuti hogy nem, de azért gondolom megkérdezem .
465
« Dátum: 2010. december 30. - 01:05:57 »
Esetleg nem tudod kb. mennyi idõ lehet mire sok host átáll a 0.3c-re? (úgy kb.)
Oldalak: 1 ... 29 30 [31] 32 33 34
|