Jump to content

LooooP

Members
  • Posts

    103
  • Joined

  • Last visited

Posts posted by LooooP

  1. I've recently updated my GPU driver to newest version (14.4) and since then MTA became unplayable, while in the Main Menu I have ~33 FPS, when I join FFS Gaming I have 1~2 FPS, when the game loads completely I have 6 FPS :cry:

    Some infos:

    MTA-SA 1.3.5 r6411

    Driver: AMD Catalyst 14.4

    GPU: HD7850

    CPU: Core i5 2500K

    Windows 7 x64

    * This problem doesn't happens with MTA-SA 1.4 EIR r6305

  2. The sniper scope and the silencer are just objects in the SA world, he is just attaching it to the weapon. As you can see they don't do anything (AK's aim still the same even with the scope)

  3. Oh God... more RAM won't increase your FPS. You're using an onboard GPU (like me), that's what you'll get with your old PC, deal with it (the best you can do is lower all graphics settings). I'm playing with 15~30 FPS on lowest settings

  4. addEventHandler('onClientResourceStart', getResourceRootElement(getThisResource()), function () 
        carrosWindow = guiCreateWindow ( 100, 100, 175, 200, "Criador de Carros", false ) 
        carrosList = guiCreateGridList ( 0.05, 0.10, 0.9, 0.7, true, carrosWindow ) 
        column = guiGridListAddColumn ( carrosList, "Carros", 0.85 ) 
        carrosCreate = guiCreateButton ( 05, 170, 85, 45, "Criar", false, carrosWindow ) 
        carrosClose = guiCreateButton ( 110, 170, 50, 45, "Feichar", false, carrosWindow ) 
        guiWindowSetSizable ( carrosWindow, false ) 
        carrosMarker = createMarker ( 1507.860, -1714.509, 13.046, "cylinder", 1.5, 255, 250, 110, 100 ) 
        --guiSetVisible( carrosWindow, false ) 
    end) 
      
    addEventHandler('onClientMarkerHit', root, function(hitPlayer) 
        if source == carrosMarker and hitPlayer == localPlayer and not isPedInVehicle ( localPlayer ) then 
            guiSetVisible ( carrosWindow, true ) 
            showCursor ( true ) 
        end 
    end) 
    

    Pronto

×
×
  • Create New...