APP_PARTY_QUICK entfernen?

10/26/2011 16:46 Darkpat96#1
hallote elite*s.
ich würde sehr gerne das zweite kleine partyfenster entfernen, was sich ingame befindet.
es heisst "Partybox" und ist als APP_PARTY_QUICK definiert. reicht es wenn ich das
HTML Code:
"#define APP_PARTY_QUICK                                                 593"
einfach auskommentiere oder muss ich da noch weitere sachen entfernen? weil es wird ja automatisch mit geöffnet wenn ich "P" drücke.
10/26/2011 17:29 .Monster#2
WndManager.cpp

Suche:

PHP Code:
#if __VER >= 8 //__CSC_VER8_2
        
else if(pShortcut->m_dwId == APP_PARTY
Änder die 8 zu 100 oder lösch den #if Abschnitt.

Suche:

PHP Code:
#if __VER >= 8 //__CSC_VER8_2
    
CWndBasepWndPartyQuick = (CWndBase*)g_WndMng.GetAppletAPP_PARTY_QUICK ); 
Änder die 8 zu 100 oder lösch den #if Abschnitt.


WndParty.cpp

Suche:

PHP Code:
#if __VER >= 8 //__CSC_VER8_2
    
else if(nID == WIDC_BUTTON2)
    {
        if(
g_Party.GetSizeofMember() >= 2)
        {
            
m_pWndPartyQuick = (CWndPartyQuick*)g_WndMng.GetAppletAPP_PARTY_QUICK );
            if(
m_pWndPartyQuick == NULL
Änder die 8 zu 100 oder lösch den #if Abschnitt.


FuncApplet.cpp

Suche:

PHP Code:
#if __VER >= 8 //__CSC_VER8_2
    
AddAppletFuncAppMain_WndPartyQuick   APP_PARTY_QUICK             _T"WndPartyQuick" )   , NULL   GETTEXTTID_TIP_DIALOG    ),  0  );
#endif //__CSC_VER8_2 
Löschen oder Auskommentieren.



#Closerequest