Back to "ping" tags

Harvest Kindling by demlar

1# Author: Demlar
2# walk close to a tree with a dagger in your backpack.
3
4while not dead   
5
6    if findtype '3922' backpack
7        dclicktype '3922' backpack
8        wait 200
9        target 'self'
10    else
11        overhead 'Time to buy more daggers' 88
12        stop
13    endif
14  
15    for 20
16        wait 750
17        if insysmsg "You put some kindling"
18            break
19        endif
20        if insysmsg  "There's not enough wood here" or insysmsg "You do not see any nearby" 
21            overhead "Find more trees"
22            break
23        endif
24    endfor
25    
26endwhile