Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Diablo 3 > Diablo 3 Hacks, Bots, Cheats & Exploits
You last visited: Today at 09:32

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

Advertisement



Frizza - The #1 Diablo III Keypresser

Discussion on Frizza - The #1 Diablo III Keypresser within the Diablo 3 Hacks, Bots, Cheats & Exploits forum part of the Diablo 3 category.

Reply
 
Old   #1
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Frizza - The #1 Diablo III Keypresser

Greetings:
For those who don't know about me from my other works; I'm Henri, programmer of age 24 and I currently 'own' HSoft, a fictitious company that I created to carry my name on the programs I make.
Some of my works can be found here:

Introduction:
Frizza is the #1 Diablo III Keypresser. It's first goal was to serve Critical Mass Wizards, relieving their hand pain. It can still be used, pretty much, for Critical Mass Wizards, as well as Zero Dogs Witch Doctors and many more functionalities! It relieves your pain by only holding a single key!

Technical information:
Frizza is composed by an '.exe, .dll, .jar and an .ini' file. Both the .exe and the .dll were written in C++, using native Win32. It uses a well known and yet safe technique to hack anti-cheats, such as GameGuard, Warden and more. That technique name is not going to be revealed for obvious reasons. Frizza uses keyboard hooking for it's activation. It does not use any dll injection, nor packets/memory manipulation. It also uses random humanly customized intervals between key slams, dramatically decreasing your chances of being caught.
Frizza is a prohibited kind of application, so, once again, use it at your very own risk.

How it works:
The keys to be smashed can be customized using the 'Setup.ini' file. Variable names were carefully chosen for an easy file manipulation.
It is activated as long as the spacebar (default) key is held down. For a list of key codes, go here:

Features:
- Spam single or multiple customized keys, using an humanly smart mechanism
- Multithreaded keypresser with it's own customized interval
- Buff yourself every certain times
Among others!

Screenshots:


Why choose Frizza over AutoHotKey and AutoIt scripts?
AutoIt and AutoHotKey use unmasked, raw Win32 API functions. SendMessage, SendInput, keybd_event, PostMessage... all these functions can be easily hooked by the Warden, increasing the risks of being banned. Frizza masks it's own functions, making it more secure than any AutoIt and AutoHotKey scripts out there.
So what are you waiting for? Go ahead and download Frizza!

MD5 Hash (EXE):
MD5 Hash (DLL):
MD5 Hash (JAR):
Download:

NOTE: I have added a simple serial system to protect this application against leechers. If you do plan to crack it instead of just acknowledging my workr: go ahead; No hard feelings.

Cheers,

Yves Henri
Henri_ is offline  
Thanks
30 Users
Old 01/26/2013, 23:27   #2
 
Renegade91's Avatar
 
elite*gold: 3
Join Date: Jul 2006
Posts: 3,053
Received Thanks: 1,237
Thanks for this - but you could easily use AutoIT for these macros. Easy made and fully customized.
Renegade91 is offline  
Thanks
1 User
Old 01/26/2013, 23:41   #3

 
elite*gold: 250
Join Date: Mar 2010
Posts: 840
Received Thanks: 184
Quote:
Originally Posted by Renegade91 View Post
Thanks for this - but you could easily use AutoIT for these macros. Easy made and fully customized.
or just use a keyboard/mouse with extra buttons where you can put macros on it (Logitech got this function on his gaming products)
FoGzone is offline  
Thanks
1 User
Old 01/27/2013, 15:11   #4
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Quote:
Originally Posted by Renegade91 View Post
Thanks for this - but you could easily use AutoIT for these macros. Easy made and fully customized.
This has already been discussed in other forum, where it was originally posted, as follows:

Quote:
Originally Posted by
Quote:
Originally Posted by
Well if it works like a function in autoit, why write an app that duplicates it? Looking at Au3 binaries, it uses SendInput() for the Send() function, although there are references to keybd_event() too, and PostMessageW() for ControlSend().
Is this your antihack? Iirc, both functions causes the event message to carry an 'injected' flag, that the target application easily can test for.

e: besides, AHK is written off autoit source, so most likely it would be the same
AutoIt and AutoHotKey use unmasked, raw Win32 API functions. SendMessage, SendInput, keybd_event, PostMessage... all these functions can be easily hooked by the Warden, increasing the risks of being banned.
I'm not 100% familiar with the Warden, but I've noticed that it does not hook any of the functions above, however, masking them makes it more secure than any AutoIt and AutoHotKey scripts out there. Still, if you feel safer using them, it ain't no problem.
Henri_ is offline  
Thanks
1 User
Old 01/28/2013, 16:54   #5
 
elite*gold: 0
Join Date: Jan 2013
Posts: 130
Received Thanks: 5
AutoIT is a real bad idea.
.Pasja is offline  
Thanks
1 User
Old 02/02/2013, 19:10   #6
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Giving out 5 beta keys for the first 5 persons to thank this post.
Send a PM with your HCode if you're one of the 5s.
Henri_ is offline  
Thanks
8 Users
Old 02/12/2013, 22:04   #7
 
elite*gold: 0
Join Date: Dec 2010
Posts: 6
Received Thanks: 1
My autoit cm script..

This is the AutoIt script I made to run my CM wizzy and it worked great...Are you saying it could be seen by warden?

Code:
Opt("MouseCoordMode", 2)
Opt("PixelCoordMode", 2)
Global $hWnd = WinGetHandle("Diablo III")
Global $hDLL = DllOpen("user32.dll")
HotKeySet("{F1}", "_TogglePause")
HotKeySet("{F8}", "_Exit")
Global $Paused = False
WinActivate($hWnd)
While 1
	If _IsPressed("20", $hDLL) Then
		While _IsPressed("20", $hDLL)
			Local $x1 = 625
			Local $x2 = 699
			Local $x3 = 773
			Local $x4 = 847
			Local $y = 1114
			Local $color = 7039314
			If (PixelGetColor($x1,$y)) = $color Then
				ControlSend("", "", $hWnd, "1")
			EndIf
			If (PixelGetColor($x2,$y)) = $color Then
				ControlSend("", "", $hWnd, "2")
			EndIf
			If (PixelGetColor($x3,$y)) = $color Then
				ControlSend("", "", $hWnd, "3")
			EndIf
			If (PixelGetColor($x4,$y)) = $color Then
				ControlSend("", "", $hWnd, "4")
			EndIf
		WEnd
    EndIf
    Sleep(10)
WEnd
Func _TogglePause()
ToolTip("",920,0)
$Paused = Not $Paused
	While $Paused = True
	  ToolTip("Paused",920,0)
	  Sleep(1)
	WEnd
EndFunc
It looks for my "stand still" key to be pressed (which is spacebar) then it starts casting and checks for when cooldown is gone to be more efficient.

It is setup for 1920x1600...
Denial666 is offline  
Thanks
1 User
Old 02/13/2013, 17:32   #8
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Quote:
Originally Posted by Denial666 View Post
This is the AutoIt script I made to run my CM wizzy and it worked great...Are you saying it could be seen by warden?
Yes. ControlSend is a threat. I have also seen pixel detecting mechanisms being hunted by anticheats, not sure about Warden on this one.
Henri_ is offline  
Thanks
1 User
Old 02/13/2013, 20:44   #9

 
elite*gold: 250
Join Date: Mar 2010
Posts: 840
Received Thanks: 184
Quote:
Originally Posted by Henri_ View Post
Yes. ControlSend is a threat. I have also seen pixel detecting mechanisms being hunted by anticheats, not sure about Warden on this one.
If you take a look into the library of AutoIt you will see that the command "ControlSend" requieres an injection. So yes, Blizzard could ban you for using your script
FoGzone is offline  
Thanks
1 User
Old 02/18/2013, 02:20   #10
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Application updated to version 1.1

- Added customizable trigger key
- Updated activation mechanism
- Added individual threads per key, with it's own customizable delay
- Added autoupdater

Please leave your feedback.
Henri_ is offline  
Thanks
1 User
Old 02/18/2013, 13:05   #11
 
elite*gold: 0
Join Date: Jan 2007
Posts: 19
Received Thanks: 7
hello there, I tryied to run your soft but I was not successfull. Could you please post some "how to" to gain maximum effect from your soft?

thank you
garfild is offline  
Old 02/18/2013, 18:05   #12
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Quote:
Originally Posted by garfild View Post
hello there, I tryied to run your soft but I was not successfull. Could you please post some "how to" to gain maximum effect from your soft?

thank you
What do you mean not successful?
Well, I would recommend you to set the trigger key the same key as your "stand still" key on Diablo, in my case, that's spacebar.
For a full list of key codes go here
If you find that it's pressing keys too slow, change it's respective min and max intervals.
That's it. Happy hunting and have fun!
Henri_ is offline  
Old 02/18/2013, 20:39   #13
 
elite*gold: 0
Join Date: Jan 2007
Posts: 19
Received Thanks: 7
omg just tested and works perfectly! Very smoth, no nova fails (you are holding macro key, nova is reused but it wotn use it) like with autoit scripts. The only problem is with autoupdater, i had to delete java file because it still want update but I have the newest version, just downloaded.
garfild is offline  
Old 02/18/2013, 23:55   #14
 
Henri_'s Avatar
 
elite*gold: 400
Join Date: Feb 2010
Posts: 237
Received Thanks: 520
Application updated to version 1.1.1

- Fixed the AutoUpdate on startup
Henri_ is offline  
Old 02/19/2013, 07:23   #15
 
elite*gold: 0
Join Date: Jan 2007
Posts: 19
Received Thanks: 7
post you paypal acc, I would like to support you!
garfild is offline  
Reply

Tags
cm, frizza, henri, macro, wiz


Similar Threads Similar Threads
Keypresser
07/01/2011 - SRO Private Server - 0 Replies
Have anyone Keypresser who press hard not like Itool or something ;-) Ty ..
(Suche Silkroad Keypresser)(Need Sro Keypresser) !!
06/14/2011 - SRO Private Server - 1 Replies
Hi i search for a keypresser for silkroad i need to dlvln my char can someone help me? Suche einen keypresser für Silkroad fürs dlvln am besten auch mit autoress der geht MFG
Keypresser
08/26/2010 - SRO Private Server - 4 Replies
Is there any working keypresser for swsro?Lolkop's does not work anymore...
is there a keypresser???
06/05/2010 - SRO Private Server - 7 Replies
0



All times are GMT +2. The time now is 09:32.


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.