Hello guys,
I have an issue with Sframe with loading wind, its shows a blank screen.
It's like it can't read the Images, I tried all my best to edit SUILoadingWind.cpp but not working.
[Only registered and activated users can see links. Click Here To Register...]
also with a buff icon
[Only registered and activated users can see links. Click Here To Register...]
Quote:
Originally Posted by SilentWisdom
@ [Only registered and activated users can see links. Click Here To Register...], this should solve your issue :)
SGameOption.cpp
Code:
void SGameOption::ChatOptionApply( int nTabType, bool * pCehck )
{
if( nTabType < 0 || nTabType > 4 ) return;
for (int i = 0; i < SGAME_OPT_DATA::c_nMaxChatOption; i++)
{
m_bChannelCheck[nTabType][i] = pCehck[i];
}
Save(); // 2020.12.11 - iSmokeDrow : save here because m_bChannelCheck gets reset during logout and if abnormal logout/termination the value is not saved!
}
void SGameOption::ChatOptionApply( int nTabType, std::string strValue )
{
for( int i = 0; i < SGAME_OPT_DATA::c_nMaxChatOption; i++ )
{
std::string str = strValue.substr( i, 1 );
switch(nTabType)
{
case 0: m_bChannelCheck[nTabType][i] = !!(::atoi( str.c_str() )); break;
case 1: m_bChannelCheck[nTabType][i] = !!(::atoi( str.c_str() )); break;
case 2: m_bChannelCheck[nTabType][i] = !!(::atoi( str.c_str() )); break;
case 3: m_bChannelCheck[nTabType][i] = !!(::atoi( str.c_str() )); break;
case 4: m_bChannelCheck[nTabType][i] = !!(::atoi( str.c_str() )); break;
}
}
Save(); // 2020.12.11 - iSmokeDrow : save here because m_bChannelCheck gets reset during logout and if abnormal logout/termination the value is not saved!
}
|
I add it but it doesn't work, I think the solution is to allow Sframe to read symbols because I noticed in the rappelz_v1.opt file, it creates a character name between [].
So when I use symbols in the character name like [S]name the Sframe cant handle it, but I can't do it with myself because I am not an expert in c++.