Back to "ping" tags

Harvest Kindling by Little Cloud

Description:

***Requirements: Have a dagger in backpack

***Instructions: Press play near trees & walk around trees when "No more wood" is displayed overhead.

This is the first script I've uploaded, but it's handy to have. Designed for running around and quickly gathering kindling for campfires. It does require babysitting, because programming to walk around is kinda tedious and unreliable in this case.

1// Written by: Little Cloud
2// Requirements: Have a dagger 
3//              in backpack
4// Instructions: Press play near trees
5//              & walk around when
6//              No more wood is shown    
7
8if findtype "dagger" backpack
9    dclicktype "dagger" backpack
10    wait 200
11    target 'self'
12    else 
13        overhead "No dagger in backpack"
14        break
15endif
16
17if insysmsg "There's not enough"
18    overhead "No more wood"
19    wait 2000
20endif
21
22loop