Advertisement
Guest User

Fix Rainbow Colors

a guest
May 14th, 2013
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. 1. Run your game at least once and exit out of it.
  2. 2. Go to your registry and navigate to "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\MostRecentApplication" (if you're using 64 bit, go to "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\MostRecentApplication")
  3. 3. Take a note of the name, game.exe, and the ID, which looks similar to this: 0x02e41c67
  4. 4. Remove the '0x' part of the ID and separate the values into pairs, like this: 02 e4 1c 67
  5. 5. Take the pairs and reverse their order, like this: 67 1c e4 02
  6. 6. Open notepad and add this:
  7.  
  8. 32 bit only
  9. Windows Registry Editor Version 5.00
  10.  
  11. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw\Compatibility\<NameOfGame>]
  12. "Flags"=hex:00,08,00,00
  13. "ID"=hex:00,00,00,00
  14. "Name"="game.exe"
  15. or
  16.  
  17. 64 bit only
  18. Windows Registry Editor Version 5.00
  19.  
  20. [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\<NameOfGame>]
  21. "Flags"=hex:00,08,00,00
  22. "ID"=hex:00,00,00,00
  23. "Name"="game.exe"
  24. *Note: Change <NameOfGame> to whatever you want, leave 'Flags' alone, enter your own ID keeping commas intact, and change 'game.exe' to whatever it is.
  25.  
  26. 7. Save it as 'fix.reg' and run it to import it to the registry.
  27.  
  28. Here's my example from 'The Hell' mod for Diablo:
  29. Windows Registry Editor Version 5.00
  30.  
  31. [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\DirectDraw\Compatibility\The Hell]
  32. "Flags"=hex:00,08,00,00
  33. "ID"=hex:8b,c1,c3,34
  34. "Name"="TH.exe"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement