Map: Tavern Defense

AFKable Minionless 4-player XP Grinding

Author: Putz

DU 0/120 MU 0/120

Sandbox Mode

Quickly test tower tweaks directly in this build view. Changes are not saved.

Hint focus

Click on a numbered hint marker on the map to zoom and highlight nearby towers. Double click on map to reset zoom.

    No hint selected.

    Tower Filters

    Highlight placed towers (Chrome limitation applies)

    Build Details
    Required Heroes
    NameHPDamageRangeRate
    ApprenticeApprentice1000600030004000
    MonkMonk3000-30001000
    Series-EVSeries-EV1500150015001500

    Build Status: Public

    Difficulty: Nightmare

    Game Mode: Pure Strategy

    AFK Able: No

    XP Per Run: ~55,000,000

    Time Per Run: Wave 12-35, 50 mins

    Mana Used: 0

    Mana to Upgrade: 0

    Build 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