Files
2006Scape/2006Redone Server/src/main/java/com/rebotted/game/items/GameItem.java
T
Mr Extremez d18fbb16ca 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
2020-02-19 07:01:24 -06:00

16 lines
337 B
Java

package com.rebotted.game.items;
public class GameItem {
public int id, amount;
public boolean stackable = false;
public GameItem(int id, int amount) {
if (ItemData.itemStackable[id]) {
stackable = true;
}
this.id = id;
this.amount = amount;
}
}