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!

SOURCE NI OHARA BONAK

Junior Spellweaver
Joined
Mar 16, 2017
Messages
156
Reaction score
5
what is the AccountType for GM you use? do you have screenshot?
already solve sir. i use 30 AccountType [Admin] in 20 AccountType [GM] the game force close
 
RaGEZONE VIP
[VIP] Member
Joined
Jul 18, 2023
Messages
377
Reaction score
78
Any One share Clean DataBased.

How to Fix This ?
1691023971057 - SOURCE NI OHARA BONAK - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Mar 16, 2017
Messages
156
Reaction score
5
sorry for asking this but i forgot where to remove FPS Display ingame? :ROFLMAO:
 
RaGEZONE VIP
[VIP] Member
Joined
Oct 28, 2020
Messages
92
Reaction score
16
i repeat don't use this source as your base source use juverrgdhanscroll with ingame global ranking then all of the features you want merge it this is more cleaner than the source provided by the sharer.

sorry for asking this but i forgot where to remove FPS Display ingame? :ROFLMAO:
GameStats.cpp

void CGameStats::UpdateInfo()
{

/*if ( m_pPingText )
{
float fPing = m_fPing;
fPing = fPing * 0.5f;
if ( fPing >= 1000.0f ) fPing = 1000.0f;
if ( fPing <= 9.0f ) fPing = 9.0f;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

if ( fPing >= 300.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fPing >= 500.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

CString strPing("");
strPing.Format( "%2.0f ms", fPing );
m_pPingText->ClearText();
m_pPingText->AddText( strPing.GetString(), dwTEXTCOLOR );
}

if ( m_pFpsText )
{
float fFPS = m_fFPS;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

if ( fFPS >= 20.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fFPS >= 50.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

CString strFPS("");
strFPS.Format( "%2.0f fps", fFPS );
m_pFpsText->ClearText();
m_pFpsText->AddText( strFPS.GetString(), dwTEXTCOLOR );
}
*/

}
innerinterfacesimple.cpp
remove display of fps
/*
{
//game stats, Juver, 2017/06/22
m_pGameStats = new CGameStats;
m_pGameStats->Create ( GAMESTATS_DISPLAY, "GAMESTATS_DISPLAY", UI_FLAG_CENTER_X );
m_pGameStats->CreateSubControl (); RegisterControl ( m_pGameStats ); ShowGroupBottom ( GAMESTATS_DISPLAY );
}
*/
 
Last edited:
Junior Spellweaver
Joined
Mar 16, 2017
Messages
156
Reaction score
5
I think this is a good version of Global Ranking in Juver Source

 
RaGEZONE VIP
[VIP] Member
Joined
Jul 18, 2023
Messages
377
Reaction score
78
i repeat don't use this source as your base source use juverrgdhanscroll with ingame global ranking then all of the features you want merge it this is more cleaner than the source provided by the sharer.


GameStats.cpp

void CGameStats::UpdateInfo()
{

/*if ( m_pPingText )
{
float fPing = m_fPing;
fPing = fPing * 0.5f;
if ( fPing >= 1000.0f ) fPing = 1000.0f;
if ( fPing <= 9.0f ) fPing = 9.0f;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

if ( fPing >= 300.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fPing >= 500.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

CString strPing("");
strPing.Format( "%2.0f ms", fPing );
m_pPingText->ClearText();
m_pPingText->AddText( strPing.GetString(), dwTEXTCOLOR );
}

if ( m_pFpsText )
{
float fFPS = m_fFPS;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

if ( fFPS >= 20.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fFPS >= 50.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

CString strFPS("");
strFPS.Format( "%2.0f fps", fFPS );
m_pFpsText->ClearText();
m_pFpsText->AddText( strFPS.GetString(), dwTEXTCOLOR );
}
*/

}
innerinterfacesimple.cpp
remove display of fps
/*
{
//game stats, Juver, 2017/06/22
m_pGameStats = new CGameStats;
m_pGameStats->Create ( GAMESTATS_DISPLAY, "GAMESTATS_DISPLAY", UI_FLAG_CENTER_X );
m_pGameStats->CreateSubControl (); RegisterControl ( m_pGameStats ); ShowGroupBottom ( GAMESTATS_DISPLAY );
}
*/
Error :(

1691202031741 - SOURCE NI OHARA BONAK - RaGEZONE Forums

i repeat don't use this source as your base source use juverrgdhanscroll with ingame global ranking then all of the features you want merge it this is more cleaner than the source provided by the sharer.


GameStats.cpp

void CGameStats::UpdateInfo()
{

/*if ( m_pPingText )
{
float fPing = m_fPing;
fPing = fPing * 0.5f;
if ( fPing >= 1000.0f ) fPing = 1000.0f;
if ( fPing <= 9.0f ) fPing = 9.0f;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

if ( fPing >= 300.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fPing >= 500.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

CString strPing("");
strPing.Format( "%2.0f ms", fPing );
m_pPingText->ClearText();
m_pPingText->AddText( strPing.GetString(), dwTEXTCOLOR );
}

if ( m_pFpsText )
{
float fFPS = m_fFPS;

DWORD dwTEXTCOLOR = NS_UITEXTCOLOR::RED;

if ( fFPS >= 20.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::YELLOW;
if ( fFPS >= 50.0f ) dwTEXTCOLOR = NS_UITEXTCOLOR::GREENYELLOW;

CString strFPS("");
strFPS.Format( "%2.0f fps", fFPS );
m_pFpsText->ClearText();
m_pFpsText->AddText( strFPS.GetString(), dwTEXTCOLOR );
}
*/

}
innerinterfacesimple.cpp
remove display of fps
/*
{
//game stats, Juver, 2017/06/22
m_pGameStats = new CGameStats;
m_pGameStats->Create ( GAMESTATS_DISPLAY, "GAMESTATS_DISPLAY", UI_FLAG_CENTER_X );
m_pGameStats->CreateSubControl (); RegisterControl ( m_pGameStats ); ShowGroupBottom ( GAMESTATS_DISPLAY );
}
*/
How to fix this sir?
1691202031778 - SOURCE NI OHARA BONAK - RaGEZONE Forums


Error :(

1691202031741 - SOURCE NI OHARA BONAK - RaGEZONE Forums


How to fix this sir?
1691202031778 - SOURCE NI OHARA BONAK - RaGEZONE Forums
FIX Thanks @

tototimz07

 

Attachments

You must be registered for see attachments list
Last edited:
Back
Top