Jaundice Posted April 18, 2007 Posted April 18, 2007 This script is very simple (as you can see) and I'm sure any Novice user could create it, but hey I just got the program today. For those who don't know, the Butterfly Tactic in GunZ is Jump, Dash, Slash, Block. This script executes the proper commands to butterfly. The Insta-Butterfly is bound to X by default, but you could change it to anything you want. GunsButterfly.au3
Paulie Posted April 18, 2007 Posted April 18, 2007 (edited) This script is very simple (as you can see) and I'm sure any Novice user could create it, but hey I just got the program today. For those who don't know, the Butterfly Tactic in GunZ is Jump, Dash, Slash, Block. This script executes the proper commands to butterfly. The Insta-Butterfly is bound to X by default, but you could change it to anything you want. GunsButterfly.au3That is a very good start for your first script. Mind if I offer a suggestion for optimization? HotKeySet("x", "Butterfly") While 1 Sleep(500) WEnd Func Butterfly() Send("{SPACE}") Send("w") Send("w") MouseClick("left") Sleep(200) Send("{LSHIFT}") EndFunc The $paused variable is unnecessary because a function set to a hotkey will interrupt a loop, and return to it when its done. You could use [ autoit] tags to post code Edited April 18, 2007 by Paulie
Ashwin007 Posted November 15, 2014 Posted November 15, 2014 where to copy this Folder and how to make this auto buterfly work? say me the procedures please?
Moderators SmOke_N Posted November 15, 2014 Moderators Posted November 15, 2014 Please no necro posting. This topic is 7+ years old. Also, read the forum rules on game posts. Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Recommended Posts