Register

If you already have an account with us, please use the login panel below to access your account.

Results 1 to 7 of 7
  1. #1
    Graphics Team Gangsta_James's Avatar
    Join Date
    Mar 2015
    Posts
    1,281
    Post Thanks / Like

    GTA SA will crash if there's d3d9.dll

    In-Game Name: Carl_Pines
    Date: 01/06/2017
    Your Question:
    I've install a ENB and Everytime I open the game, It crashes Everytime if it detects with d3d9.dll
    I'm using Windows 7 so.. Directx9.0 will work


  2. #2
    8 Year Veteran Rose ♥'s Avatar
    Join Date
    Dec 2013
    Location
    Classified
    Posts
    598
    In-Game Name(s)
    Rőz
    Post Thanks / Like
    Quote Originally Posted by Lucifer. View Post
    Its ur d3d9.dll, get this

    https://www.microsoft.com/en-us/down...s.aspx?id=8109

    Delete your gta_sa.set in your documents too.




    Open your notepad program, paste this
    Code:
    @echo off
    color 17
    set scriptversion=v1.1
    Title Windows 8/8.1 ENBSeries 0.248 compatibility script %scriptversion% by Marty McFly, Craank_AG
    
    echo.
    echo  .:[ Windows 8/8.1 ENBSeries 0.248 startup utility %scriptversion% ]:.
    echo           .:[ Authors: Marty McFly, Craank_AG ]:.
    echo                 .:[ Exclusive for MMGE ]:.
    echo.
    
    REM Gets the SID of the current logged in user, needed for wiping the registry values which cause issues with ENB 0.248
    
    for /f "delims=" %%i in ('wmic useraccount where "name='%UserName%'" get sid /value') do (
      for /f "delims=" %%j in ("%%i") do set "%%j"
    )
    
    REM Sets batch file dir as working directory, since batch files ran as admin use system32 by default
    
    pushd %~dp0 >nul 2>&1
    
    REM Checks existance of problematic registry keys and deletes them thereafter, plus giving out proper message.
    
    REG Query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\Direct3D\MostRecentApplication" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\Direct3D\MostRecentApplication" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\MostRecentApplication" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\MostRecentApplication" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REM Finally starts the GTA SA exe file after everything is done.
    
    echo. [startup util] Done. Starting Grand Theft Auto: San Andreas
    start SAMP.exe
    pause
    Save the file in your main directory as startup.bat (make sure you select "all files", not just .txt)

    Open the .bat as administrator and then start SAMP



    OR download the .bat from here and put it in your main directory

    http://www.mediafire.com/download/45...N_AS_ADMIN.bat


    if none of this fixes your problem, shoot me a vm/pm
    This.

    Original Link: http://www.gta-sarp.com/forums/showt...=1#post1518157
    Water. Earth. Fire. Air. Long ago, the four nations lived together in harmony. Then, everything changed when the Fire Nation attacked.

  3. #3
    8 Year Veteran Rev Reigns's Avatar
    Join Date
    Sep 2015
    Posts
    1,589
    Post Thanks / Like
    Pending poster if the above answer helps you sort out the problem.

    12 hours.

  4. #4
    Graphics Team Gangsta_James's Avatar
    Join Date
    Mar 2015
    Posts
    1,281
    Post Thanks / Like
    Quote Originally Posted by Rose ♥ View Post
    . Its ur d3d9.dll, get this

    https://www.microsoft.com/en-us/down...s.aspx?id=8109

    Delete your gta_sa.set in your documents too.




    Open your notepad program, paste this

    Code:
    @echo off
    color 17
    set scriptversion=v1.1
    Title Windows 8/8.1 ENBSeries 0.248 compatibility script %scriptversion% by Marty McFly, Craank_AG
    
    echo.
    echo  .:[ Windows 8/8.1 ENBSeries 0.248 startup utility %scriptversion% ]:.
    echo           .:[ Authors: Marty McFly, Craank_AG ]:.
    echo                 .:[ Exclusive for MMGE ]:.
    echo.
    
    REM Gets the SID of the current logged in user, needed for wiping the registry values which cause issues with ENB 0.248
    
    for /f "delims=" %%i in ('wmic useraccount where "name='%UserName%'" get sid /value') do (
      for /f "delims=" %%j in ("%%i") do set "%%j"
    )
    
    REM Sets batch file dir as working directory, since batch files ran as admin use system32 by default
    
    pushd %~dp0 >nul 2>&1
    
    REM Checks existance of problematic registry keys and deletes them thereafter, plus giving out proper message.
    
    REG Query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%\Software\Microsoft\Internet Explorer\LowRegistry\Audio\PolicyConfig\PropertyStore" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\Direct3D\MostRecentApplication" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\Direct3D\MostRecentApplication" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REG Query "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\MostRecentApplication" >nul 2>&1
    if %errorlevel%==0 ( 
    	REG Delete "HKEY_USERS\%SID%_Classes\VirtualStore\MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\MostRecentApplication" /f
    	echo. [startup util] Registry entry successfully deleted!
    ) else (
    	echo. [startup util] Registry entry not found, skipping. 
    ) 
    
    REM Finally starts the GTA SA exe file after everything is done.
    
    echo. [startup util] Done. Starting Grand Theft Auto: San Andreas
    start SAMP.exe
    pause
    Save the file in your main directory as startup.bat (make sure you select "all files", not just .txt)

    Open the .bat as administrator and then start SAMP



    OR download the .bat from here and put it in your main directory

    http://www.mediafire.com/download/45...N_AS_ADMIN.bat



    if none of this fixes your problem, shoot me a vm/pm
    The link to Microsoft is not working, but on the other methods, I'll try this method when I'm on to my PC

  5. #5
    Graphics Team Gangsta_James's Avatar
    Join Date
    Mar 2015
    Posts
    1,281
    Post Thanks / Like
    Answered.

  6. #6
    8 Year Veteran Rev Reigns's Avatar
    Join Date
    Sep 2015
    Posts
    1,589
    Post Thanks / Like
    Pending closure.

  7. #7
    The Phoenix's Avatar
    Join Date
    Nov 2015
    Location
    New York, NY
    Posts
    2,651
    In-Game Name(s)
    Ramiro Berrera.
    Post Thanks / Like
    Answered L&A.
    Youngest in charge.


 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Click to connect to Discord (San Andreas Roleplay)Click to go to the official San Andreas Multiplayer websiteDownload Teamspeak