Frizza - The #1 Diablo III Keypresser

01/26/2013 16:59 Henri_#1
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: [Only registered and activated users can see links. Click Here To Register...]

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: [Only registered and activated users can see links. Click Here To Register...]

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:
[Only registered and activated users can see links. Click Here To Register...]

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): [Only registered and activated users can see links. Click Here To Register...]
MD5 Hash (DLL): [Only registered and activated users can see links. Click Here To Register...]
MD5 Hash (JAR): [Only registered and activated users can see links. Click Here To Register...]
Download: [Only registered and activated users can see links. Click Here To Register...]

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
01/26/2013 23:27 Renegade91#2
Thanks for this - but you could easily use AutoIT for these macros. Easy made and fully customized. :)
01/26/2013 23:41 FoGzone#3
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)
01/27/2013 15:11 Henri_#4
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 [Only registered and activated users can see links. Click Here To Register...]
Quote:
Originally Posted by [Only registered and activated users can see links. Click Here To Register...]
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.
01/28/2013 16:54 .Pasja#5
AutoIT is a real bad idea.
02/02/2013 19:10 Henri_#6
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.
02/12/2013 22:04 Denial666#7
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...
02/13/2013 17:32 Henri_#8
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.
02/13/2013 20:44 FoGzone#9
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
02/18/2013 02:20 Henri_#10
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.
02/18/2013 13:05 garfild#11
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
02/18/2013 18:05 Henri_#12
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 [Only registered and activated users can see links. Click Here To Register...]
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! :)
02/18/2013 20:39 garfild#13
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.
02/18/2013 23:55 Henri_#14
Application updated to version 1.1.1

- Fixed the AutoUpdate on startup
02/19/2013 07:23 garfild#15
post you paypal acc, I would like to support you!