Jump to content

sora+

Members
  • Posts

    46
  • Joined

  • Last visited

Posts posted by sora+

  1. So, i got a little problem with this script.

    For some reason the vehicle won't spawn when i do double click on it. neither the server-side event.

    Here's the code:

    Server:

      
    addEvent("spawnCarGS", true) 
    addEventHandler("SpawnCarGS", root, 
     function( Vehicle, localPlayer ) 
      outputChatBox("tits", root) 
      local x, y, z = getElementPosition( localPlayer ) 
       vModel = getElementData(v, "vehicle.datavModel")  
       vName = getElementData(v, "vehicle.datavName") 
       colr1 = getElementData(v, "vehicle.datacolr1") 
       colg1 = getElementData(v, "vehicle.datacolg1") 
       colb1 = getElementData(v, "vehicle.datacolb1") 
       colr2 = getElementData(v, "vehicle.datacolr2") 
       colg2 = getElementData(v, "vehicle.datacolg2") 
       colb2 = getElementData(v, "vehicle.datacolb2") 
       colr3 = getElementData(v, "vehicle.datacolr3") 
       colg3 = getElementData(v, "vehicle.datacolg3") 
       colb3 = getElementData(v, "vehicle.datacolb3") 
       colr4 = getElementData(v, "vehicle.datacolr4") 
       colg4 = getElementData(v, "vehicle.datacolg4") 
       colb4 = getElementData(v, "vehicle.datacolb4") 
       upgrades = getElementData(v, "vehicle.dataupgrades", upgrades, true) 
       Veh = createVehicle(vModel, x, y, z) 
       setVehicleColor( Veh, colr1, colg1, colb1, colr2, colg2, colb2, colr3, colg3, colb3, colr4, colg4, colb4 ) 
       warpPedIntoVehicle(localPlayer, Veh) 
        for upgradeKey, upgradeValue in ipairs">ipairs">ipairs ( upgrades ) do 
         addVehicleUpgrade ( Veh, upgradeValue ) 
        end 
       end 
      ) 
      
     
    

    Client:

      
      GarageW = guiCreateWindow(277,227,198,425,"My Garage",false) 
      guiWindowSetSizable(GarageW,false) 
      Add = guiCreateButton(15,389,169,22,"Add Current Vehicle",false,GarageW) 
      GarageGL = guiCreateGridList(9,24,180,359,false,GarageW) 
      guiGridListSetSelectionMode(GarageGL,2) 
      Name = guiGridListAddColumn(GarageGL,"Vehicle Name",0.6) 
      guiGridListAddColumn(GarageGL,"ID",0.2) 
      guiSetVisible(GarageW, false) 
      
    function bindF2() 
    bindKey ("F2","down", 
     function() 
     if guiGetVisible(GarageW) == false then 
      guiSetVisible(GarageW, true) 
      showCursor(true) 
      addEventHandler("onClientGUIClick",Add,AddF) 
     else 
      guiSetVisible(GarageW, false) 
      showCursor(false) 
      removeEventHandler("onClientGUIClick",Add,AddF) 
     end 
    end 
    ) 
    end 
      
    addEventHandler("onClientResourceStart",root,bindF2) 
      
    function AddF() 
     local v = getPedOccupiedVehicle( localPlayer ) 
      if v then 
       vModel = getElementModel( v ) 
       vName = getVehicleNameFromModel( vModel ) 
       local colr1, colg1, colb1, colr2, colg2, colb2, colr3, colg3, colb3, colr4, colg4, colb4 = getVehicleColor( v ) 
       local upgrades = getVehicleUpgrades ( v ) 
       setElementData(v, "vehicle.datavModel", vModel)  
       setElementData(v, "vehicle.dataNvName", vName) 
       setElementData(v, "vehicle.datacolr1", colr1, true) 
       setElementData(v, "vehicle.datacolg1", colg1, true) 
       setElementData(v, "vehicle.datacolb1", colb1, true) 
       setElementData(v, "vehicle.datacolr2", colr2, true) 
       setElementData(v, "vehicle.datacolg2", colg2, true) 
       setElementData(v, "vehicle.datacolb2", colb2, true) 
       setElementData(v, "vehicle.datacolr3", colr3, true) 
       setElementData(v, "vehicle.datacolg3", colg3, true) 
       setElementData(v, "vehicle.datacolb3", colb3, true) 
       setElementData(v, "vehicle.datacolr4", colr4, true) 
       setElementData(v, "vehicle.datacolg4", colg4, true) 
       setElementData(v, "vehicle.datacolb4", colb4, true) 
       setElementData(v, "vehicle.dataupgrades", upgrades, true) 
       local RowName = guiGridListAddRow ( GarageGL ) 
                guiGridListSetItemText ( GarageGL, RowName, Name, vName, false, false ) 
       addEventHandler ( "onClientGUIDoubleClick", GarageGL, onDoubleClick) 
        end 
       end 
        
    function onDoubleClick() 
            if ( ( state == "down" ) and ( gui == true ) and ( source == GarageGL ) ) then 
                    -- get the player name from the selected row, first column  
                    local Vehicle = guiGridListGetItemText ( GarageGL, guiGridListGetSelectedItem ( GarageGL ), 1 ) 
        triggerServerEvent("spawnCarGS",root, Vehicle, localPlayer) 
       end 
      end 
      
    

    _________________

    Thanks in advance.

  2. maybe try getting the vehicles' last collision before being pushed to sea with another vehicle?

    onClientVehicleCollision

    other wise maybe you can get each vehicle by id, make a colsphere around it. Once the player pushes the other to sea mta will detect the colsphere and fetch you the id and name of the player..

  3. The function:
    takeWeapon 
    

    is server side, and

    getLocalPlayer() 
    

    is client side only.

    P.S: That's not the right way to use bindKey in a server side.

    My bad , didn't notice the client-only and server-only thingy.

    Anyways , you can still use triggerServerEvent @ topic starter

  4. You should atleast give a try by yourself, no one here will make scripts for you.(unless they are too nice :P)

    Use

    https://wiki.multitheftauto.com/wiki/GetPedWeapon -- For getting the local weapon

    https://wiki.multitheftauto.com/wiki/TakeWeapon -- To remove the weapon

    https://wiki.multitheftauto.com/wiki/AddCommandHandler -- To have a cmd for it.

    https://wiki.multitheftauto.com/wiki/BindKey -- To bind a key for the cmd.

    This function will remove a grenade if g is pressed.

      
    function removeit() 
    Androm = getLocalPlayer() 
    takeWeapon (Androm,16) 
    end 
    addCommandHandler ( "grenade", removeit ) 
    bindKey("grenade","down"g") 
      
    

    i hope thats what you were looking for , i seriously didn't understand what you ment.

  5. Hmm you should also fix your post which has my nick on it as the GTA-AR Moderator lol.

    Hello once more.

    We found the hackers which Hacked NPG.

    iNu9aiF is an owner of GTA - AR, also known as GTA - ARAB ( http://www.gta-arab.com/gt/ ) server or

    [GTA-AR]!Hajwalah and Drift Ksa Saudi http://www.Gta-Arab.com~~~

    and the Sora+ is an Moderator of GTA - AR.

    We recommend to BAN their serials.

    Oh, and also:

    http://www.gta-arab.com/gt/showthread.php?t=33644

    and the Owner:

    http://www.gta-arab.com/gt/showthread.php?t=20827

    Also, we recommend not to play on their servers due your own security,

    Regards,

    The NPG Team

    Lag

    It's sorta fixed , i'm getting around 3 fps lower. I'm good with that , thanks for your help!

    By the way , the audio driver is working perfect. It even had a warning showing that the driver has been uptated.

    Lag

    Alright , i've re-installed the Audio driver , repaired the ethernet driver , and re-installed the wireless driver.

    Dxdiag:

      
     
    ------------------
    System Information
    ------------------
    Time of this report: 1/26/2012, 18:38:50
           Machine name: N/A
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: HP G72 Notebook PC
                   BIOS: Default System BIOS
              Processor: Pentium(R) Dual-Core CPU       T4500  @ 2.30GHz (2 CPUs), ~2.3GHz
                 Memory: 3072MB RAM
    Available OS Memory: 3002MB RAM
              Page File: 2028MB used, 3975MB 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.
              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: Mobile Intel(R) 4 Series Express Chipset Family
           Manufacturer: Intel Corporation
              Chip type: Mobile Intel(R) 4 Series Express Chipset Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_2A42&SUBSYS_1484103C&REV_07
         Display Memory: 1309 MB
       Dedicated Memory: 64 MB
          Shared Memory: 1245 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: LGD027A
            Native Mode: 1600 x 900(p) (60.080Hz)
            Output Type: Internal
            Driver Name: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Driver File Version: 8.15.0010.2555 (English)
         Driver Version: 8.15.10.2555
            DDI Version: 10
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 10/13/2011 12:05:50, 6549504 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B78E66-6902-11CF-777A-8E34A7C2C535}
              Vendor ID: 0x8086
              Device ID: 0x2A42
              SubSys ID: 0x1484103C
            Revision ID: 0x0007
     Driver Strong Name: oem82.inf:IntelGfx.NTamd64.6.0:iCNT0:8.15.10.2555:pci\ven_8086&dev_2a42
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C
       Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend 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 VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
     
    -------------
    Sound Devices
    -------------
                Description: Speakers (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0270&SUBSYS_103C1484&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 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.6037 (English)
          Driver Attributes: Final Retail
              Date and Size: 1/29/2010 14:48:44, 2260256 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, 0x2936
    | Matching Device ID: usb\root_hub
    | Service: usbhub
     
    ----------------
    Gameport Devices
    ----------------
     
    ------------
    PS/2 Devices
    ------------
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *pnp0f13
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x045E, 0x0083
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
     
    ------------------------
    Disk & DVD/CD-ROM Drives
    ------------------------
          Drive: C:
     Free Space: 56.8 GB
    Total Space: 290.3 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: D:
     Free Space: 2.4 GB
    Total Space: 14.6 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: E:
     Free Space: 0.1 GB
    Total Space: 0.1 GB
    File System: FAT32
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: Q:
          Model: n/a
     
          Drive: F:
          Model: hp DVD RW AD-7701H
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
     
    --------------
    System Devices
    --------------
         Name: Intel(R) ICH9 Family PCI Express Root Port 2 - 2942
    Device ID: PCI\VEN_8086&DEV_2942&SUBSYS_1484103C&REV_03\3&21436425&0&E1
       Driver: n/a
     
         Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
    Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_1484103C&REV_03\3&21436425&0&EA
       Driver: n/a
     
         Name: Realtek RTL8191SE 802.11b/g/n WiFi Adapter
    Device ID: PCI\VEN_10EC&DEV_8171&SUBSYS_1467103C&REV_10\4&40342EF&0&00E0
       Driver: n/a
     
         Name: Intel(R) ICH9 Family PCI Express Root Port 1 - 2940
    Device ID: PCI\VEN_8086&DEV_2940&SUBSYS_1484103C&REV_03\3&21436425&0&E0
       Driver: n/a
     
         Name: Intel(R) ICH9 Family USB Universal Host Controller - 2935
    Device ID: PCI\VEN_8086&DEV_2935&SUBSYS_1484103C&REV_03\3&21436425&0&E9

    Lag

    Done! Installing took forever , but it is done. I already had 3 programs installed and uptated so i didn't uptate them.

    dxdiag

      
    ------------------
    System Information
    ------------------
    Time of this report: 1/25/2012, 18:07:15
           Machine name: N/A
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: HP G72 Notebook PC
                   BIOS: Default System BIOS
              Processor: Pentium(R) Dual-Core CPU       T4500  @ 2.30GHz (2 CPUs), ~2.3GHz
                 Memory: 3072MB RAM
    Available OS Memory: 3002MB RAM
              Page File: 1710MB used, 4293MB 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.
              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: Mobile Intel(R) 4 Series Express Chipset Family
           Manufacturer: Intel Corporation
              Chip type: Mobile Intel(R) 4 Series Express Chipset Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_2A42&SUBSYS_1484103C&REV_07
         Display Memory: 1309 MB
       Dedicated Memory: 64 MB
          Shared Memory: 1245 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: LGD027A
            Native Mode: 1600 x 900(p) (60.080Hz)
            Output Type: Internal
            Driver Name: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Driver File Version: 8.15.0010.2555 (English)
         Driver Version: 8.15.10.2555
            DDI Version: 10
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 10/13/2011 12:05:50, 6549504 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B78E66-6902-11CF-777A-8E34A7C2C535}
              Vendor ID: 0x8086
              Device ID: 0x2A42
              SubSys ID: 0x1484103C
            Revision ID: 0x0007
     Driver Strong Name: oem82.inf:IntelGfx.NTamd64.6.0:iCNT0:8.15.10.2555:pci\ven_8086&dev_2a42
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C
       Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend 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 VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
     
    -------------
    Sound Devices
    -------------
                Description: Speakers (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0270&SUBSYS_103C1484&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 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.6037 (English)
          Driver Attributes: Final Retail
              Date and Size: 1/29/2010 14:48:44, 2260256 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, 0x2936
    | Matching Device ID: usb\root_hub
    | Service: usbhub
     
    ----------------
    Gameport Devices
    ----------------
     
    ------------
    PS/2 Devices
    ------------
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *pnp0f13
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x045E, 0x0083
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
     
    ------------------------
    Disk & DVD/CD-ROM Drives
    ------------------------
          Drive: C:
     Free Space: 59.9 GB
    Total Space: 290.3 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: D:
     Free Space: 2.4 GB
    Total Space: 14.6 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: E:
     Free Space: 0.1 GB
    Total Space: 0.1 GB
    File System: FAT32
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: Q:
          Model: n/a
     
          Drive: F:
          Model: hp DVD RW AD-7701H
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
     
    --------------
    System Devices
    --------------
         Name: Intel(R) ICH9 Family PCI Express Root Port 2 - 2942
    Device ID: PCI\VEN_8086&DEV_2942&SUBSYS_1484103C&REV_03\3&21436425&0&E1
       Driver: n/a
     
         Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
    Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_1484103C&REV_03\3&21436425&0&EA
       Driver: n/a
     
         Name: Realtek RTL8191SE 802.11b/g/n WiFi Adapter
    Device ID: PCI\VEN_10EC&DEV_8171&SUBSYS_1467103C&REV_10\4&40342EF&0&00E0
       Driver: n/a
     
         Name: Intel(R) ICH9 Family PCI Express Root Port 1 - 2940
    Device ID: PCI\VEN_8086&DEV_2940&SUBSYS_1484103C&REV_03\3&21436425&0&E0
       Driver: n/a
     
         Name: Intel(R) ICH9 Family USB Universal Host Controller - 2935
    Device ID: PCI\VEN_8086&DEV_2935&SUBSYS_1484103C&REV_03\3&21436425&0&E9
       Driver: n/a

    Lag

    My pc is pretty low , but i used to have around 32 - 45 fps at most..But these days i'm gettin around 10 fps..

    Here the dxdiag report you asked for:

      
     
    ------------------
    System Information
    ------------------
    Time of this report: 1/25/2012, 16:33:48
           Machine name: N/A
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.110622-1506)
               Language: English (Regional Setting: English)
    System Manufacturer: Hewlett-Packard
           System Model: HP G72 Notebook PC
                   BIOS: Default System BIOS
              Processor: Pentium(R) Dual-Core CPU       T4500  @ 2.30GHz (2 CPUs), ~2.3GHz
                 Memory: 3072MB RAM
    Available OS Memory: 3002MB RAM
              Page File: 3390MB used, 2613MB 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.
              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: Mobile Intel(R) 4 Series Express Chipset Family
           Manufacturer: Intel Corporation
              Chip type: Mobile Intel(R) 4 Series Express Chipset Family
               DAC type: Internal
             Device Key: Enum\PCI\VEN_8086&DEV_2A42&SUBSYS_1484103C&REV_07
         Display Memory: 1309 MB
       Dedicated Memory: 64 MB
          Shared Memory: 1245 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: LGD027A
            Native Mode: 1600 x 900(p) (60.080Hz)
            Output Type: Internal
            Driver Name: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Driver File Version: 8.15.0010.2202 (English)
         Driver Version: 8.15.10.2202
            DDI Version: 10
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 8/25/2010 19:36:02, 6547968 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B78E66-6902-11CF-167B-8E34A7C2C535}
              Vendor ID: 0x8086
              Device ID: 0x2A42
              SubSys ID: 0x1484103C
            Revision ID: 0x0007
     Driver Strong Name: oem10.inf:Intel.Mfg.NTamd64:iCNT0:8.15.10.2202:pci\ven_8086&dev_2a42
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C ModeWMV9_B ModeWMV9_C ModeVC1_B ModeVC1_C
       Deinterlace Caps: {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend 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 VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
                         {BF752EF6-8CC4-457A-BE1B-08BD1CAEEE9F}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_EdgeFiltering
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY VideoProcess_AlphaBlend
           D3D9 Overlay: Supported
                DXVA-HD: Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
     
    -------------
    Sound Devices
    -------------
                Description: Speakers (Realtek High Definition Audio)
     Default Sound Playback: Yes
     Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0270&SUBSYS_103C1484&REV_1001
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 1/29/2010 14:48:44, 2260256 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.6037 (English)
          Driver Attributes: Final Retail
              Date and Size: 1/29/2010 14:48:44, 2260256 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
     
                Description: Stereo Mix (Realtek High Definition Audio)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: RTKVHD64.sys
             Driver Version: 6.00.0001.6037 (English)
          Driver Attributes: Final Retail
              Date and Size: 1/29/2010 14:48:44, 2260256 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, 0x2936
    | Matching Device ID: usb\root_hub
    | Service: usbhub
     
    ----------------
    Gameport Devices
    ----------------
     
    ------------
    PS/2 Devices
    ------------
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *pnp0f13
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x045E, 0x0083
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
     
    ------------------------
    Disk & DVD/CD-ROM Drives
    ------------------------
          Drive: C:
     Free Space: 56.5 GB
    Total Space: 290.3 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: D:
     Free Space: 2.4 GB
    Total Space: 14.6 GB
    File System: NTFS
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: E:
     Free Space: 0.1 GB
    Total Space: 0.1 GB
    File System: FAT32
          Model: WDC WD3200BEVT-60A23T0
     
          Drive: Q:
          Model: n/a
     
          Drive: F:
          Model: hp DVD RW AD-7701H
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7601.17514 (English), , 0 bytes
     
    --------------
    System Devices
    --------------
         Name: Intel(R) ICH9 Family PCI Express Root Port 2 - 2942
    Device ID: PCI\VEN_8086&DEV_2942&SUBSYS_1484103C&REV_03\3&21436425&0&E1
       Driver: n/a
     
         Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
    Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_1484103C&REV_03\3&21436425&0&EA
       Driver: n/a
     

    Lag

    I've gotten no idea , but ever since i've downloaded mta 1.3 i've been getting around 10-20 fps all the time..I set everything to low like i always do but still nothing works , any help?

  6. Hello once more.

    We found the hackers which Hacked NPG.

    iNu9aiF is an owner of GTA - AR, also known as GTA - ARAB ( http://www.gta-arab.com/gt/ ) server or

    [HD]kSA~S3D~~[Hajwalah^7rb~falah]~S3D~KSA[HD]/999~b7~GTA AR~~al3grb...

    They are using other server's tags, like you see, because they are used to be such kids.

    Second one, Sora+ is an Moderator of GTA - AR.

    We recommend to BAN their serials.

    Oh, and also:

    memberlist.php?mode=viewprofile&u=55665

    is equal to:

    http://www.gta-arab.com/gt/showthread.php?t=33644

    and the Owner:

    http://www.gta-arab.com/gt/showthread.php?t=20827

    Also, we recommend not to play on their servers due your own security,

    Regards,

    The NPG Team

    Dude you're making false statements for f*cks sake , i'm not that SoRa guy who is 13 years old , i make DM maps. Think before you post something here , now you are blaming me for your poorly scripted server? Secondly , i'm american , not arabic..

    Here is something i wrote for you , incase you didn't read it you will read it here.

    And also , i host a Mapping server for mapping / script testing needs. I don't own any SA clan or something.

    Sorry for the offtopic, but "sora+", do you use or did used the nickname below ?

    |S.s|SoRa<3SaRa

    That guy uses the nick as me , he's been using it for 5 months as i can remember. I've been playing mta for a whole year now so i'm pretty much original , even though i got so many DM / DD maps.

    Don't get confused with me and that 13 year old , thanks ^^

    -Edit-

    Then i found one dumbf* :

    viewtopic.php?f=5&t=39055&p=399058#p399058

    #ff1000|S.s|SoRa<3SaRa logged in as 'sora' (IP: 94.96.5.117 Serial: F0441377B8B78A749549A1C84DBAA3B2)

    Don't help to this :~.

    I'm not even the "hacker" you're thinking of , don't believe me? Checkout my DM maps made for ffs , that hacker can't map.

    To be more specific , i made 19 maps yet for DM.

    Here are some , incase you don't believe me..

    Oblivion:

    Passion: https://www.youtube.com/watch?v=_EWFi16mlGE

    Electro city: https://www.youtube.com/watch?v=0CxSOCZjZx8

    Listen to your heart: https://www.youtube.com/watch?v=Ay2X9Fz4 ... re=related

    It's a new generation: https://www.youtube.com/watch?v=O4-02sZE ... re=related

    Epicity: https://www.youtube.com/watch?v=F_egVG5y6yc

    Train system: https://www.youtube.com/watch?v=wKncL20V ... re=related

    Not afraid: https://www.youtube.com/watch?v=fpkuhkG3 ... re=related

    Eternal Universe:

    Revolutionary Civilization(latestmap):

    i can't believe people get confused with "sora+"..

  7. Sorry for the offtopic, but "sora+", do you use or did used the nickname below ?

    |S.s|SoRa<3SaRa

    That guy uses the nick as me , he's been using it for 5 months as i can remember. I've been playing mta for a whole year now so i'm pretty much original , even though i got so many DM / DD maps.

    Don't get confused with me and that 13 year old , thanks ^^

    -Edit-

    Then i found one dumbf* :

    viewtopic.php?f=5&t=39055&p=399058#p399058

    #ff1000|S.s|SoRa<3SaRa logged in as 'sora' (IP: 94.96.5.117 Serial: F0441377B8B78A749549A1C84DBAA3B2)

    Don't help to this :~.

    I'm not even the "hacker" you're thinking of , don't believe me? Checkout my DM maps made for ffs , that hacker can't map.

    To be more specific , i made 19 maps yet for DM.

    Here are some , incase you don't believe me..

    Oblivion:

    Passion: https://www.youtube.com/watch?v=_EWFi16mlGE

    Electro city: https://www.youtube.com/watch?v=0CxSOCZjZx8

    Listen to your heart: https://www.youtube.com/watch?v=Ay2X9Fz4 ... re=related

    It's a new generation: https://www.youtube.com/watch?v=O4-02sZE ... re=related

    Epicity: https://www.youtube.com/watch?v=F_egVG5y6yc

    Train system: https://www.youtube.com/watch?v=wKncL20V ... re=related

    Not afraid: https://www.youtube.com/watch?v=fpkuhkG3 ... re=related

    Eternal Universe:

    Revolutionary Civilization(latestmap):

  8. addEventHandler("onClientPlayerWasted", getRootElement(), 
    function() 
        if ( source == localPlayer and isPlayerDead ( localPlayer ) then 
          guiSetVisible ( menu, true ) 
          showCursor (true) 
        end 
    end) 
    

    I get an error , something like expected ')' near 'end' , so i tried editing it and it still doesn't seem to work...

×
×
  • Create New...