Created: 02/21/2023, 02:40:54 AM Updated: 02/21/2023, 02:40:54 AM View Change History
1
2
3gumpclose
4restock 3
5waitfortarget
6hotkey 'Target Self'
7wait 1000
8
9if not findtype 5091 backpack
10 overhead 'No hammer'
11 break
12endif
13
14if counttype 7154 backpack < 20
15 overhead 'No ingots'
16 break
17endif
18
19dclicktype 5091 backpack
20waitforgump 949095101
21
22if skill 'Blacksmith' >= 50 and skill 'Blacksmith' < 65
23 overhead 'Gorget'
24 gumpresponse 101
25 waitforgump 949095101
26 gumpresponse 200
27elseif skill 'Blacksmith' >= 65 and skill 'Blacksmith' < 70
28 overhead 'Gloves'
29 gumpresponse 101
30 waitforgump 949095101
31 gumpresponse 201
32elseif skill 'Blacksmith' >= 70 and skill 'Blacksmith' < 75
33 overhead 'Coif'
34 gumpresponse 101
35 waitforgump 949095101
36 gumpresponse 202
37elseif skill 'Blacksmith' >= 75 and skill 'Blacksmith' < 85
38 overhead 'Platemail Gorget'
39 gumpresponse 102
40 waitforgump 949095101
41 gumpresponse 200
42elseif skill 'Blacksmith' >= 85 and skill 'Blacksmith' < 90
43 overhead 'Platemail Gloves'
44 gumpresponse 102
45 waitforgump 949095101
46 gumpresponse 201
47elseif skill 'Blacksmith' >= 90 and skill 'Blacksmith' < 95
48 overhead 'Platemail Helm'
49 gumpresponse 102
50 waitforgump 949095101
51 gumpresponse 202
52elseif skill 'Blacksmith' >= 95 and skill 'Blacksmith' < 100
53 overhead 'Platemail Arms'
54 gumpresponse 102
55 waitforgump 949095101
56 gumpresponse 203
57elseif skill 'Blacksmith' >= 100 and skill 'Blacksmith' < 105
58 overhead 'Platemail Legs'
59 gumpresponse 102
60 waitforgump 949095101
61 gumpresponse 204
62elseif skill 'Blacksmith' >= 105 and skill 'Blacksmith' < 120
63 overhead 'Repair Kits'
64 gumpresponse 109
65 waitforgump 949095101
66 gumpresponse 200
67else
68 overhead 'All Done!'
69 break
70endif
71wait 4000
72gumpclose
73if findtype 5091 backpack
74 dclicktype 5091 backpack
75 waitforgump 949095101
76 gumpresponse 3 949095101
77 wft 5000
78 hotkey 'Target Self'
79endif
80loop