Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Kal Online
You last visited: Today at 12:28

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

Advertisement



Key Macro

Discussion on Key Macro within the Kal Online forum part of the MMORPGs category.

Reply
 
Old   #1
Trade Restricted
 
elite*gold: 0
Join Date: Jul 2013
Posts: 40
Received Thanks: 0
Key Macro

Any working key macro up ?
DrPew is offline  
Old 01/22/2017, 18:20   #2
 
dinozof's Avatar
 
elite*gold: 0
Join Date: Apr 2007
Posts: 190
Received Thanks: 55
Quote:
Originally Posted by DrPew View Post
Any working key macro up ?
Sure , AutoIT is very easy to use and you can make the macros you desire. Use "ControlSend" to specifically send the macros to your target game-window
dinozof is offline  
Old 01/22/2017, 19:34   #3
 
elite*gold: 0
Join Date: Oct 2007
Posts: 1,254
Received Thanks: 199
auto it is detected from the x trap hackshield oO
KillerExtreme is offline  
Old 01/23/2017, 00:55   #4
 
elite*gold: 20
Join Date: Jul 2007
Posts: 1,979
Received Thanks: 270
Quote:
Originally Posted by KillerExtreme View Post
auto it is detected from the x trap hackshield oO
best hackshield x)
katze123 is offline  
Old 01/23/2017, 17:12   #5
 
elite*gold: 0
Join Date: Oct 2009
Posts: 266
Received Thanks: 47
PostMessage:
You can simulate mouse presses and key presses with it. And it will work background too which is awesome as well. The Function Parameters you can get with spy++ easily (this program is self explanory trust me)

Example code for sending Space button (c#)
Code:
public static void SendSpace(IntPtr hWnd)
        {
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_KEYDOWN, (IntPtr)0x20, (IntPtr)0x390001);
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_CHAR, (IntPtr)0x20, (IntPtr)0x390001);
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_KEYUP, (IntPtr)0x20, (IntPtr)0xC0390001);
        }
Example code for sending right mouse click relative to the top left point of the KalOnline Window (c#)
Code:
public static void RightMouseClickRelative(IntPtr hWnd, int relativX, int relativY)
        {
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_RBUTTONDOWN, (IntPtr)HitTestValues.HTCLIENT, (IntPtr)((relativY << 16) | relativX));
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_RBUTTONUP, (IntPtr)HitTestValues.HTNOWHERE, (IntPtr)((relativY << 16) | relativX));
        }
Have fun
asdfg177 is offline  
Thanks
1 User
Old 01/23/2017, 23:36   #6
Trade Restricted
 
elite*gold: 0
Join Date: Jul 2013
Posts: 40
Received Thanks: 0
Thanks
DrPew is offline  
Old 01/28/2017, 16:35   #7
 
dinozof's Avatar
 
elite*gold: 0
Join Date: Apr 2007
Posts: 190
Received Thanks: 55
Quote:
Originally Posted by KillerExtreme View Post
auto it is detected from the x trap hackshield oO
is not if you compile to exe. I have no issues
dinozof is offline  
Old 01/30/2017, 08:10   #8
 
elite*gold: 0
Join Date: Oct 2007
Posts: 1,254
Received Thanks: 199
wtf, my exe auto it makros get detected and get closed from the game what windows did you use?
KillerExtreme is offline  
Old 01/30/2017, 10:09   #9
 
dinozof's Avatar
 
elite*gold: 0
Join Date: Apr 2007
Posts: 190
Received Thanks: 55
Quote:
Originally Posted by KillerExtreme View Post
wtf, my exe auto it makros get detected and get closed from the game what windows did you use?
I have windows 7 64. I am writing my macros in AutoIT (macro.au3) and compile it to macro.exe. The "exe" is not detected.
dinozof is offline  
Old 02/01/2017, 05:04   #10
 
elite*gold: 0
Join Date: Apr 2010
Posts: 16
Received Thanks: 1
Quote:
Originally Posted by asdfg177 View Post
PostMessage:
You can simulate mouse presses and key presses with it. And it will work background too which is awesome as well. The Function Parameters you can get with spy++ easily (this program is self explanory trust me)

Example code for sending Space button (c#)
Code:
public static void SendSpace(IntPtr hWnd)
        {
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_KEYDOWN, (IntPtr)0x20, (IntPtr)0x390001);
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_CHAR, (IntPtr)0x20, (IntPtr)0x390001);
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_KEYUP, (IntPtr)0x20, (IntPtr)0xC0390001);
        }
Example code for sending right mouse click relative to the top left point of the KalOnline Window (c#)
Code:
public static void RightMouseClickRelative(IntPtr hWnd, int relativX, int relativY)
        {
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_RBUTTONDOWN, (IntPtr)HitTestValues.HTCLIENT, (IntPtr)((relativY << 16) | relativX));
            PostMessage(hWnd, (IntPtr)WindowsMessage.WM_RBUTTONUP, (IntPtr)HitTestValues.HTNOWHERE, (IntPtr)((relativY << 16) | relativX));
        }
Have fun
PostMessage is not working for me. It works on notepad, but not on KalOnline. I took your RightMouseClickRelative function. What could be the problem?
hawkagent is offline  
Old 02/02/2017, 09:59   #11
 
elite*gold: 0
Join Date: Oct 2009
Posts: 266
Received Thanks: 47
Quote:
Originally Posted by hawkagent View Post
PostMessage is not working for me. It works on notepad, but not on KalOnline. I took your RightMouseClickRelative function. What could be the problem?
Same think happended to me too when I tested and I was confused too. For me case 1 helped.

case 1: You probably havent run your .exe as administrator
case 2: Function parameters incorrect
asdfg177 is offline  
Old 02/04/2017, 22:52   #12
 
elite*gold: 0
Join Date: Oct 2007
Posts: 1,254
Received Thanks: 199
wow thanks dude i will check this tomorrow and test it.
KillerExtreme is offline  
Old 02/05/2017, 00:48   #13
 
dinozof's Avatar
 
elite*gold: 0
Join Date: Apr 2007
Posts: 190
Received Thanks: 55
Quote:
Originally Posted by KillerExtreme View Post
wow thanks dude i will check this tomorrow and test it.
As I've already mentioned, it works on win7 and win10 , 64 bit systems
dinozof is offline  
Reply


Similar Threads Similar Threads
\ HOTS - Auto Level Macro - Mouse Macro - Only Training /
10/25/2015 - Heroes of the Storm Trading - 1 Replies
* Not a Bot. * Only Mouse movement / Not a any risk. * Level up your account and champ while your AFK or sleeping. * Easy to use. * Two Pointers ( Play,Leave) İf you need more pointers.I can help to you. * You can also Lvl 40 in three or four days with stimpack. I have another thread on ep*cn*c forum. İf have any problem or question for macro , add me on skype ;
Like map click macro. Box Collect Macro with MacroRecorder?
05/25/2015 - DarkOrbit - 0 Replies
#closerequest
LionGamingJ1 Macro V0.8 | Quick Adjustable Macro | Flawless Quickswitch
07/13/2014 - Alliance of Valiant Arms - 8 Replies
My Youtube Channel https://www.youtube.com/user/LionGamingJJ Youtube Video AVA Macro No Survey No Password July 2014 - YouTube AVA Macro No Survey No Password July 2014 - YouTube ScreenShots http://puu.sh/9woFz/a022114278.png
[Release]Macro Files for Macro Manager (AKA BOT)
02/16/2010 - Grand Chase Hacks, Bots, Cheats & Exploits - 16 Replies
@all FYI its not a cheat its just a macro file that enables you to run dungeon so you can do other choirs like mussicca said...!! Contents Mana Valley Dungeon Macro File Xenia Frontier Dungeon UP and LEFT (Remap Dungeon)Macro File Ignis Mountain Dungeon Macro File Orc Temple Dungeon Macro File



All times are GMT +2. The time now is 12:28.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.