mirror of
https://github.com/2006-Scape/Script-Factory.git
synced 2026-07-02 16:49:10 +00:00
Added Feather Farmer With Bone Burying Sample Script
This commit is contained in:
@@ -4,6 +4,7 @@ import org.parabot.core.desc.ScriptDescription;
|
||||
import org.parabot.environment.scripts.Category;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.CowkillerBones;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.CowkillerPower;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat.FeatherFarmerBones;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Deps.Walktocows;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Thieving.ArdyCakesBanking;
|
||||
|
||||
@@ -30,6 +31,7 @@ public class ScriptFactoryScript extends ScriptDescription {
|
||||
new ArdyCakesBanking(), //TODO Untested?
|
||||
new CowkillerBones(),
|
||||
new CowkillerPower(),
|
||||
new FeatherFarmerBones(),
|
||||
|
||||
//Deps
|
||||
//new Openlummybank(),
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
package scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat;
|
||||
|
||||
import org.parabot.environment.scripts.Category;
|
||||
import scriptfactory.AdvancedGui.ScriptFactorySDN.ScriptFactoryScript;
|
||||
|
||||
public class FeatherFarmerBones extends ScriptFactoryScript {
|
||||
public FeatherFarmerBones() {
|
||||
super(
|
||||
"Feather Farmer (with bone burying)",
|
||||
"Dark98",
|
||||
Category.COMBAT,
|
||||
1.0,
|
||||
"Kills Chickens, Farms The Feathers & Buries The Bones \n Start Near Chickens",
|
||||
"IfNot In-Combat()\n" +
|
||||
"If Entity-is-around(41)\n" +
|
||||
"If Item-is-on-Ground(526)\n" +
|
||||
"Take-Ground-item(526)\n" +
|
||||
"Take-Ground-item(314)\n" +
|
||||
"Endif\n" +
|
||||
"If Item-is-in-Inventory(527,1)\n" +
|
||||
"Inventory-item-interact(527,2)\n" +
|
||||
"Endif\n" +
|
||||
"Interact-with-entity-by-ID(41,1)\n" +
|
||||
"Sleep(600)\n" +
|
||||
"Endif\n" +
|
||||
"Endif",
|
||||
new String[]{}
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user