Auto-Begger by Brozan (Syal)
Description from the author: 
clearsysmsg
createlist 'IgnoreNPC'
while not dead 
    hotkey 'Next Humanoid Target'
    wait 250
    @setvar! 'lastserial' lasttarget
    if noto 'lastserial' = innocent  
        pushlist 'IgnoreNPC' 'lastserial'
    elseif noto 'lastserial' = invulnerable and not inlist 'IgnoreNPC' 'lastserial'
        #if not findlayer lasttarget backpack
            if findtype 3922 'backpack' as 'mydagger'
                getlabel 'mydagger' 'daggerlabel'
                if 'blessed' in 'daggerlabel'
                    dclick 'mydagger'
                    wft 1500
                    target 'lastserial'
                    wait 350
                endif
            endif
            
            if insysmsg 'use a bladed item on that'
                # Close to NPC
                hotkey 'Begging'
                wft 1800
                target 'lastserial'
                wait 2500
                while insysmsg "must wait"
                    wait 350
                    hotkey 'Begging'
                    wft 1800
                    target 'lastserial'
                    wait 350
                 endwhile
                pushlist 'IgnoreNPC' 'lastserial'
            endif
            #endif
    endif
endwhileCycles through all humanoid types and attempts to beg if a target is found in range. Utilizes an ignore list to avoid cycling same targets








