JOPS glow system problem

10/30/2012 16:49 hackerfromhell#1
Hey there, doesn't seem to post here a lot but i have a problem this time... and its with the glow system by jops ): i have added everything and compiled successfully (added on database too) got everything it's place and when im in the game i press the glow system on the startmenu and nothing pops up.. this is how it looks for now:
[Only registered and activated users can see links. Click Here To Register...]

I really need your help to fix this up please! thanks a lot much appreciated!:handsdown:
10/31/2012 11:31 ZeroTwo02#2
Go to :_Interface/FuncApplet.cpp

changes its

Quote:
AddAppletFunc( AppMain_Glow , APP_SETAURA1 , _T( "WndStatus ") , _T( "Icon_Applet.dds") , "Glow Change" , 0 );
by this

Quote:
AddAppletFunc( AppMain_Glow , APP_SETAURA1 , _T( "CWndGlowChange ") , _T( "Icon_Applet.dds") , "Glow Change" , 0 );
10/31/2012 12:14 Lumi#3
You forgot to add the definition for the Window.
Follow naruto's Step and than it should work.
If not, than tell us that.
10/31/2012 14:20 hackerfromhell#4
Wow never even knew about this code:
Code:
AddAppletFunc( AppMain_Glow , APP_SETAURA1 , _T( "WndStatus ") , _T( "Icon_Applet.dds") , "Glow Change" , 0 );
only saw that i need to add this code:
Code:
 #ifdef __JOPS_GLOW
DECLAREAPPLET( APPMain_Glow , new CWndGlowChange );
#endif