-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added More Inventory Checks To Stop The Script Being Weird Repackaged A Bit Updated Script Descriptions Lowered Waiting Time In Openlummybank Script
- Loading branch information
Showing
6 changed files
with
109 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...main/java/scriptfactory/AdvancedGui/ScriptFactorySDN/Scripts/Combat/CowkillerBanking.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Combat; | ||
|
||
import scriptfactory.AdvancedGui.ScriptFactorySDN.ScriptFactoryScript; | ||
import org.parabot.environment.scripts.Category; | ||
|
||
public class CowkillerBanking extends ScriptFactoryScript { | ||
public CowkillerBanking() { | ||
super( | ||
"Cow killer (with banking)", | ||
"Before", | ||
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" + | ||
"If Entity-is-around(81,397,1767,1768)\n" + | ||
"Take-Ground-item(2132)\n" + | ||
"Take-Ground-item(526)\n" + | ||
"Take-Ground-item(1739)\n" + | ||
"If Inventory-slots-used(28)\n" + | ||
"Run-subscript(Openlummybank)\n" + | ||
"Bank-all-except-IDs()\n" + | ||
"Run-subscript(Walktocows)\n" + | ||
"Endif\n" + | ||
"Interact-with-entity-by-ID(81,397,1767,1768,1)\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" + | ||
"Run-subscript(Walktocows)\n" + | ||
"Endif\n" + | ||
"Endif\n", | ||
new String[]{"Walktocows", "Openlummybank"} | ||
); | ||
} | ||
} |
81 changes: 0 additions & 81 deletions
81
src/main/java/scriptfactory/AdvancedGui/ScriptFactorySDN/Scripts/Cowkiller.java
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
src/main/java/scriptfactory/AdvancedGui/ScriptFactorySDN/Scripts/Deps/Openlummybank.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Deps; | ||
|
||
import scriptfactory.AdvancedGui.ScriptFactorySDN.ScriptFactoryScript; | ||
|
||
public class Openlummybank extends ScriptFactoryScript | ||
{ | ||
public Openlummybank() { | ||
super( | ||
"Openlummybank", | ||
"Before", | ||
"Dependency", | ||
1.1, | ||
"Opens the bank in lumbridge castle from anywhere", | ||
"Type(::stuck,1)\n" + | ||
"Sleep(1500)\n" + | ||
"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" + | ||
"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" + | ||
"Sleep(6000)\n", | ||
new String[]{} | ||
); | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
src/main/java/scriptfactory/AdvancedGui/ScriptFactorySDN/Scripts/Deps/Walktocows.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package scriptfactory.AdvancedGui.ScriptFactorySDN.Scripts.Deps; | ||
|
||
import scriptfactory.AdvancedGui.ScriptFactorySDN.ScriptFactoryScript; | ||
|
||
public class Walktocows extends ScriptFactoryScript | ||
{ | ||
public Walktocows() { | ||
super( | ||
"Walktocows", | ||
"Before", | ||
"Dependency", | ||
1.0, | ||
"Walks to the cows in lumbridge from anywhere", | ||
"IfNot Entity-is-around(81,397,1767,1768)\n" + | ||
"Type(::stuck,1)\n" + | ||
"Sleep(1500)\n" + | ||
"Walk-to(3241,3226,14000)\n" + | ||
"Walk-to(3259,3233,14000)\n" + | ||
"Walk-to(3256,3250,14000)\n" + | ||
"Walk-to(3252,3266,14000)\n" + | ||
"Interact-with-entity-by-location(3253,3266,1)\n" + | ||
"Walk-to(3258,3268,5000)\n" + | ||
"Endif\n", | ||
new String[]{} | ||
); | ||
} | ||
} |
8 changes: 4 additions & 4 deletions
8
...i/ScriptFactorySDN/Scripts/ArdyCakes.java → ...DN/Scripts/Thieving/ArdyCakesBanking.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters