mirror of
https://github.com/2006-Scape/Script-Factory.git
synced 2026-07-02 16:49:10 +00:00
Update Premade Scripts
Repackaged A Bit More Enabled ArdyCakesBanking Script CowkillerBanking: Only Walk To Cows If Inv Isn't Full CowKillerPower: Created Script Openlummybank: Raised Waiting Time again
This commit is contained in:
@@ -3,8 +3,11 @@ package scriptfactory.AdvancedGui.ScriptFactorySDN;
|
||||
import org.parabot.core.desc.ScriptDescription;
|
||||
import org.parabot.environment.scripts.Category;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.CowkillerBanking;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.CowkillerPower;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.FeatherFarmer;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Deps.Openlummybank;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Deps.Walktocows;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Thieving.ArdyCakesBanking;
|
||||
|
||||
public class ScriptFactoryScript extends ScriptDescription {
|
||||
|
||||
@@ -26,11 +29,14 @@ public class ScriptFactoryScript extends ScriptDescription {
|
||||
public static ScriptFactoryScript[] getDescriptions() {
|
||||
return new ScriptFactoryScript[]{
|
||||
//Scripts
|
||||
new ArdyCakesBanking(),
|
||||
new CowkillerBanking(),
|
||||
//new ArdyCakes(),
|
||||
new CowkillerPower(),
|
||||
// new FeatherFarmer(),
|
||||
|
||||
//Deps
|
||||
new Walktocows(),
|
||||
new Openlummybank(),
|
||||
new Walktocows(),
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
+10
-10
@@ -7,16 +7,11 @@ public class CowkillerBanking extends ScriptFactoryScript {
|
||||
public CowkillerBanking() {
|
||||
super(
|
||||
"Cow killer (with banking)",
|
||||
"Before",
|
||||
"Red Bracket",
|
||||
Category.COMBAT,
|
||||
1.1,
|
||||
"Kills Cows In Lumbridge And Banks In The Castle \n Set Tick Speed To 1000 For Best Results \n Can Be Started Anywhere",
|
||||
"If Inventory-slots-used(28)\n" +
|
||||
"Run-subscript(Openlummybank)\n" +
|
||||
"Bank-all-except-IDs()\n" +
|
||||
"Run-subscript(Walktocows)\n" +
|
||||
"Endif\n" +
|
||||
"IfNot In-Combat()\n" +
|
||||
1.2,
|
||||
"Kills Cows In Lumbridge And Banks In The Castle \n Can Be Started Anywhere",
|
||||
"IfNot In-Combat()\n" +
|
||||
"If Entity-is-around(81,397,1767,1768)\n" +
|
||||
"Take-Ground-item(2132)\n" +
|
||||
"Take-Ground-item(526)\n" +
|
||||
@@ -24,17 +19,22 @@ public class CowkillerBanking extends ScriptFactoryScript {
|
||||
"If Inventory-slots-used(28)\n" +
|
||||
"Run-subscript(Openlummybank)\n" +
|
||||
"Bank-all-except-IDs()\n" +
|
||||
"IfNot Inventory-slots-used(28)\n" +
|
||||
"Run-subscript(Walktocows)\n" +
|
||||
"Endif\n" +
|
||||
"Endif\n" +
|
||||
"Interact-with-entity-by-ID(81,397,1767,1768,1)\n" +
|
||||
"Sleep(600)\n" +
|
||||
"Endif\n" +
|
||||
"IfNot Entity-is-around(81,397,1767,1768)\n" +
|
||||
"If Inventory-slots-used(28)\n" +
|
||||
"Run-subscript(Openlummybank)\n" +
|
||||
"Bank-all-except-IDs()\n" +
|
||||
"Endif\n" +
|
||||
"IfNot Inventory-slots-used(28)\n" +
|
||||
"Run-subscript(Walktocows)\n" +
|
||||
"Endif\n" +
|
||||
"Endif\n" +
|
||||
"Endif\n" +
|
||||
"Endif\n",
|
||||
new String[]{"Walktocows", "Openlummybank"}
|
||||
);
|
||||
|
||||
+27
@@ -0,0 +1,27 @@
|
||||
package scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat;
|
||||
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.ScriptFactoryScript;
|
||||
import org.parabot.environment.scripts.Category;
|
||||
|
||||
public class CowkillerPower extends ScriptFactoryScript {
|
||||
public CowkillerPower() {
|
||||
super(
|
||||
"Power Cow killer",
|
||||
"Dark98 & Red Bracket",
|
||||
Category.COMBAT,
|
||||
1.0,
|
||||
"Kills Cows In Lumbridge \n Can Be Started Anywhere",
|
||||
|
||||
"IfNot In-Combat()\n" +
|
||||
"If Entity-is-around(81,397,1767,1768)\n" +
|
||||
"Interact-with-entity-by-ID(81,397,1767,1768,1)\n" +
|
||||
"Sleep(600)\n" +
|
||||
"Endif\n" +
|
||||
"IfNot Entity-is-around(81,397,1767,1768)\n" +
|
||||
"Run-subscript(Walktocows)\n" +
|
||||
"Endif\n" +
|
||||
"Endif\n",
|
||||
new String[]{"Walktocows"}
|
||||
);
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -7,7 +7,7 @@ public class Openlummybank extends ScriptFactoryScript
|
||||
public Openlummybank() {
|
||||
super(
|
||||
"Openlummybank",
|
||||
"Before",
|
||||
"Red Bracket",
|
||||
"Dependency",
|
||||
1.1,
|
||||
"Opens the bank in lumbridge castle from anywhere",
|
||||
@@ -16,7 +16,7 @@ public class Openlummybank extends ScriptFactoryScript
|
||||
"Interact-with-entity-by-location(3217,3218,1)\n" +
|
||||
"Interact-with-entity-by-location(3215,3211,1)\n" +
|
||||
"Interact-with-entity-by-location(3204,3207,1)\n" +
|
||||
"Sleep(12000)\n" +
|
||||
"Sleep(15000)\n" +
|
||||
"Interact-with-entity-by-location(3204,3207,1)\n" +
|
||||
"Interact-with-entity-by-location(3204,3207,2)\n" +
|
||||
"Interact-with-entity-by-ID(494,3)\n" +
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ public class Walktocows extends ScriptFactoryScript
|
||||
public Walktocows() {
|
||||
super(
|
||||
"Walktocows",
|
||||
"Before",
|
||||
"Red Bracket",
|
||||
"Dependency",
|
||||
1.0,
|
||||
"Walks to the cows in lumbridge from anywhere",
|
||||
|
||||
Reference in New Issue
Block a user