• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[SOLVED]What is this?

Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2
Duelisto_20231204_160637 - [SOLVED]What is this? - RaGEZONE Forums


How to fix this?
It's so annoying :confused:

dump???????????????
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Feb 2, 2012
Messages
164
Reaction score
56
I had this exact issue when using WINE. It was a font issue for me.
Another time it happened, it was using an integrated INTEL gpu instead of my dedicated NVIDIA card.
i've also seen this with unsupported resolutions.

hope these tips help.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2
I've switched the fotns in System.xml and templete.xml to Tahoma Font and am only using a dedicated Nvidia card and using this Enable Widescreen Support. Yet, it has the same problem. I attempted to make the lower resolution to be notably so!.
 
Upvote 0
Newbie Spellweaver
Joined
Jun 26, 2022
Messages
11
Reaction score
2
Can you show me a screen at the lobby
It is same as that only

SOLUTION:
Open RMesh_Render.cpp

Search for
C++:
void RMesh::RenderSub(D3DXMATRIX* world_mat,bool NoPartsChange,bool bRenderBuffer)

Add this at end of function
Code:
dev->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, FALSE);

Open RBspObject.cpp

Search for
C++:
bool RBspObject::Draw()

after LPDIRECT3DDEVICE9 pd3dDevice=RGetDevice();
Add this
C++:
pd3dDevice->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, TRUE);

Add this at end of the same function

C++:
pd3dDevice->SetRenderState(D3DRS_MULTISAMPLEANTIALIAS, FALSE);

After the characters are rendered, you must set it to false; otherwise, the font will attempt to antialias. Causes that font renders like that.

Credits : DeffJay
 
Last edited:
Upvote 0
Back
Top