Back to "tasteid" skill

Plant a plant by Jaseowns

1# Plant a plant by Jaseowns
2# UO Outlands
3if gumpexists 3224608375
4    if ingump "Harvest Plant" 3224608375
5        overhead "ready to harvest"
6        gumpresponse 2 3224608375 
7        wait 500
8        replay
9    elseif ingump "Add Plant Seed" 3224608375
10        if findtype "seed of renewal" backpack as item
11            overhead "add a plant seed"
12            gumpresponse 2 3224608375           
13            wft 500
14            target item
15            wait 1000
16            replay
17        else
18            overhead "We do not have a seed!" 34
19            wait 5000
20            replay
21        endif
22    elseif ingump "Add or Use Item" 3224608375
23        overhead "we dunno know"
24    endif
25endif
26
27stop
28
29###########################
30// INFO FROM STREAM::
31###########################    
32
33// if insysmsg "You harvest a plant"
34// 2 is harvest button
35// gumpresponse 2 3224608375
36
37// 
38dclick 0x4317EBFA
39waitforgump 3224608375
40// 3,4,5 is the buttons "with taste id"
41gumpresponse 3 3224608375
42gumpresponse 4 3224608375
43gumpresponse 5 3224608375
44
45// 7 is the next button on bottom right
46gumpresponse 7 3224608375
47// the last button on the bottom right scarecrow thing
48gumpresponse 13 3224608375
49// 6 iks the left back button after clicking 7
50gumpresponse 6 3224608375