Back to "skill" tags

Training Cooking to 120 by Jaseowns

1# Cooking all the meats by Jaseowns
2# UO Outlands
3# Older video: https://youtu.be/v3hGUhcXm4M
4# Requirements:
5#   Setup Restock Agent 2 as raw meats (10) and skillet (at least 1)
6#   Setup Organizer Agent 2 as cooked meats to put away
7#   Standing by a fire source (or have camping skill)
8# Additional info:
9#   Edit line 25 to your max cooking skill
10if not varexist meat_box
11    overhead "Select your box of meat" 88
12    setvar meat_box
13endif
14
15gumpclose 949095101
16removelist 'need_fire'
17restock 2
18wft 500 
19target 'meat_box'
20wait 200
21while queued
22    wait 100
23endwhile
24
25if skill 'Cooking' = 120
26    overhead 'You did it!'
27    break
28endif
29
30if counttype 'cut%s% of raw ribs' backpack < 10 and counttype 'raw fish steak%s%' backpack < 10  and counttype  'raw chicken leg%s%' backpack < 10
31    overhead 'No meat!' 34
32    wait 5000
33    replay
34endif
35
36if not findtype 'frypan' backpack
37    overhead 'No pan!' 34
38    wait 5000
39    replay
40endif 
41
42dclicktype 'frypan' backpack
43waitforgump 949095101
44gumpresponse 100
45waitforgump 949095101
46
47
48if counttype 'cut%s% of raw ribs' backpack >= 3 
49    if skill 'Cooking' < 100
50        overhead 'Ribs'
51        gumpresponse 202
52    else
53        overhead 'Ribs Basket'
54        gumpresponse 205
55    endif
56    wait 2500
57    if counttype "cut%s% of raw ribs" backpack = 10
58        createlist 'need_fire'
59    endif
60elseif counttype 'raw chicken leg%s%' >= 3
61     if skill 'Cooking' < 100
62    overhead 'Drumstick'
63        gumpresponse 203
64    else
65        overhead 'Drumstick Basket'
66        gumpresponse 206
67    endif 
68    wait 2500
69    if counttype 'raw chicken leg%s%' backpack = 10
70        createlist 'need_fire'
71    endif
72elseif counttype 'raw fish steak%s%' backpack >= 3
73    if skill 'Cooking' < 100
74        overhead 'Fish'
75        gumpresponse 204
76    else
77        overhead 'Fish Basket'
78        gumpresponse 207
79    endif
80    wait 2500
81    if counttype 'raw fish steak%s%' backpack = 10
82        createlist 'need_fire'
83    endif
84endif
85
86if listexists 'need_fire'
87    gumpclose 
88    wait 500
89    overhead 'Need to be near a fire' 34
90    if skill 'Camping' > 0 and findtype 'kindling' backpack as kindle
91        overhead 'Making a fire' 255
92        dclick kindle
93    endif
94endif
95organizer 2
96loop