Jump to content

Sex*

Members
  • Posts

    455
  • Joined

  • Last visited

Everything posted by Sex*

  1. But why Imm falling then?
  2. Outputs the dimension sucessfully
  3. Tried it...now when I press F1(bindkey) then it already starts falling. Also it gave me error at 76 line: setElementDimension ( source, 0 ) Tried to change this to this: setElementDimension ( localPlayer, 0 ) But didnt work.
  4. Tried it...now when I press F1(bindkey) then it already starts falling. Also it gave me error at 76 line: setElementDimension ( source, 0 ) Tried to change this to this: setElementDimension ( localPlayer, 0 ) But didnt work.
  5. setElementDimension ( 1 ) setElementDimension ( 2 ) setElementDimension ( 3 ) setElementDimension ( 4 ) setElementDimension ( 5 ) These are the bad arguments
  6. Tried automatic mode...after doing these stuff and restarting: stack overflow
  7. Lol Im defianetly not going to post my full code...anyway other parts are GUI anyway...so this is all I got about Dimension and stuff.
  8. WOW, something started happening atleast. Now if I press a image(dont matter which one) then the road and stuff just goes away and I fall to water. In debugscript is bad argument again...
  9. setElementDimension ( localPlayer, selectedMenu ) ?
  10. setElementDimension ( source, 0 ) function checkDxMenuSelection(button,state) if opened == false then return end if (button == "left") and (state == "down") then if selectedMenu ~= 0 then setElementDimension ( selectedMenu ) end end end function getUserMouseSelection() if opened == false then return end if isCursorShowing() == false then return 0 end local posX,posY = getCursorPosition() local mouseX, mouseY = posX * screenWidth, posY * screenHeight if (mouseX >= locA) and (mouseX < locB) and (mouseY < locHeightB) and (mouseY >= locHeight) then if not (selectedMenu == 1) then setElementDimension ( 1 ) setElementData (localPlayer,"gamemode","[gamemodes]/[race]/race", true) selectedMenu = 1 selectedImg(6) resetImg(1, true) resetImg(2, true) resetImg(3, true) resetImg(4, true) resetImg(5, true) end elseif (mouseX >= locB) and (mouseX < locC) and (mouseY <= locHeightB) and (mouseY >= locHeight) then if not (selectedMenu == 2) then setElementDimension ( 2 ) setElementData (localPlayer,"gamemode","[gamemodes]/[raceDD]/race", true) selectedMenu = 2 selectedImg(5) resetImg(1, true) resetImg(2, true) resetImg(3, true) resetImg(4, true) resetImg(6, true) end Also I duplicated and made separate paths but if I try to start RaceDD then Race stops soI cant run multiple gamemodes or wtf. Also modified mtaserver.conf <resource src="admin" startup="1" protected="0"/> <resource src="defaultstats" startup="1" protected="0"/> <resource src="helpmanager" startup="1" protected="0"/> <resource src="joinquit" startup="1" protected="0"/> <resource src="mapcycler" startup="1" protected="0"/> <resource src="mapmanager" startup="1" protected="0"/> <resource src="resourcebrowser" startup="1" protected="1" default="true"/> <resource src="resourcemanager" startup="1" protected="1"/> <resource src="scoreboard" startup="1" protected="0"/> <resource src="afk" startup="1" protected="0"/> <resource src="login" startup="1" protected="0"/> <resource src="ads" startup="1" protected="0"/> <resource src="digital_speed" startup="1" protected="0"/> <resource src="spectators" startup="1" protected="0"/> <resource src="userpanel" startup="1" protected="0"/> <resource src="deathlist" startup="1" protected="0"/> <resource src="playerblips" startup="1" protected="0"/> <resource src="gamemap" startup="1" protected="0"/> <resource src="mapratings" startup="1" protected="0"/> <resource src="timescoreboard" startup="1" protected="0"/> <resource src="info" startup="1" protected="0"/> <resource src="notice" startup="1" protected="0"/> <resource src="healthradar" startup="1" protected="0"/> <resource src="lights" startup="1" protected="0"/> <resource src="carfade" startup="1" protected="0"/> <resource src="respawn" startup="1" protected="0"/> <resource src="chat" startup="1" protected="0"/> <resource src="carteamcolor" startup="1" protected="0"/> <resource src="afk" startup="1" protected="0"/> <resource src="panel" startup="1" protected="0"/> <resource src="pm" startup="1" protected="0"/> <resource src="teamsaver" startup="1" protected="0"/> <resource src="finish" startup="1" protected="0"/> <resource src="arenas" startup="1" protected="0"/> <resource src="spawnmanager" startup="1" protected="0"/> <resource src="votemanager" startup="1" protected="0"/> <resource src="webadmin" startup="1" protected="0"/> <resource src="afkDD" startup="1" protected="0"/> <resource src="adsDD" startup="1" protected="0"/> <resource src="digital_speedDD" startup="1" protected="0"/> <resource src="spectatorsDD" startup="1" protected="0"/> <resource src="userpanelDD" startup="1" protected="0"/> <resource src="deathlistDD" startup="1" protected="0"/> <resource src="playerblipsDD" startup="1" protected="0"/> <resource src="gamemapDD" startup="1" protected="0"/> <resource src="mapratingsDD" startup="1" protected="0"/> <resource src="timescoreboardDD" startup="1" protected="0"/> <resource src="infoDD" startup="1" protected="0"/> <resource src="noticeDD" startup="1" protected="0"/> <resource src="healthradarDD" startup="1" protected="0"/> <resource src="lightsDD" startup="1" protected="0"/> <resource src="carfadeDD" startup="1" protected="0"/> <resource src="respawnDD" startup="1" protected="0"/> <resource src="chatDD" startup="1" protected="0"/> <resource src="carteamcolorDD" startup="1" protected="0"/> <resource src="afkDD" startup="1" protected="0"/> <resource src="panelDD" startup="1" protected="0"/> <resource src="pmDD" startup="1" protected="0"/> <resource src="teamsaverDD" startup="1" protected="0"/> <resource src="finishDD" startup="1" protected="0"/> <resource src="arenasDD" startup="1" protected="0"/> <resource src="RaceDD" startup="1" protected="0"/> <!-- Race is a default gamemode. Remove the following line to prevent it from starting. --> <resource src="Race" startup="1" protected="0"/>
  11. If I only change that then I have bad arguments. I meant that if I dont change other functions and I only change that function that u told.
  12. Sex*

    I cant do this?

    The errors are totally wrong..the script I changed is race_client.lua but the errors started coming from nametags.lua after race_client.lua changing.
  13. So only that and others stay the same? EDIT: If I only change that then its giving me bad arguments.
  14. So? if no arena is selected: setElementDimension ( localPlayer, 0 ) and if he/she selects an arena: function checkDxMenuSelection(button,state) if opened == false then return end if (button == "left") and (state == "down") then if selectedMenu ~= 0 then setElementDimension ( localPlayer, selectedMenu ) end end end Tried also something else in the clientside: function getUserMouseSelection() if opened == false then return end if isCursorShowing() == false then return 0 end local posX,posY = getCursorPosition() local mouseX, mouseY = posX * screenWidth, posY * screenHeight if (mouseX >= locA) and (mouseX < locB) and (mouseY < locHeightB) and (mouseY >= locHeight) then if not (selectedMenu == 1) then setElementDimension ( localPlayer, 1 ) setElementData (player,"gamemode","[gamemodes]/[race]/race", true) selectedMenu = 1 selectedImg(6) resetImg(1, true) resetImg(2, true) resetImg(3, true) resetImg(4, true) resetImg(5, true) Havent tested it yet.
  15. Oh...but what of these I got to modify?
  16. Sex*

    I cant do this?

    So I wanted to to this to my g_dxGUI but it fails, floods over my debugscript error but says that the error is from nametags.lua but thats working...so its gotta be that: g_dxGUI = { mapdisplay = dxText:create('Map: ', 2, screenHeight - dxGetFontHeight(0.4, 'bankgothic'), false, 'bankgothic', 0.6, 'left'), mapdisplayName = dxText:create('-', 55, screenHeight - dxGetFontHeight(0.4, 'bankgothic'), false, 'bankgothic',0.6, 'left'), -- nextdisplay = dxText:create('Next Map: ', 2, screenHeight - dxGetFontHeight(0.4, 'bankgothic'), false, 'bankgothic', 0.6, 'left'), nextdisplayName = dxText:create('-', 100, screenHeight - dxGetFontHeight(0.4, 'bankgothic'), false, 'bankgothic', 0.6, 'left'), -- fps = dxText:create("FPS: ", screenWidth - 182,screenHeight - 66, false, 'bankgothic', 0.7), fpsNumber = dxText:create("-", screenWidth - 130,screenHeight - 66, false, 'bankgothic', 0.7) -- } g_dxGUI.fps:color(255, 255, 255, 255) g_dxGUI.fpsNumber:color(108,123,139,255) -- g_dxGUI.fps:type("shadow", 1, 0, 0, 0, 255) g_dxGUI.fpsNumber:type("shadow", 1, 0, 0, 0, 255) -- g_dxGUI.mapdisplay:color(200,30,0,255) g_dxGUI.mapdisplayName:color(255,255,255,255) g_dxGUI.mapdisplay:type('shadow', 1, 0, 0, 0, 255) g_dxGUI.mapdisplayName:type('shadow', 1, 0, 0, 0, 255) g_dxGUI.nextdisplay:color(0,170,70,255) g_dxGUI.nextdisplayName:color(255, 255, 255, 255) g_dxGUI.nextdisplay:type('shadow', 1, 0, 0, 0, 255) g_dxGUI.nextdisplayName:type('shadow', 1, 0, 0, 0, 255) g_dxGUI.nextdisplay:visible(false) g_dxGUI.nextdisplayName:visible(false) g_GUI = { timeleftbg = guiCreateStaticImage(screenWidth-(screenWidth/5.5), 0, screenWidth/3.9, screenHeight/18, 'img/timeleft.png', false, nil), timeleft = guiCreateLabel(screenWidth-(screenWidth/2.9*0.72), screenHeight/35, screenWidth/3.8, screenHeight/30, '',false,timeleftbg), timepassed = guiCreateLabel(screenWidth-(screenWidth/2.95*0.55), screenHeight/35, screenWidth/3.8, screenHeight/30, '', false, timeleftbg), timepassedbg = guiCreateStaticImage(screenWidth-(screenWidth/7.5), 43, screenWidth/3.9, screenHeight/18, 'img/timepassed.png', false, nil), fpsping = local ping = getPlayerPing(getLocalPlayer()) local x, y = guiGetScreenSize ( ) r,g,b=0,0,0 alpha=255 local root = getRootElement() local player = getLocalPlayer() local counter = 0 local starttick local currenttick addEventHandler("onClientRender",root, function() if not starttick then starttick = getTickCount() end counter = counter + 1 currenttick = getTickCount() if currenttick - starttick >= 1000 then setElementData(player,"FPS",counter) counter = 0 starttick = false end end ) function drawStates () addEventHandler ( "onClientRender", root, pingState ) addEventHandler ( "onClientRender", root, fpsState ) end addEventHandler ( "onClientResourceStart", resourceRoot, drawStates ) function pingState() posx= x-30 posy= 60 dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r, g, b, alpha ) ) dxDrawRectangle ( posx+5, posy-4, 4,8, tocolor ( r, g, b, alpha ) ) dxDrawRectangle ( posx+10, posy-8, 4,12, tocolor ( r, g, b, alpha ) ) dxDrawRectangle ( posx+15, posy-12, 4,16, tocolor ( r, g, b, alpha ) ) dxDrawRectangle ( posx+20, posy-16, 4,20, tocolor ( r, g, b, alpha ) ) r2,g2,b2=255,255,255 alpha2=255 if ping <= 100 then dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+5, posy-4, 4,8, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+10, posy-8, 4,12, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+15, posy-12, 4,16, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+20, posy-16, 4,20, tocolor ( r2, g2, b2, alpha2 ) ) elseif ping >=101 and ping <= 200 then dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+5, posy-4, 4,8, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+10, posy-8, 4,12, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+15, posy-12, 4,16, tocolor ( r2, g2, b2, alpha2 ) ) elseif ping >=201 and ping <= 300 then dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+5, posy-4, 4,8, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+10, posy-8, 4,12, tocolor ( r2, g2, b2, alpha2 ) ) elseif ping >=301 and ping <= 400 then dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r2, g2, b2, alpha2 ) ) dxDrawRectangle ( posx+5, posy-4, 4,8, tocolor ( r2, g2, b2, alpha2 ) ) elseif ping >=401 and ping <= 500 then dxDrawRectangle ( posx, posy, 4, 4, tocolor ( r2, g2, b2, alpha2 ) ) end end function fpsState() posx2= x-55 posy2= 60 dxDrawText ( getElementData(getLocalPlayer(),"FPS"), posx2-12, posy2-6, x, y, tocolor ( 255, 255, 255, 255 ), 1.4, "default-bold" ) dxDrawText ( "FPS", posx2-13, posy2+10, x, y, tocolor ( 255, 255, 255, 255 ), 1.0, "default-bold" ) dxDrawText ( "PING", posx2+23, posy2+10, x, y, tocolor ( 255, 255, 255, 255 ), 1.0, "default-bold" ) end
  17. I dont understand without an example...
  18. Very useful information, give me an example.
  19. And how it would be defined?
  20. So? if no arena is selected: setElementDimension ( localPlayer, 0 ) and if he/she selects an arena: function checkDxMenuSelection(button,state) if opened == false then return end if (button == "left") and (state == "down") then if selectedMenu ~= 0 then setElementDimension ( localPlayer, selectedMenu ) end end end Tried also something else in the clientside: function getUserMouseSelection() if opened == false then return end if isCursorShowing() == false then return 0 end local posX,posY = getCursorPosition() local mouseX, mouseY = posX * screenWidth, posY * screenHeight if (mouseX >= locA) and (mouseX < locB) and (mouseY < locHeightB) and (mouseY >= locHeight) then if not (selectedMenu == 1) then setElementDimension ( localPlayer, 1 ) setElementData (player,"gamemode","[gamemodes]/[race]/race", true) selectedMenu = 1 selectedImg(6) resetImg(1, true) resetImg(2, true) resetImg(3, true) resetImg(4, true) resetImg(5, true) Havent tested it yet.
  21. Well, I upgraded my Windows Home Premium to Ultimate in a pirate way from Windows upgrading thing. Then today i got an error that my Windows is not genuine...then I found out that I gotta delete one file and after reboot it works good. The boot time has decreased to 55 seconds. Not perfect but good enough. But I have been noticing FPS loss after this.
  22. Xsplit doesnt eat FPS also?
  23. Hmm messed something with AVG tweaking and installed some drivers that DriverMax said that they are outdated. So my RAM usage is at the moment 1,98GB and the lowest I had were 1,46GB. But that MOM.exe is some catalyst part MY new dxdiag: ------------------ System Information ------------------ Time of this report: 6/29/2013, 17:08:42 Machine name: ADMIN-PC Operating System: Windows 7 Ultimate 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.130318-1533) Language: Estonian (Regional Setting: Estonian) System Manufacturer: Acer System Model: Aspire 5820TG BIOS: InsydeH2O Version V1.25 Processor: Intel(R) Core(TM) i5 CPU M 520 @ 2.40GHz (4 CPUs), ~2.4GHz Memory: 6144MB RAM Available OS Memory: 6006MB RAM Page File: 1821MB used, 4183MB available Windows Dir: C:\Windows DirectX Version: DirectX 11 DX Setup Parameters: Not found User DPI Setting: Using System DPI System DPI Setting: 96 DPI (100 percent) DWM DPI Scaling: Disabled DxDiag Version: 6.01.7601.17514 32bit Unicode ------------ DxDiag Notes ------------ Display Tab 1: No problems found. Sound Tab 1: No problems found. Sound Tab 2: No problems found. Input Tab: No problems found. -------------------- DirectX Debug Levels -------------------- Direct3D: 0/4 (retail) DirectDraw: 0/4 (retail) DirectInput: 0/5 (retail) DirectMusic: 0/5 (retail) DirectPlay: 0/9 (retail) DirectSound: 0/5 (retail) DirectShow: 0/6 (retail) --------------- Display Devices --------------- Card name: AMD Radeon HD 6500M/5600/5700 Series Manufacturer: Advanced Micro Devices, Inc. Chip type: AMD Radeon Graphics Processor (0x68C1) DAC type: Internal DAC(400MHz) Device Key: Enum\PCI\VEN_1002&DEV_68C1&SUBSYS_035C1025&REV_00 Display Memory: 3760 MB Dedicated Memory: 1012 MB Shared Memory: 2747 MB Current Mode: 1366 x 768 (32 bit) (60Hz) Monitor Name: Generic PnP Monitor Monitor Model: unknown Monitor Id: SEC3030 Native Mode: 1366 x 768(p) (60.003Hz) Output Type: Internal Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll Driver File Version: 8.17.0010.1140 (English) Driver Version: 8.982.0.0 DDI Version: 11 Driver Model: WDDM 1.1 Driver Attributes: Final Retail Driver Date/Size: 7/27/2012 22:13:56, 1100288 bytes WHQL Logo'd: Yes WHQL Date Stamp: Device Identifier: {D7B71EE2-2B81-11CF-E177-5623BEC2C535} Vendor ID: 0x1002 Device ID: 0x68C1 SubSys ID: 0x035C1025 Revision ID: 0x0000 Driver Strong Name: oem77.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_Manhattan:8.982.0.0:pci\ven_1002&dev_68c1 Rank Of Driver: 00E62001 Video Accel: ModeMPEG2_A ModeMPEG2_C Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) 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 {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) 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 {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps= D3D9 Overlay: Not Supported DXVA-HD: Not Supported DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled ------------- Sound Devices ------------- Description: Speakers (Realtek High Definition Audio) Default Sound Playback: Yes Default Voice Playback: Yes Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_1025035D&REV_1001 Manufacturer ID: 1 Product ID: 100 Type: WDM Driver Name: RTKVHD64.sys Driver Version: 6.00.0001.6937 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 6/5/2013 03:36:08, 3441992 bytes Other Files: Driver Provider: Realtek Semiconductor Corp. HW Accel Level: Basic Cap Flags: 0xF1F Min/Max Sample Rate: 100, 200000 Static/Strm HW Mix Bufs: 1, 0 Static/Strm HW 3D Bufs: 0, 0 HW Memory: 0 Voice Management: No EAX(tm) 2.0 Listen/Src: No, No I3DL2(tm) Listen/Src: No, No Sensaura(tm) ZoomFX(tm): No Description: Realtek Digital Output (Realtek High Definition Audio) Default Sound Playback: No Default Voice Playback: No Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0269&SUBSYS_1025035D&REV_1001 Manufacturer ID: 1 Product ID: 100 Type: WDM Driver Name: RTKVHD64.sys Driver Version: 6.00.0001.6937 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 6/5/2013 03:36:08, 3441992 bytes Other Files: Driver Provider: Realtek Semiconductor Corp. HW Accel Level: Basic Cap Flags: 0xF1F Min/Max Sample Rate: 100, 200000 Static/Strm HW Mix Bufs: 1, 0 Static/Strm HW 3D Bufs: 0, 0 HW Memory: 0 Voice Management: No EAX(tm) 2.0 Listen/Src: No, No I3DL2(tm) Listen/Src: No, No Sensaura(tm) ZoomFX(tm): No --------------------- Sound Capture Devices --------------------- Description: Microphone (Realtek High Definition Audio) Default Sound Capture: Yes Default Voice Capture: Yes Driver Name: RTKVHD64.sys Driver Version: 6.00.0001.6937 (English) Driver Attributes: Final Retail Date and Size: 6/5/2013 03:36:08, 3441992 bytes Cap Flags: 0x1 Format Flags: 0xFFFFF ------------------- DirectInput Devices ------------------- Device Name: Mouse Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Device Name: Keyboard Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Poll w/ Interrupt: No ----------- USB Devices ----------- + USB Root Hub | Vendor/Product ID: 0x8086, 0x3B34 | Matching Device ID: usb\root_hub20 | Service: usbhub | +-+ Generic USB Hub | | Vendor/Product ID: 0x8087, 0x0020 | | Location: Port_#0001.Hub_#0002 | | Matching Device ID: usb\class_09 | | Service: usbhub | | | +-+ Lenovo Optical Mouse (HID) | | | Vendor/Product ID: 0x04B3, 0x310C | | | Location: Port_#0004.Hub_#0004 | | | Matching Device ID: usb\vid_04b3&pid_310c | | | Lower Filters: Pelusblf, pelmouse | | | Service: HidUsb | | | | | +-+ HID-compliant mouse | | | | Vendor/Product ID: 0x04B3, 0x310C | | | | Matching Device ID: hid_device_system_mouse | | | | Service: mouhid ---------------- Gameport Devices ---------------- ------------ PS/2 Devices ------------ + Launch Manager | Matching Device ID: *pnp0303 | Upper Filters: DKbFltr | Service: i8042prt | + Terminal Server Keyboard Driver | Matching Device ID: root\rdp_kbd | Upper Filters: kbdclass | Service: TermDD | + Synaptics PS/2 Port Compatible TouchPad | Matching Device ID: *syn0002 | Upper Filters: SynTP | Service: i8042prt | + Terminal Server Mouse Driver | Matching Device ID: root\rdp_mou | Upper Filters: mouclass | Service: TermDD ------------------------ Disk & DVD/CD-ROM Drives ------------------------ Drive: C: Free Space: 224.8 GB Total Space: 464.5 GB File System: NTFS Model: WDC WD5000BEVT-22A0R SCSI Disk Device Drive: D: Model: TSSTcorp CDDVDW TS-U633F SCSI CdRom Device Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (Estonian), , 0 bytes -------------- System Devices -------------- Name: Intel(R) processor DRAM Controller - 0044
×
×
  • Create New...