-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAbyte0_CraftPot.java
More file actions
246 lines (209 loc) · 4.44 KB
/
Abyte0_CraftPot.java
File metadata and controls
246 lines (209 loc) · 4.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
//Craft your soft clay to get quickly to 10+ crafting
//2021-01-01 V0.1 added PieDish at level 4
//2022-03-28 V1.0 Support Tasking
public class Abyte0_CraftPot extends Abyte0_Script implements ITaskScript
{
private final String SCRIPT_VERSION = "1.1";
int fmode = 2;
int bucket = 21;
int clay = 149;
int sink = 48;
int waterBucket = 50;
int softClay = 243;
int unfiredPot = 279;
int unfiredPieDish = 278;
int cookedPot = 135;
int cookedPieDish = 251;
int potterWheel = 179;
int potteryOven = 178;
int bankerId = 95;
String barType;
int[] doorObj;
public Abyte0_CraftPot(Extension e)
{
super(e);
}
public void init( String params )
{
if(params.contains(TaskParameters.TASKING_HEADER))
{
isRunningAsTask = true;
print("Abyte0_SoftClay [Running as task]");
taskingDetails = TaskParameters.buildFromString(params);
params = taskingDetails.TaskInputParams;
print("param left:"+params);
}
String str[]=params.split(",");
if(str.length == 1)
{
fmode = Integer.parseInt(str[0]);
print("fmode set to : " + FIGHTMODES[fmode]);
}
print("Abyte0_CraftPot Ardougne Soft Clay Crafter");
print("Version " + SCRIPT_VERSION);
}
public int main()
{
if(getFightMode() != fmode)
{
setFightMode(fmode);
}
if(isInBank())
{
if(isBanking())
{
if(isRunningAsTask && hasCompleted()) { endTask(); return 666;}
if(getInventoryCount(1263) < 1)
{
withdraw(1263,1);
return 1000;
}
if(getInventoryCount(cookedPot) > 0)
{
deposit(cookedPot,getInventoryCount(cookedPot));
return 200;
}
if(getInventoryCount(cookedPieDish) > 0)
{
deposit(cookedPieDish,getInventoryCount(cookedPieDish));
return 200;
}
if(getInventoryCount() < 30)
{
withdraw(softClay,50);
return 200;
}
if(getInventoryCount(softClay) > 0)
{
closeBank();
return 1000;
}
}
if(isQuestMenu())
{
answer(0);
return 3500;
}
if(getInventoryCount(softClay) > 0)
{
walkTo(586,586);
return 1000;
}
else
{
int banker[] = getNpcByIdNotTalk(new int[]{bankerId});
if (banker[0] != -1 && !isBanking())
{
talkToNpc(banker[0]);
return 2500;
}
}
}
else if(isInPotteryRoom())
{
if(getFatigue() > 70)
{
useSleepingBag();
return 1000;
}
if(getInventoryCount(softClay) > 0)
{
if(!isQuestMenu())
{
useItemOnObject(softClay, potterWheel);
return 1000;
}
else
{
if(getLevel(12) >= 4)
answer(0);
else
answer(1);
return 3000;
}
}
if(getInventoryCount(unfiredPot) > 0)
{
useItemOnObject(unfiredPot, potteryOven);
return 500;
}
if(getInventoryCount(unfiredPieDish) > 0)
{
useItemOnObject(unfiredPieDish, potteryOven);
return 500;
}
//Done on this batch, walkout
walkTo(606,593);
return 500;
}
else
{
if(getInventoryCount(softClay) > 0 || getInventoryCount(unfiredPieDish) > 0 || getInventoryCount(unfiredPot) > 0)
{
//Walk to Pottery
if(getX() < 594)// East Side
{
if(getY() < 586)
{
walkTo(586,586);//Sink Building Door
return 300;
}
if(getY() > 603)
{
walkTo(594,603);//Bridge
return 300;
}
}
walkTo(607,591); //Pottery room
return 300;
}
else
{
//WalkToBank
if(getX() > 594)
{
walkTo(594,603);//Bridge
return 300;
}
if(getY() > 586)
{
walkTo(586,586);//Sink Building Door
return 300;
}
walkTo(581,573); //Bank
return 300;
}
}
return 300;
}
private boolean isInBank()
{
if(getX() >= 577 && getX() <= 585 && getY() >= 572 && getY() <= 576) return true;
return false;
}
private boolean isInPotteryRoom()
{
if(getX() >= 604 && getX() <= 610 && getY() >= 589 && getY() <= 592) return true;
return false;
}
@Override
public String getSctiptVersion()
{
return SCRIPT_VERSION;
}
private boolean isRunningAsTask = false;
private TaskParameters taskingDetails;
@Override
public boolean hasCompleted()
{
if(getLevel(12) >= 10) return true;
return false;
}
@Override
public void endTask()
{
depositAll();
print("Task ended : Crafting to level 10");
switchToScript(taskingDetails.MainScriptName,taskingDetails.MainScriptParams);
}
}