Hi!
I fixed the graphical bugs! I managed to modify the game files to make it all work in 1920x1080. Both the HUD and menus work as they should. This is how to do it (at your own risk):
1) Get a program which is capable of editing .FAR-files. I used
FarOut which can be found here:
http://www.paladins-place.org/FarOut156.zip2) If you are using
FarOut, you also need
Visual Basic 6.0 Runtime Plus which is required for
FarOut to work. Can be found here:
https://sourceforge.net/projects/vb6extendedruntime/files/latest/download3) Download
3_images.rar attached in this post and unpack it. These images are modified to fit 1920x1080.
(Sidenote: You can modify these images to work for other resolutions aswell. Make sure
PanelBack.bmp is 220px shorter than your custom resolution width. I used
GIMP because it preserves the .BMP-format needed. Make sure you check
'Run-Length Encoded' and
'Do not write color space information' while exporting your modified images.)
4) Locate this folder:
C:\Program Files (x86)\Maxis\The Sims\UIGraphics5) Make a backup of the following 3 files. Then move the 3 original files to a temporary place (I used the desktop):
- UIGraphics.far
- Res_CPanel.RT
- Res_Nbhd.RT
6) Start
FarOut.exe and open the file
UIGraphics.far. Press
'Add entry' and add the 3 images (one by one) you downloaded earlier:
- PanelBack.bmp
- largeback.bmp
- dlgframe_1024x768.bmp
Press
'Save' and save the file.
7) Now open
Res_CPanel.RT using
Notepad. Locate the following line:
Code:
{BITMAP,kUniversalCPBkg,"CPanel/Backgrounds/PanelBack.BMP"}
and replace it with
Code:
{BITMAP,kUniversalCPBkg,"PanelBack.BMP"}
Save the file.
8) Now open
Res_Nbhd.RT using
Notepad. Locate the following lines:
Code:
{RLEBMP,kLargeMask,"Downtown/LargeBack.bmp"}
{RLEBMP,kLargeMaskSS,"Studiotown/dlgframe_1024x768.bmp"}
and replace them with
Code:
{RLEBMP,kLargeMask,"LargeBack.bmp"}
{RLEBMP,kLargeMaskSS,"dlgframe_1024x768.bmp"}
Save the file.
9) Move the 3 modified files back to
C:\Program Files (x86)\Maxis\The Sims\UIGraphics. Done! This should fix the graphical bugs on the HUD and in the menus.
I must say, it was not an easy task but I was determined to fix this. Practically no information on the web, lots of trial and error, compatibility issues etc.. But in the end I did it and I'm proud
Hope this help!