Skip to content

Commit b8a6e1a

Browse files
committedDec 19, 2018
updated exported scripts
1 parent 1ab4652 commit b8a6e1a

File tree

14 files changed

+196
-138
lines changed

14 files changed

+196
-138
lines changed
 

‎.idea/artifacts/SomeScript.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.idea/workspace.xml

+170-127
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎ExportedScripts/OakCutter.jar

-2.37 MB
Binary file not shown.
9.55 KB
Binary file not shown.

‎ExportedScripts/WillowCutter.jar

-2.37 MB
Binary file not shown.

‎ExportedScripts/YewCutter.jar

-2.37 MB
Binary file not shown.

‎META-INF/MANIFEST.MF

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Manifest-Version: 1.0
2+

‎SomeScript/SomeScript.iml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<module type="JAVA_MODULE" version="4">
3+
<component name="NewModuleRootManager" inherit-compiler-output="true">
4+
<exclude-output />
5+
<content url="file://$MODULE_DIR$/..">
6+
<sourceFolder url="file://$MODULE_DIR$/../src" isTestSource="false" />
7+
</content>
8+
<orderEntry type="inheritedJdk" />
9+
<orderEntry type="sourceFolder" forTests="false" />
10+
<orderEntry type="library" name="client" level="project" />
11+
</component>
12+
</module>
6.11 KB
Binary file not shown.
Binary file not shown.
6.46 KB
Binary file not shown.

‎src/OakCutter/Main.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
import java.awt.*;
1414

1515
@ScriptManifest(
16-
author = "PASH",
17-
description = "Oak Trees",
16+
author = "P A S H",
17+
description = "Oak Trees with Antiban",
1818
category = Category.WOODCUTTING,
19-
version = 1.5,
20-
name = "PASH"
19+
version = 1.0,
20+
name = "[PASH] OakCutter + Antiban"
2121
)
22+
2223
public class Main extends AbstractScript {
2324

2425

‎src/WillowCutter/Main.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@
1717
author = "PASH",
1818
description = "Willow Trees with Antiban",
1919
category = Category.WOODCUTTING,
20-
version = 4.0,
21-
name = "PASH"
20+
version = 1.0,
21+
name = "[PASH] WillowCutter + Antiban"
2222
)
2323

2424

25-
2625
public class Main extends AbstractScript {
2726
Area storeArea = new Area(2947, 3217, 2949, 3214, 0);
2827
Area treeArea = new Area(2959, 3199, 2973, 3191, 0);
@@ -38,7 +37,7 @@ public void onStart(){
3837
if (!getTabs().isOpen(org.dreambot.api.methods.tabs.Tab.INVENTORY)) {
3938
getTabs().openWithMouse(org.dreambot.api.methods.tabs.Tab.INVENTORY);
4039
sleep(Calculations.random(1000, 1500));
41-
log("ANTIBAN: Set tab to inventory.");
40+
log("ANTIBAN: Set tab to inventory.");
4241
}
4342
}
4443

‎src/YewCutter/Main.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414

1515
@ScriptManifest(
1616
author = "PASH",
17-
description = "Yew Trees",
17+
description = "Yew Trees with Antiban",
1818
category = Category.WOODCUTTING,
1919
version = 1.0,
20-
name = "PASH"
20+
name = "[PASH] YewCutter + Antiban"
2121
)
22+
2223
public class Main extends AbstractScript {
2324
Area bankArea = new Area(3185, 3445, 3181, 3435, 0);
2425
Area treeArea = new Area(3203, 3506, 3223, 3498, 0);

0 commit comments

Comments
 (0)
Please sign in to comment.