You last visited: Today at 07:43
Advertisement
Guild Bank?
Discussion on Guild Bank? within the Flyff Private Server forum part of the Flyff category.
07/22/2017, 15:09
#1
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Guild Bank?
I got a problem with my guild bank
I deposit penya into my guild bank then I was trying to withdraw it but I can't get my money anymore Is anyone here know how to fix this one?
also with my Backpack Font
I got a Black font inside my Backpack "B" the count of any item are all black I want to change it into White Where can I change it.
07/22/2017, 18:42
#2
elite*gold: 0
Join Date: Jul 2017
Posts: 4
Received Thanks: 0
For the Log-In window you have to go into a GUI Editor and change it.
Select the Login Window and scale it.
Like this ->
07/23/2017, 03:43
#3
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Quote:
Originally Posted by
Kinami-Renamed
For the Log-In window you have to go into a GUI Editor and change it.
Select the Login Window and scale it.
Like this ->
i already did that one but sadly It doesnt change :3 so i was guessing that this is on source? But i don't know what part or where can I edit this one
07/23/2017, 11:28
#4
elite*gold: 0
Join Date: May 2017
Posts: 146
Received Thanks: 31
I dont know what Files you have... also
Copy&Past only on your own RISK !
Source Part: Go to your Files in -> _Interface and look for -> WndTitle.cpp
Search for ->
void CWndLogin::OnInitialUpdate()
Take a Look at your one, than at my one
Code:
void CWndLogin::OnInitialUpdate()
{
CWndNeuz::OnInitialUpdate();
CRect rect = GetClientRect();
#ifdef __REG
m_wndRegist. Create( "Registration", 0, CRect( 0, 0, 100, 20 ), this, 1001 ); rect.OffsetRect( 120,0 );
#endif
CWndEdit* pAccount = (CWndEdit*) GetDlgItem( WIDC_ACCOUNT );
CWndEdit* pPassword = (CWndEdit*) GetDlgItem( WIDC_PASSWORD );
CWndButton* pSaveAccount = (CWndButton*) GetDlgItem( WIDC_CHECK1 );
pAccount->EnableModeChange( FALSE );
pAccount->SetTabStop( TRUE );
pPassword->AddWndStyle( EBS_PASSWORD );
pPassword->SetTabStop( TRUE );
pPassword->EnableModeChange( FALSE );
CWndButton* pOk = (CWndButton*)GetDlgItem( WIDC_OK );
CWndButton* pQuit = (CWndButton*)GetDlgItem( WIDC_QUIT );
/*CWndButton* pAbout = (CWndButton*)GetDlgItem( WIDC_ABOUT );
CWndButton* pPrologue = (CWndButton*)GetDlgItem( WIDC_PROLOGUE );
CWndButton* pCredit = (CWndButton*)GetDlgItem( WIDC_CREDIT );*/
pOk->SetDefault( TRUE );
#if __VER >= 19
pOk->EnableWindow(FALSE);
#endif// __VER >= 19
#ifdef __NEW_TASKBAR_V19
CWndTaskBar_HUD* m_pWndTaskBar_HUD = (CWndTaskBar_HUD*)GetWndBase( APP_NEWTASKBAR );
if(m_pWndTaskBar_HUD)
{
SAFE_DELETE(m_pWndTaskBar_HUD);
}
CWndTaskBar_HUD_EX1* pWndTaskBar_HUD_EX1 = (CWndTaskBar_HUD_EX1*)GetWndBase( APP_NEWTASKBAR03 );
if(pWndTaskBar_HUD_EX1)
{
SAFE_DELETE(pWndTaskBar_HUD_EX1);
}
CWndTaskBar_HUD_EX2* pWndTaskBar_HUD_EX2 = (CWndTaskBar_HUD_EX2*)GetWndBase( APP_NEWTASKBAR03 );
if(pWndTaskBar_HUD_EX2)
{
SAFE_DELETE(pWndTaskBar_HUD_EX2);
}
CWndTaskBar_HUD_EX3* pWndTaskBar_HUD_EX3 = (CWndTaskBar_HUD_EX3*)GetWndBase( APP_NEWTASKBAR04 );
if(pWndTaskBar_HUD_EX3)
{
SAFE_DELETE(pWndTaskBar_HUD_EX3);
}
CWndTaskBar_HUD_SLIDE* m_pWndTaskBar_HUD_SLIDE = (CWndTaskBar_HUD_SLIDE*)GetWndBase(APP_NEWTASKBAR02);
if(m_pWndTaskBar_HUD_SLIDE)
{
SAFE_DELETE(m_pWndTaskBar_HUD_SLIDE);
}
CWndNewSkillSlot* m_pWndNewSkillSlot = (CWndNewSkillSlot*)GetWndBase( APP_SLOT );
if(m_pWndNewSkillSlot)
{
SAFE_DELETE(m_pWndNewSkillSlot);
}
#endif//__NEW_TASKBAR_V19
pAccount->SetString( g_Option.m_szAccount );
pSaveAccount->SetCheck( g_Option.m_bSaveAccount );
if( g_Option.m_szAccount[ 0 ] )
pPassword->SetFocus();
else
pAccount->SetFocus();
MoveParentCenter();
pOk->Move( 258, 40 ); //1
/*pPrologue->Move( 275, 80 ); //2
pCredit->Move( 275, 80 );
pAbout->Move( 275, 50 ); //3*/
pQuit->Move( 258, 70 ); //4
CRect HanrectWindow = GetWindowRect( TRUE );
SetWndRect( CRect( HanrectWindow.left, HanrectWindow.top, HanrectWindow.right, HanrectWindow.bottom - 24 ) );
CRect rectLayout = m_pWndRoot->GetLayoutRect();
Move( (int)( rectLayout.Width() / 2 - m_rectWindow.Width() / 2 ), (int)( rectLayout.Height() / 2 - m_rectWindow.Height() / 2 ) );
#ifdef __THROUGHPORTAL0810
if( g_Neuz.m_bThroughPortal )
{
CRect HanrectWindow = GetWindowRect( TRUE );
SetWndRect( CRect( HanrectWindow.left, HanrectWindow.top, HanrectWindow.right - 120, HanrectWindow.bottom - 115 ) );
CRect rectLayout = m_pWndRoot->GetLayoutRect();
Move( (int)( rectLayout.Width() / 2 - m_rectWindow.Width() / 2 ), (int)( rectLayout.Height() * 0.65 ) );
}
#endif // __THROUGHPORTAL0810
if( ::GetLanguage() == LANG_KOR )
{
CWndButton* pPrologue = (CWndButton*)GetDlgItem( WIDC_PROLOGUE );
pPrologue->SetVisible(FALSE);
}
switch( ::GetLanguage() )
{
case LANG_KOR:
case LANG_FRE:
case LANG_GER:
{
CRect rectRoot = m_pWndRoot->GetLayoutRect();
CRect rectWindow = GetWindowRect( TRUE );
rectWindow.top = 400 * rectRoot.Height() / 768;
Move( rectWindow.TopLeft() );
break;
}
}
#ifdef __THROUGHPORTAL0810
if( g_Neuz.m_bThroughPortal )
#else // __THROUGHPORTAL0810
if( g_Neuz.m_bHanGame )
#endif // __THROUGHPORTAL0810
{
CWndStatic* pStatic = (CWndStatic*)GetDlgItem( WIDC_STATIC3 );
pStatic->SetVisible( FALSE );
pStatic = (CWndStatic*)GetDlgItem( WIDC_STATIC2 );
pStatic->SetVisible( FALSE );
CWndEdit* pEdit = (CWndEdit*)GetDlgItem( WIDC_ACCOUNT );
pEdit->SetVisible( FALSE );
pEdit->Move( 800, 800 );
pEdit = (CWndEdit*)GetDlgItem( WIDC_PASSWORD );
pEdit->SetVisible( FALSE );
pEdit->Move( 800, 800 );
CWndButton* pButton = (CWndButton*) GetDlgItem( WIDC_CHECK1 );
pButton->SetVisible( FALSE );
pButton = (CWndButton*) GetDlgItem( WIDC_OK );
CRect rectButton = pButton->GetWndRect();
pButton->Move( 13, 10 );
/*pButton = (CWndButton*) GetDlgItem( WIDC_ABOUT );
pButton->Move( 13, 35 );
pButton = (CWndButton*) GetDlgItem( WIDC_CREDIT );
pButton->Move( 13, 60 );
pButton = (CWndButton*) GetDlgItem( WIDC_PROLOGUE );
pButton->Move( 13, 60 );*/
pButton = (CWndButton*) GetDlgItem( WIDC_QUIT );
pButton->Move( 13, 85 );
}
g_Neuz.m_dwTimeOutDis = 0xffffffff;
m_bDisconnect = FALSE;
}
BOOL CWndLogin::Initialize(CWndBase* pWndParent,DWORD dwStyle)
{
return CWndNeuz::InitDialog( g_Neuz.GetSafeHwnd(), APP_LOGIN, WBS_KEY, CPoint( 0, 0 ), pWndParent );
}
Resource Part: Open your
ResData.inc via NotePad++ and replace your
APP_LOGIN with my one
Code:
APP_LOGIN "WndTile09.tga" "" 1 384 144 0x2410000 26
{
// Title String
IDS_RESDATA_INC_003026
}
{
// ToolTip
IDS_RESDATA_INC_003027
}
{
WTYPE_BUTTON WIDC_OK "ButtNormal01.tga" 0 258 40 361 63 0x220000 0 0 0 0 0 0 0
{
// Title String
IDS_RESDATA_INC_003028
}
{
// ToolTip
IDS_RESDATA_INC_003029
}
WTYPE_EDITCTRL WIDC_ACCOUNT "WndEditTile00.tga" 1 85 40 245 63 0x20000 0 0 0 0 255 255 255
{
// Title String
IDS_RESDATA_INC_003032
}
{
// ToolTip
IDS_RESDATA_INC_003033
}
WTYPE_EDITCTRL WIDC_PASSWORD "WndEditTile00.tga" 1 85 70 249 93 0x20000 0 0 0 0 255 255 255
{
// Title String
IDS_RESDATA_INC_003034
}
{
// ToolTip
IDS_RESDATA_INC_003035
}
WTYPE_STATIC WIDC_STATIC2 "" 0 8 70 88 90 0x260000 0 0 0 0 244 204 77
{
// Title String
IDS_RESDATA_INC_003036
}
{
// ToolTip
IDS_RESDATA_INC_003037
}
WTYPE_BUTTON WIDC_CHECK1 "ButtCheck.tga" 0 110 100 210 116 0x220018 0 0 0 0 255 249 198
{
// Title String
IDS_RESDATA_INC_003038
}
{
// ToolTip
IDS_RESDATA_INC_003039
}
WTYPE_STATIC WIDC_STATIC3 "" 0 8 40 88 60 0x2260000 0 0 0 0 244 204 77
{
// Title String
IDS_RESDATA_INC_003040
}
{
// ToolTip
IDS_RESDATA_INC_003041
}
WTYPE_BUTTON WIDC_QUIT "ButtNormal01.tga" 0 258 70 361 93 0x220000 0 0 0 0 0 0 0
{
// Title String
IDS_RESDATA_INC_003030
}
{
// ToolTip
IDS_RESDATA_INC_003031
}
}
SAVE ALL -> COMPILE SOURCE + CREATE RESDATAS
RESULT:
07/23/2017, 16:01
#5
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Quote:
Originally Posted by
Xeylou
I dont know what Files you have... also
Copy&Past only on your own RISK !
Source Part: Go to your Files in -> _Interface and look for -> WndTitle.cpp
Search for ->
void CWndLogin::OnInitialUpdate()
Take a Look at your one, than at my one
Code:
void CWndLogin::OnInitialUpdate()
{
CWndNeuz::OnInitialUpdate();
CRect rect = GetClientRect();
#ifdef __REG
m_wndRegist. Create( "Registration", 0, CRect( 0, 0, 100, 20 ), this, 1001 ); rect.OffsetRect( 120,0 );
#endif
CWndEdit* pAccount = (CWndEdit*) GetDlgItem( WIDC_ACCOUNT );
CWndEdit* pPassword = (CWndEdit*) GetDlgItem( WIDC_PASSWORD );
CWndButton* pSaveAccount = (CWndButton*) GetDlgItem( WIDC_CHECK1 );
pAccount->EnableModeChange( FALSE );
pAccount->SetTabStop( TRUE );
pPassword->AddWndStyle( EBS_PASSWORD );
pPassword->SetTabStop( TRUE );
pPassword->EnableModeChange( FALSE );
CWndButton* pOk = (CWndButton*)GetDlgItem( WIDC_OK );
CWndButton* pQuit = (CWndButton*)GetDlgItem( WIDC_QUIT );
/*CWndButton* pAbout = (CWndButton*)GetDlgItem( WIDC_ABOUT );
CWndButton* pPrologue = (CWndButton*)GetDlgItem( WIDC_PROLOGUE );
CWndButton* pCredit = (CWndButton*)GetDlgItem( WIDC_CREDIT );*/
pOk->SetDefault( TRUE );
#if __VER >= 19
pOk->EnableWindow(FALSE);
#endif// __VER >= 19
#ifdef __NEW_TASKBAR_V19
CWndTaskBar_HUD* m_pWndTaskBar_HUD = (CWndTaskBar_HUD*)GetWndBase( APP_NEWTASKBAR );
if(m_pWndTaskBar_HUD)
{
SAFE_DELETE(m_pWndTaskBar_HUD);
}
CWndTaskBar_HUD_EX1* pWndTaskBar_HUD_EX1 = (CWndTaskBar_HUD_EX1*)GetWndBase( APP_NEWTASKBAR03 );
if(pWndTaskBar_HUD_EX1)
{
SAFE_DELETE(pWndTaskBar_HUD_EX1);
}
CWndTaskBar_HUD_EX2* pWndTaskBar_HUD_EX2 = (CWndTaskBar_HUD_EX2*)GetWndBase( APP_NEWTASKBAR03 );
if(pWndTaskBar_HUD_EX2)
{
SAFE_DELETE(pWndTaskBar_HUD_EX2);
}
CWndTaskBar_HUD_EX3* pWndTaskBar_HUD_EX3 = (CWndTaskBar_HUD_EX3*)GetWndBase( APP_NEWTASKBAR04 );
if(pWndTaskBar_HUD_EX3)
{
SAFE_DELETE(pWndTaskBar_HUD_EX3);
}
CWndTaskBar_HUD_SLIDE* m_pWndTaskBar_HUD_SLIDE = (CWndTaskBar_HUD_SLIDE*)GetWndBase(APP_NEWTASKBAR02);
if(m_pWndTaskBar_HUD_SLIDE)
{
SAFE_DELETE(m_pWndTaskBar_HUD_SLIDE);
}
CWndNewSkillSlot* m_pWndNewSkillSlot = (CWndNewSkillSlot*)GetWndBase( APP_SLOT );
if(m_pWndNewSkillSlot)
{
SAFE_DELETE(m_pWndNewSkillSlot);
}
#endif//__NEW_TASKBAR_V19
pAccount->SetString( g_Option.m_szAccount );
pSaveAccount->SetCheck( g_Option.m_bSaveAccount );
if( g_Option.m_szAccount[ 0 ] )
pPassword->SetFocus();
else
pAccount->SetFocus();
MoveParentCenter();
pOk->Move( 258, 40 ); //1
/*pPrologue->Move( 275, 80 ); //2
pCredit->Move( 275, 80 );
pAbout->Move( 275, 50 ); //3*/
pQuit->Move( 258, 70 ); //4
CRect HanrectWindow = GetWindowRect( TRUE );
SetWndRect( CRect( HanrectWindow.left, HanrectWindow.top, HanrectWindow.right, HanrectWindow.bottom - 24 ) );
CRect rectLayout = m_pWndRoot->GetLayoutRect();
Move( (int)( rectLayout.Width() / 2 - m_rectWindow.Width() / 2 ), (int)( rectLayout.Height() / 2 - m_rectWindow.Height() / 2 ) );
#ifdef __THROUGHPORTAL0810
if( g_Neuz.m_bThroughPortal )
{
CRect HanrectWindow = GetWindowRect( TRUE );
SetWndRect( CRect( HanrectWindow.left, HanrectWindow.top, HanrectWindow.right - 120, HanrectWindow.bottom - 115 ) );
CRect rectLayout = m_pWndRoot->GetLayoutRect();
Move( (int)( rectLayout.Width() / 2 - m_rectWindow.Width() / 2 ), (int)( rectLayout.Height() * 0.65 ) );
}
#endif // __THROUGHPORTAL0810
if( ::GetLanguage() == LANG_KOR )
{
CWndButton* pPrologue = (CWndButton*)GetDlgItem( WIDC_PROLOGUE );
pPrologue->SetVisible(FALSE);
}
switch( ::GetLanguage() )
{
case LANG_KOR:
case LANG_FRE:
case LANG_GER:
{
CRect rectRoot = m_pWndRoot->GetLayoutRect();
CRect rectWindow = GetWindowRect( TRUE );
rectWindow.top = 400 * rectRoot.Height() / 768;
Move( rectWindow.TopLeft() );
break;
}
}
#ifdef __THROUGHPORTAL0810
if( g_Neuz.m_bThroughPortal )
#else // __THROUGHPORTAL0810
if( g_Neuz.m_bHanGame )
#endif // __THROUGHPORTAL0810
{
CWndStatic* pStatic = (CWndStatic*)GetDlgItem( WIDC_STATIC3 );
pStatic->SetVisible( FALSE );
pStatic = (CWndStatic*)GetDlgItem( WIDC_STATIC2 );
pStatic->SetVisible( FALSE );
CWndEdit* pEdit = (CWndEdit*)GetDlgItem( WIDC_ACCOUNT );
pEdit->SetVisible( FALSE );
pEdit->Move( 800, 800 );
pEdit = (CWndEdit*)GetDlgItem( WIDC_PASSWORD );
pEdit->SetVisible( FALSE );
pEdit->Move( 800, 800 );
CWndButton* pButton = (CWndButton*) GetDlgItem( WIDC_CHECK1 );
pButton->SetVisible( FALSE );
pButton = (CWndButton*) GetDlgItem( WIDC_OK );
CRect rectButton = pButton->GetWndRect();
pButton->Move( 13, 10 );
/*pButton = (CWndButton*) GetDlgItem( WIDC_ABOUT );
pButton->Move( 13, 35 );
pButton = (CWndButton*) GetDlgItem( WIDC_CREDIT );
pButton->Move( 13, 60 );
pButton = (CWndButton*) GetDlgItem( WIDC_PROLOGUE );
pButton->Move( 13, 60 );*/
pButton = (CWndButton*) GetDlgItem( WIDC_QUIT );
pButton->Move( 13, 85 );
}
g_Neuz.m_dwTimeOutDis = 0xffffffff;
m_bDisconnect = FALSE;
}
BOOL CWndLogin::Initialize(CWndBase* pWndParent,DWORD dwStyle)
{
return CWndNeuz::InitDialog( g_Neuz.GetSafeHwnd(), APP_LOGIN, WBS_KEY, CPoint( 0, 0 ), pWndParent );
}
Resource Part: Open your
ResData.inc via NotePad++ and replace your
APP_LOGIN with my one
Code:
APP_LOGIN "WndTile09.tga" "" 1 384 144 0x2410000 26
{
// Title String
IDS_RESDATA_INC_003026
}
{
// ToolTip
IDS_RESDATA_INC_003027
}
{
WTYPE_BUTTON WIDC_OK "ButtNormal01.tga" 0 258 40 361 63 0x220000 0 0 0 0 0 0 0
{
// Title String
IDS_RESDATA_INC_003028
}
{
// ToolTip
IDS_RESDATA_INC_003029
}
WTYPE_EDITCTRL WIDC_ACCOUNT "WndEditTile00.tga" 1 85 40 245 63 0x20000 0 0 0 0 255 255 255
{
// Title String
IDS_RESDATA_INC_003032
}
{
// ToolTip
IDS_RESDATA_INC_003033
}
WTYPE_EDITCTRL WIDC_PASSWORD "WndEditTile00.tga" 1 85 70 249 93 0x20000 0 0 0 0 255 255 255
{
// Title String
IDS_RESDATA_INC_003034
}
{
// ToolTip
IDS_RESDATA_INC_003035
}
WTYPE_STATIC WIDC_STATIC2 "" 0 8 70 88 90 0x260000 0 0 0 0 244 204 77
{
// Title String
IDS_RESDATA_INC_003036
}
{
// ToolTip
IDS_RESDATA_INC_003037
}
WTYPE_BUTTON WIDC_CHECK1 "ButtCheck.tga" 0 110 100 210 116 0x220018 0 0 0 0 255 249 198
{
// Title String
IDS_RESDATA_INC_003038
}
{
// ToolTip
IDS_RESDATA_INC_003039
}
WTYPE_STATIC WIDC_STATIC3 "" 0 8 40 88 60 0x2260000 0 0 0 0 244 204 77
{
// Title String
IDS_RESDATA_INC_003040
}
{
// ToolTip
IDS_RESDATA_INC_003041
}
WTYPE_BUTTON WIDC_QUIT "ButtNormal01.tga" 0 258 70 361 93 0x220000 0 0 0 0 0 0 0
{
// Title String
IDS_RESDATA_INC_003030
}
{
// ToolTip
IDS_RESDATA_INC_003031
}
}
SAVE ALL -> COMPILE SOURCE + CREATE RESDATAS
RESULT:
Thank you soo much!!! I got it now 2 more problems hahaha
I got a problem with my guild bank
I deposit penya into my guild bank then I was trying to withdraw it but I can't get my money anymore Is anyone here know how to fix this one?
also with my Backpack Font
I got a Black font inside my Backpack "B" the count of any item are all black I want to change it into White Where can I change it.
07/23/2017, 23:01
#6
elite*gold: 0
Join Date: May 2017
Posts: 44
Received Thanks: 19
maybe the purpose of that is to cant dupe on your server?
07/24/2017, 02:55
#7
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Quote:
Originally Posted by
xRageee
maybe the purpose of that is to cant dupe on your server?
Then its so awful for some that their 2B penya can't be withdraw anymore
But I hope some one will help me with this issue also with font inside my Back pack
07/24/2017, 17:44
#8
elite*gold: 0
Join Date: May 2017
Posts: 146
Received Thanks: 31
Look at Source for the Color ? o.o
GuildName Color + Admin Title Color begins with: 0xFF... i think..
07/25/2017, 09:52
#9
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Quote:
Originally Posted by
Xeylou
Look at Source for the Color ? o.o
GuildName Color + Admin Title Color begins with: 0xFF... i think..
Im not referring to the Guild Name Color nor Admin Title Color I was asking about the color of the Font color of the Text in the "Backpack" Letter "B" to open it ingame
Screeny
07/25/2017, 15:25
#10
elite*gold: 0
Join Date: May 2017
Posts: 146
Received Thanks: 31
Ah, the Color from the Item Count...
I Take a Look at it later, but i mean with My Post that you have maybe the Chance to find the Color if it's with 0xFF too^^ is the Color in your normal invantory black too?
07/26/2017, 03:24
#11
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Quote:
Originally Posted by
Xeylou
Ah, the Color from the Item Count...
I Take a Look at it later, but i mean with My Post that you have maybe the Chance to find the Color if it's with 0xFF too^^ is the Color in your normal invantory black too?
No only in that backpack,
I don't think that is set as 0xff.. it is something ling (255 , 0, ....) but Honestly I don't know exactly where it is So I was wondering if there's someone who can locate me there
thank you soo much!
08/21/2017, 10:41
#12
elite*gold: 0
Join Date: Apr 2017
Posts: 95
Received Thanks: 2
Please re-open this for
I got a problem with my guild bank
I deposit penya into my guild bank then I was trying to withdraw it but I can't get my money anymore Is anyone here know how to fix this one?
also with my Backpack Font
I got a Black font inside my Backpack "B" the count of any item are all black I want to change it into White Where can I change it.
All times are GMT +2. The time now is 07:44 .