Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[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
165
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