hDyz
Member
- Joined
- Jan 15, 2010
- Messages
- 147
- Reaction score
- 1
Alright, so I've made a guild creation tool today which is an autoit script, It will run with other programs on top of WOW, but it won't run if WOW is minimized. It targets a friendly player and request their signature. I've made 3 guilds so far today with it. Just put your toon at a starting area spawn point and start the script, after about an hour (depending on server population and new players) you should have 9 sigs. Note that Saturdays are awesome for this (lots of new players)
Setup:
1. Make Macro 1 and Macro 2 and place them in the 1 and 2 button slots.
2. Place your toon by a starting area spawn point
3. Open your guild charter
4. Execute the script (you should see Auto Guild Creator v1.6 in the top left corner of your screen)
5. Press F9 to start/stop the script (F10 will exit the script)
6. Go afk or continue to use your computer. ***NOTE: WOW MUST NOT BE MINIMIZED, IT CAN BE IN THE BACKGROUND (Other programs open on top of it etc..) BUT THIS WON'T WORK IF WOW IS MINIMIZED.***
Macro 1
Macro 2
Its pretty basic, every 30 seconds it presses macro 1 (target friendly player) then presses macro 2 (Request signature button) then presses d which turns your character slightly to prevent you from going afk.
Enjoy!
Setup:
1. Make Macro 1 and Macro 2 and place them in the 1 and 2 button slots.
2. Place your toon by a starting area spawn point
3. Open your guild charter
4. Execute the script (you should see Auto Guild Creator v1.6 in the top left corner of your screen)
5. Press F9 to start/stop the script (F10 will exit the script)
6. Go afk or continue to use your computer. ***NOTE: WOW MUST NOT BE MINIMIZED, IT CAN BE IN THE BACKGROUND (Other programs open on top of it etc..) BUT THIS WON'T WORK IF WOW IS MINIMIZED.***
Macro 1
Code:
/targetfriendplayer
Macro 2
Code:
/click PetitionFrameRequestButton
Code:
HotKeySet("{F9}","onoff")
HotKeySet("{F10}","exitapp")
Dim $click = False
ToolTip("Auto Guild Creator v1.6..F9 start/stop F10 Exit", 0, 0)
Func onoff()
If $click = False Then
$click = True
Else
$click = False
EndIf
EndFunc
Func exitapp()
Exit
EndFunc
While True
If $click = True Then
ControlSend("World of Warcraft", "", "", "{1}")
Sleep(1000)
ControlSend("World of Warcraft", "", "", "{2}")
ControlSend("World of Warcraft", "", "", "{d}")
EndIf
Sleep(29000)
WEnd
Its pretty basic, every 30 seconds it presses macro 1 (target friendly player) then presses macro 2 (Request signature button) then presses d which turns your character slightly to prevent you from going afk.
Enjoy!

Last edited: