Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Flyff > Flyff Private Server
You last visited: Today at 19:38

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Request] Wndmanager.cpp code

Discussion on [Request] Wndmanager.cpp code within the Flyff Private Server forum part of the Flyff category.

Reply
 
Old   #1
 
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
[Request] Wndmanager.cpp code

Anyone here can give me the codes for jopsi task hotkey? from A1-A0 and 1-0 ???

here's the example that i found but idk the hotkey about A1-A0 and 1-0

e.g.
if( g_bKeyTable[ VK_F10 ] )
{
g_bKeyTable[ VK_F10 ] = 0;
m_pWndTaskBar->SetItemSlot( 9 );
}
Rhyder` is offline  
Old 02/27/2013, 15:46   #2
 
elite*gold: 4
Join Date: Mar 2010
Posts: 3,148
Received Thanks: 1,535
Quote:
Originally Posted by jayjei14 View Post
Anyone here can give me the codes for jopsi task hotkey? from A1-A0 and 1-0 ???

here's the example that i found but idk the hotkey about A1-A0 and 1-0

e.g.
if( g_bKeyTable[ VK_F10 ] )
{
g_bKeyTable[ VK_F10 ] = 0;
m_pWndTaskBar->SetItemSlot( 9 );
}
its not in wndmanager- .- this code
(m_pWndTaskBar->SetItemSlot)
is for the old taskbar and must be deactivatet with #ifndef __NEW_THEME
Jopsi332 is offline  
Thanks
1 User
Old 02/27/2013, 16:09   #3
 
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
Quote:
Originally Posted by Jopsi332 View Post
its not in wndmanager- .- this code
(m_pWndTaskBar->SetItemSlot)
is for the old taskbar and must be deactivatet with #ifndef __NEW_THEME

so i how do i activate them? i want it to make it functional the A1-A0 hotkey and 1-0 Hotkey?

Help me to activate A1-A0 hotkey and 1-0 hotkey
Rhyder` is offline  
Old 02/27/2013, 16:13   #4
 
elite*gold: 0
Join Date: Sep 2008
Posts: 158
Received Thanks: 256
Quote:
Originally Posted by jayjei14 View Post
so i how do i activate them? i want it to make it functional the A1-A0 hotkey and 1-0 Hotkey?

Help me to activate A1-A0 hotkey and 1-0 hotkey
This Code snippet isn't for the functionality with A1-A0 (???).

This is for change the Taskbar (the old bar have 9 or 10 bars too but invisibile).
yannick2008 is offline  
Old 02/27/2013, 16:18   #5
 
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
Please put the all hotkey code of this taskbar i want it to make it works


Quote:
Originally Posted by Jopsi332 View Post
f10 -> havnt looked why VK_F10 does not call keydown function


a0 etc. u must use ALT_GR key

0-1 u must use the numberkeys above the letter-keys and not the num-pad

whole code of this please
Rhyder` is offline  
Old 02/27/2013, 18:06   #6
 
elite*gold: 4
Join Date: Mar 2010
Posts: 3,148
Received Thanks: 1,535
my *** i said disable the wndmanager part..
Code:
#ifndef __NEW_THEME
			if( g_bKeyTable[ '1' ] )
			{
				g_bKeyTable[ '1' ] = 0;
				m_pWndTaskBar->SetItemSlot( 0 );
			}
			if( g_bKeyTable[ '2' ] )
			{
				g_bKeyTable[ '2' ] = 0;
				m_pWndTaskBar->SetItemSlot( 1 );
			}
			if( g_bKeyTable[ '3' ] )
			{
				g_bKeyTable[ '3' ] = 0;
				m_pWndTaskBar->SetItemSlot( 2 );
			}
			if( g_bKeyTable[ '4' ] )
			{
				g_bKeyTable[ '4' ] = 0;
				m_pWndTaskBar->SetItemSlot( 3 );
			}
#if __VER >= 11 // __CSC_VER11_5
			if( g_bKeyTable[ '5' ] )
			{
				g_bKeyTable[ '5' ] = 0;
				m_pWndTaskBar->SetItemSlot( 4 );
			}
			if( g_bKeyTable[ '6' ] )
			{
				g_bKeyTable[ '6' ] = 0;
				m_pWndTaskBar->SetItemSlot( 5 );
			}
			if( g_bKeyTable[ '7' ] )
			{
				g_bKeyTable[ '7' ] = 0;
				m_pWndTaskBar->SetItemSlot( 6 );
			}
			if( g_bKeyTable[ '8' ] )
			{
				g_bKeyTable[ '8' ] = 0;
				m_pWndTaskBar->SetItemSlot( 7 );
			}
#endif //__CSC_VER11_5
			if( g_bKeyTable[ '1' ] )
			{
				g_bKeyTable[ '1' ] = 0;
				ObjectExecutor( SHORTCUT_APPLET, APP_HELPER_HELP );
			}
			if( g_bKeyTable[ '0' ] )
			{
				g_bKeyTable[ '0' ] = 0;
				ScreenCapture();
			}
			if( g_bKeyTable[ '9' ] )
			{
				g_bKeyTable[ '9' ] = 0;
				FILEOUT( "Postion.txt", "Pos x = %f, z = %f", g_pPlayer->GetPos().x, g_pPlayer->GetPos().z );
				PutString( prj.GetText(TID_ADMIN_COORDINATESAVE), NULL, prj.GetTextColor(TID_ADMIN_COORDINATESAVE) );
			}
#else
			if( g_bKeyTable[ VK_HOME ] )
			{
				g_bKeyTable[ VK_HOME ] = 0;
				ScreenCapture();
				//g_Neuz.CaptureBitmap();
			}
#endif
Jopsi332 is offline  
Thanks
1 User
Old 02/28/2013, 00:06   #7
 
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
So it means the whole part of the old taskbar hotkey must be disable and i add that code?

please make a tutorial i don't get it
Rhyder` is offline  
Old 02/28/2013, 00:22   #8
 
elite*gold: 4
Join Date: Mar 2010
Posts: 3,148
Received Thanks: 1,535
JUST REPLACE
Jopsi332 is offline  
Thanks
1 User
Old 02/28/2013, 06:23   #9
 
Allowedes's Avatar
 
elite*gold: 0
Join Date: Dec 2012
Posts: 85
Received Thanks: 26
Quote:
Originally Posted by jayjei14 View Post
So it means the whole part of the old taskbar hotkey must be disable and i add that code?

please make a tutorial i don't get it
Seriously please delete the source code and stop to "work" with it.
Allowedes is offline  
Thanks
1 User
Old 02/28/2013, 06:54   #10
 
elite*gold: 115
Join Date: Jan 2012
Posts: 1,156
Received Thanks: 894
Quote:
Originally Posted by Jopsi332 View Post
JUST REPLACE
How about the A1-A0 hotkey?

Quote:
Originally Posted by Allowedes View Post
Seriously please delete the source code and stop to "work" with it.
help me please
Rhyder` is offline  
Reply


Similar Threads Similar Threads
[REQUEST] 20$ Code
10/22/2012 - Need for Speed World - 7 Replies
Please can anyone give me the 20$ Survey Code.. I want it.. Thank you in Advance..
[REQUEST] CODE please...
07/17/2011 - Facebook - 0 Replies
pa share naman po ng mga code.. pa pm po sa code!! TY in ADVANCE..
[Request]Pharmacist Items Code So I Code Buy the Scroll
05/30/2009 - CO2 Private Server - 1 Replies
could you please teach me how to code Pharmacist Items so i could buy them all especially the scrolls.
[Request]C++ Bot Source Code/Example Code
07/19/2008 - Silkroad Online - 2 Replies
Please someone direct me to anywhere that might have any sort of information and resources on the construction of a bot, preferably in C++. Looking for any Reverse engineering information(finding the Base addr for say player) and locating the offsets ptrs for Cur health etc. I would also love to see a simple example source in C++ of putting those addresses and offsets into action. I'm sure I have the basic idea down on how to do this but I'm not 100% sure how to get it setup correctly. ...



All times are GMT +1. The time now is 19:39.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.