[Help]Disable PartyFinder on GS

10/13/2017 11:01 teejayu1#1
How to disable Party Finder on GS
10/13/2017 13:38 Sedrika#2
Check if the leader is on GW map?
10/13/2017 14:22 teejayu1#3
because you can join Party Using party Finder just pressing the join
10/13/2017 14:43 Sedrika#4
Check if the current user is on GW map then?
10/13/2017 17:11 teejayu1#5
okay thank you
10/14/2017 13:28 Dr. Peacock#6
..\Source\_Interface\WndPartyFinder.cpp

Search for ->
Code:
void CWndPartyFinder::OnInitialUpdate()
But code between:
Code:
CWndNeuz::OnInitialUpdate();
CODE
 RefreshItemList();
Code:
#ifdef __PARTYFINDER_GW_FIX
	if(g_pPlayer->GetWorld()->GetID() == 202)
	{
	Destroy();
	}
#endif

Result:
Code:
void CWndPartyFinder::OnInitialUpdate() 
{ 
	CWndNeuz::OnInitialUpdate();
#ifdef __PARTYFINDER_GW_FIX
	if(g_pPlayer->GetWorld()->GetID() == 202)
	{
	Destroy();
	}
#endif
	RefreshItemList();
-> ..\Source\Neuz\VersionCommon.h
Code:
#define __PARTYFINDER_GW_FIX
10/14/2017 13:33 Blouflash#7
Quote:
Originally Posted by Dr. Peacock View Post
..\Source\_Interface\WndPartyFinder.cpp

Search for ->
Code:
void CWndPartyFinder::OnInitialUpdate()
But code between:
Code:
CWndNeuz::OnInitialUpdate();
 RefreshItemList();
Code:
#ifdef __PARTYFINDER_GW_FIX
	if(g_pPlayer->GetWorld()->GetID() == 202)
	{
	Destroy();
	}
#endif

Result:
Code:
void CWndPartyFinder::OnInitialUpdate() 
{ 
	CWndNeuz::OnInitialUpdate();
#ifdef __PARTYFINDER_GW_FIX
	if(g_pPlayer->GetWorld()->GetID() == 202)
	{
	Destroy();
	}
#endif
	// 여기에 코딩하세요
	RefreshItemList();
-> ..\Source\Neuz\VersionCommon.h
Code:
#define __PARTYFINDER_GW_FIX
Clientside for the win [Only registered and activated users can see links. Click Here To Register...]
10/14/2017 13:36 Dr. Peacock#8
Quote:
Originally Posted by Blouflash View Post
Clientside for the win
Normale Spieler wissen nicht wie man so etwas umgeht ^^
Außerdem, dennkst du ernsthaft dass hier außer jetzt die etwas bekannteren 'Developer' jemand ist der wirklich selber ein Fix schreibt? ^^
10/14/2017 17:51 Nortix#9
1. Party Finder öffnen
2. Siege Arena joinen
3. ???
4. profit
10/15/2017 06:36 teejayu1#10
thank you guys ^^
10/19/2017 18:05 .SnoX#11
Quote:
Originally Posted by teejayu1 View Post
thank you guys ^^
Quote:
CDPCoreClient::OnAddPartyMember

Should work better, not tested.