Farming Skill, Orb Charging, Battle Staff Creation, etc

- Farming Skill Added
- Orb charging implemented
- Battle staff creation implemented
- Cleaned up some code
- Stuck command will now tele you from further out in wildy if you are not in combat
- Fixed an issue with amulet of glory
- Added forcechats for npcs at Gnome Agility Course, and for Cows, Ducks and Sheeps just like in actual osrs
- Added base for God Book preaching
This commit is contained in:
Mr Extremez
2020-02-19 07:01:24 -06:00
parent 9b220ec47c
commit d18fbb16ca
71 changed files with 12165 additions and 541 deletions
@@ -6,7 +6,7 @@ public class GameItem {
public boolean stackable = false;
public GameItem(int id, int amount) {
if (Item.itemStackable[id]) {
if (ItemData.itemStackable[id]) {
stackable = true;
}
this.id = id;