[Help] Problem with Ranking System

04/26/2020 22:27 DeserteurFR#1
Hello everyone !

I need your help for one of my system

I'm having problems with the ranking system; Source and Database side, everything looks OK, on the ResData side everything is set, on GUIEditor the window appears correctly, but when I'm IG and I want to make the window appear via the menu, I can click on it but nothing appear.

Any of you have an idea to fix this problem please ?

[Only registered and activated users can see links. Click Here To Register...]

Classements = Ranking
04/26/2020 23:59 yasukomoonflyff#2
FuncApplet ?
04/27/2020 00:26 DeserteurFR#3
The FuncApplet is well set up though

If you want, i can send screens
04/27/2020 14:50 sebariio#4
Ajoute-moi sur Discord je vais t'aider (gratuitement, j'ai rien d'autre à faire aujourd'hui)
Snow#2252
04/28/2020 00:25 DeserteurFR#5
Je passe en MP pour mon discord

MP moi demain dans l'aprem je serai dispo :)
04/30/2020 02:45 DeserteurFR#6
I don't have awnser from sebariio ; someone can help me please ?
05/01/2020 10:12 Leese#7
Compare your WndTaskbar.cpp & FuncApplet.cpp.

For example, compare these ones:

WndTaskbar.cpp
Code:
#ifdef __NEW_WEB_BOX
#ifdef __INTERNALSERVER
	pWndButton = AppendMenu( m_pMenu6, 0, APP_WEBBOX2 , GETTEXT( TID_GAME_HELPER_WEB_BOX_ICON_TITLE ) );
#else // __INTERNALSERVER
	if( ( GetLanguage() == LANG_ENG && GetSubLanguage() == LANG_SUB_USA ) )
	{
		pWndButton = AppendMenu( m_pMenu6, 0, APP_WEBBOX2 , GETTEXT( TID_GAME_HELPER_WEB_BOX_ICON_TITLE ) );
	}
#endif // __INTERNALSERVER
#endif // __NEW_WEB_BOX
FuncApplet.cpp
Code:
#ifdef __NEW_WEB_BOX
DECLAREAPPLET( AppMain_WndHelperWebBox , new CWndHelperWebBox  );
#endif // __NEW_WEB_BOX
Code:
#ifdef __NEW_WEB_BOX
	AddAppletFunc( AppMain_WndHelperWebBox , APP_WEBBOX2              , _T( "HelperWebBox" )       , _T( "Icon_HelperHelp.dds" ) , GETTEXT( TID_GAME_HELPER_WEB_BOX_ICON_TOOLTIP ), 0 );
#endif // __NEW_WEB_BOX
Currently your button on WndTaskbar isn't calling the correct applet on FuncApplet.cpp.
05/01/2020 15:43 DeserteurFR#8
I think know where it comes from, I think of the resdata.h which is in the resources when I put an already existing number the window wants to be called but crashes which is normal, while when I put a unique number it doesn't work anymore and doesn't call the window anymore, by the way I checked in the WndTaskBar and the FuncApplet all seems correct, if you have an idea where I have to look I'll take it^^