How to disable Party Finder on GS
void CWndPartyFinder::OnInitialUpdate()
CWndNeuz::OnInitialUpdate(); CODE RefreshItemList();
#ifdef __PARTYFINDER_GW_FIX
if(g_pPlayer->GetWorld()->GetID() == 202)
{
Destroy();
}
#endif
void CWndPartyFinder::OnInitialUpdate()
{
CWndNeuz::OnInitialUpdate();
#ifdef __PARTYFINDER_GW_FIX
if(g_pPlayer->GetWorld()->GetID() == 202)
{
Destroy();
}
#endif
RefreshItemList();
#define __PARTYFINDER_GW_FIX
Clientside for the win [Only registered and activated users can see links. Click Here To Register...]Quote:
..\Source\_Interface\WndPartyFinder.cpp
Search for ->But code between:Code:void CWndPartyFinder::OnInitialUpdate()Code:CWndNeuz::OnInitialUpdate(); RefreshItemList();Code:#ifdef __PARTYFINDER_GW_FIX if(g_pPlayer->GetWorld()->GetID() == 202) { Destroy(); } #endif
Result:
-> ..\Source\Neuz\VersionCommon.hCode:void CWndPartyFinder::OnInitialUpdate() { CWndNeuz::OnInitialUpdate(); #ifdef __PARTYFINDER_GW_FIX if(g_pPlayer->GetWorld()->GetID() == 202) { Destroy(); } #endif // 여기에 코딩하세요 RefreshItemList();
Code:#define __PARTYFINDER_GW_FIX
Quote:
thank you guys ^^
Quote:
CDPCoreClient::OnAddPartyMember