Disable Tower | Highlight Tower (Not Working for Chrome):
Details:
Hero | HP | Damage | Range | Rate |
---|---|---|---|---|
Apprentice | 1000 | 6000 | 3000 | 4000 |
Monk | 3000 | 0 | 3000 | 1000 |
Ev | 1500 | 1500 | 1500 | 1500 |
Build Status: Public
Difficulty: Nightmare
Game Mode: Pure Stratergy
AFK Able: No
XP Per Run: ~55,000,000
Time Per Run: Wave 12-35, 50 mins
Mana Used: 0
Mana to Upgrade: 0
More Builds from Putz
Description:
Hint 1: 5 DU buff beam to max DU.
After placing each buff beam, upgrade it two times.
Only fully AFKable after buffs/auras are upgraded and using a CTRL+G macro:
#MaxThreadsPerHotkey 2
#MaxHotkeysPerInterval 20
#SingleInstance Force
#IfWinActive, Dungeon Defenders
#NoEnv
#Persistent
SendMode Input
; Automatically Press CTRL+G after pressing F10
F10::
toggle := !toggle
If (!toggle) {
ToolTip
}
Else {
Tooltip, Auto-Advance On (press F10 to stop), 0, 0
}
Loop {
If (!toggle) {
Break
}
ControlSend, , ^&g, ahk_exe DunDefGame.exe
sleep 1000
}
return