Register for your free account! | Forgot your password?

You last visited: Today at 13:37

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

Advertisement



Autoit/Hacksheild

Discussion on Autoit/Hacksheild within the General Gaming Discussion forum part of the General Gaming category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2008
Posts: 1
Received Thanks: 0
Autoit/Hacksheild

I could use a hand
Ive got the latest hacksheild block exe and with it Requiem runs
I made a little autoit test code here it is
WinWaitActive("Requiem");



While 1=1
Send ("{TAB}")
Sleep (5000)
Send ("{7}")
Sleep (10000)

WEnd
Its short n simple like i said its for test
but when i run Req with my test code running nothing happens am i missing something?
how can i tell if hacksheild is disabled?
reading thru hacksheild post they mention something called CE what is that?
Any usefull info will help thanks in advance
wyldecatt is offline  
Old 09/08/2008, 17:37   #2
 
elite*gold: 0
Join Date: Aug 2008
Posts: 20
Received Thanks: 0
to check if HS is active - jus try to open it's memory with hexworkshop or anything.
then, i don't know what autoit is, but if it sends messages only (like WM_CHAR and WM_KEYUP/DOWN) - forget it. you need to call SendInput() or keybd_event() with scancodes for DirectInput (this topic I cover here bottom). it's because Requiem uses windows messages for chat only, and for navigation it uses DirectInput.
then again, SendInput() calls Native API function NtUserSendInput(), which is hooked by EagleNt.sys HS driver. if you managed to disable HS - there should be no hooks, you are free to go. to check for hooks - use RKUnhooker (look in shadow table for NtUserSendInput).
hilete is offline  
Old 09/08/2008, 18:46   #3
 
elite*gold: 0
Join Date: Jan 2008
Posts: 50
Received Thanks: 17
Try to use macro programs which can send hexadecimal value for the virtual-key codes.

for ex. for TAB it will be 0x9
and 7 - 0x37
Layka0 is offline  
Old 09/08/2008, 18:48   #4
 
elite*gold: 0
Join Date: Aug 2008
Posts: 20
Received Thanks: 0
Layka0, did you try?
hilete is offline  
Old 09/08/2008, 18:52   #5
 
elite*gold: 0
Join Date: Jan 2008
Posts: 50
Received Thanks: 17
yes, for ex.
in my mp autopot macros i use
Quote:
if(pixel(787 965)=0xc87468) wait 0.01; else
if(pixel(787 965)=0xc97468) wait 0.1; else key (0x74)
But im using another program other than autoit
Layka0 is offline  
Old 09/08/2008, 19:01   #6
 
elite*gold: 0
Join Date: Aug 2008
Posts: 20
Received Thanks: 0
i have a feeling we play different games. i nearly ate my keyboard to figure why chat input box accepts 'W', but the character doesn't move. i used spy++ and replicated messages the game recieves when i press 'W', whatever i did - i got the same result. DI scancodes with sendinput solved this problem for me (this topic is actually widely discussed in the net, not about requiem, but about directX games and sending keypresses to them).
and now you tell me that simple ASCII codes work? should i think our version to be advanced, or you are not telling the truth, or i am mistaken in everything, or we are playing different games? is it bloodymare requiem forum at least?
hilete is offline  
Old 09/08/2008, 19:52   #7
 
elite*gold: 0
Join Date: Jan 2008
Posts: 50
Received Thanks: 17
lol, of coz its a dif game , aint this Cabal europe thread jk

I dont know maybe some ppl have problems with macros and sending keys to the Requiem.

i dont experience that with hexadecimal values

try to use Quick macros from and i promise u will luv this small program
Layka0 is offline  
Old 09/30/2008, 18:22   #8
 
elite*gold: 0
Join Date: Oct 2007
Posts: 1
Received Thanks: 0
Quote:
Originally Posted by hilete View Post
i have a feeling we play different games. i nearly ate my keyboard to figure why chat input box accepts 'W', but the character doesn't move. i used spy++ and replicated messages the game recieves when i press 'W', whatever i did - i got the same result. DI scancodes with sendinput solved this problem for me (this topic is actually widely discussed in the net, not about requiem, but about directX games and sending keypresses to them).
and now you tell me that simple ASCII codes work? should i think our version to be advanced, or you are not telling the truth, or i am mistaken in everything, or we are playing different games? is it bloodymare requiem forum at least?
can you share your macros? please...
g00gle88 is offline  
Old 10/01/2008, 15:50   #9
 
elite*gold: 0
Join Date: Aug 2008
Posts: 20
Received Thanks: 0
no macros, i sent messages and called keybd_event() and SendInput() in C++ program, which wrote myself. it's plain simple.
hilete is offline  
Old 10/06/2008, 21:42   #10
 
elite*gold: 0
Join Date: Mar 2008
Posts: 505
Received Thanks: 107
Quote:
Originally Posted by wyldecatt View Post
I could use a hand
Ive got the latest hacksheild block exe and with it Requiem runs
I made a little autoit test code here it is
WinWaitActive("Requiem");



While 1=1
Send ("{TAB}")
Sleep (5000)
Send ("{7}")
Sleep (10000)

WEnd
Its short n simple like i said its for test
but when i run Req with my test code running nothing happens am i missing something?
how can i tell if hacksheild is disabled?
reading thru hacksheild post they mention something called CE what is that?
Any usefull info will help thanks in advance
---------------------------------------------------------------------

ANY NEWS ABOUT THAT ?
Landa is offline  
Old 10/08/2008, 00:15   #11
 
elite*gold: 0
Join Date: Jun 2008
Posts: 64
Received Thanks: 253
THAT is not a proper code, and will do you no good. You first need to bypass HS, and then use AutoIT or some other program to create a MAcro/Bot. I've made mine, and it works flawlessly, but lag is really a pain. I'd make it more complex, but this game is no longer fun after 60.
QuadLord is offline  
Old 10/14/2008, 08:18   #12
 
elite*gold: 0
Join Date: Mar 2008
Posts: 505
Received Thanks: 107
okay..i understand..i just want to know if it is worth to start programming an autoit bot..
Landa is offline  
Old 10/16/2008, 00:27   #13
 
elite*gold: 0
Join Date: Mar 2008
Posts: 505
Received Thanks: 107
FIRST DANCEBOT EVER !!!!!! *gg*

my first try with autoit

-----------------------------------------
#include <GUIConstants.au3>
#include <GUIListBox.au3>
#include <Misc.au3>
#include <Array.au3>
$Form1_1 = GUICreate("Landa-Bot", 500, 380, 278, 199)
GUISetIcon("C:\136.ico")
$Start = GUICtrlCreateButton("Start", 190, 140, 91, 25, 0)
GUICtrlSetFont(-1, 12, 400, 0, "Verdana")
GUICtrlSetColor(-1, 0x000000)
$PHP = PixelSearch(9,49,207,49,0x000000,32)

GUISetState(@SW_SHOW)
Global $Paused
hotkeyset("^!x", "MeinExit")
HotKeySet("{PAUSE}", "TogglePause")

Func Load()
EndFunc

Func Start()
Do
while 1 = 1
WinActivate("Requiem")
Sleep(1000)
Send("1")
Sleep(200)
Send("9")
Sleep(1000)

WEnd


Until _IsPressed("7A")
EndFunc

Load()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $Start

Start()
EndSwitch
WEnd

Func MeinExit()
Exit
Endfunc


-----------------------------------------------
Landa is offline  
Reply


Similar Threads Similar Threads
HackSheild Bypass
02/10/2011 - Dragonica - 26 Replies
Now that I have your attention... doing these steps will allow Dragonica to run an older version of Hackshield than it should, so that some programs will go undetected. I am not responsible to anything that goes wrong with your system for you messing with registry files. Here are the instructions. Good Luck. Thanks to one of my real life friend for showing me this and giving me the HS folder. No clue how this necessarily works, going to go study up on the EagleNT registry file to...
[Q] Bypassing new r11 hacksheild
02/01/2009 - Kal Online - 0 Replies
Does anyone know a way around Aylen's new protection against packet hacks? Or atleast what it would take to do so.
pRFO Hacksheild bypass WPE
12/30/2008 - RFO Hacks, Bots, Cheats, Exploits & Guides - 1 Replies
How To: 1 ) Download and Replace your RF_Online.bin under C:\Program Files\RF Online\RF Online Crimson Dawn 2 ) Make another copy of Hacksheild Folder and name it botsnhacks and place it under the same path. (C:\Program Files\RF Online\RF Online Crimson Dawn) 3 ) Its now bypassed! You may now run other stuff that hook on RF Online. Here: RF_Online.bin - FileFront.com
HELP pRFO Hacksheild bypass
04/11/2008 - RF Online - 8 Replies
help about bypassing the hackshield.



All times are GMT +1. The time now is 13:37.


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.