Code:
package palidino76.rs2.world.items;
/**
* Created by IntelliJ IDEA.
* Author : Serenity
* From : Rune-server.org
* Date : 18-nov-2009
* Time : 18:18:19
* Package : palidino76.rs2.world.items
*/
public class NItemList {
public NItemList(int itemId, String ItenName,
String ItemDescription, int ShopValue, int HighAlch, int LowAlch,
int GeLow, int GeHigh, boolean StackAble, boolean Note, int NoteId, int weight,boolean tradeable) {
setItemId(itemId);
setItemName(ItenName);
setItemDescription(ItemDescription);
setShopValue(ShopValue);
setHighAlch(HighAlch);
setLowAlch(LowAlch);
setGeLow(GeLow);
setGeHigh(GeHigh);
setStackAble(StackAble);
setNote(Note);
setNoteId(NoteId);
setWeight(weight);
setTradeAble(tradeable);
}
public NItemList(int itemId, String ItenName,
String ItemDescription, int ShopValue, int HighAlch, int LowAlch,
int GeLow, int GeHigh, boolean StackAble, boolean Note, int NoteId, int weight,boolean tradeable,
boolean WearAble, int EquipSlotId, boolean is2h, int WearId, int[][] LvlToWear,
int[] Bonus) {
setItemId(itemId);
setItemName(ItenName);
setItemDescription(ItemDescription);
setShopValue(ShopValue);
setHighAlch(HighAlch);
setLowAlch(LowAlch);
setGeLow(GeLow);
setGeHigh(GeHigh);
setStackAble(StackAble);
setNote(Note);
setNoteId(NoteId);
setWeight(weight);
setTradeAble(tradeable);
setWearAble(WearAble);
setEquipSlotId(EquipSlotId);
setIs2h(is2h);
setWearId(WearId);
setLvlToWear(LvlToWear);
setBonus(Bonus);
}
public NItemList(int itemId, String ItenName,
String ItemDescription, int ShopValue, int HighAlch, int LowAlch,
int GeLow, int GeHigh, boolean StackAble, boolean Note, int NoteId, int weight,boolean tradeable,
boolean WearAble, int EquipSlotId, boolean is2h, int WearId, int[][] LvlToWear,
int[] Bonus, int Anim[], int speed) {
setItemId(itemId);
setItemName(ItenName);
setItemDescription(ItemDescription);
setShopValue(ShopValue);
setHighAlch(HighAlch);
setLowAlch(LowAlch);
setGeLow(GeLow);
setGeHigh(GeHigh);
setStackAble(StackAble);
setNote(Note);
setNoteId(NoteId);
setWeight(weight);
setTradeAble(tradeable);
setWearAble(WearAble);
setEquipSlotId(EquipSlotId);
setIs2h(is2h);
setWearId(WearId);
setLvlToWear(LvlToWear);
setBonus(Bonus);
setAnim(Anim);
setSpeed(speed);
}
private int itemId = -1;
private String ItenName = "";
private String ItemDescription = "[No Description added] [ItemID :" + itemId + "]";
private int ShopValue = 0;
private int HighAlch = 0;
private int LowAlch = 0;
private int GeLow = 0;
private int GeHigh = 0;
private boolean StackAble = false;
private boolean Note = false;
private int NoteId = -1;
private int weight = 0;
private boolean WearAble = false;
private int EquipSlotId = 0;
private boolean is2h = false;
private int WearId = 0;
private int[][] LvlToWear = null;
private int[] Bonus = null;
private int Anim[] = new int[]{-1, -1, -1, -1,};
private int speed = 4;
public boolean isTradeAble() {
return TradeAble;
}
public void setTradeAble(boolean tradeAble) {
TradeAble = tradeAble;
}
private boolean TradeAble = true;
public int getItemId() {
return itemId;
}
public void setItemId(int itemId) {
this.itemId = itemId;
}
public String getItenName() {
return ItenName;
}
public void setItemName(String itenName) {
ItenName = itenName;
}
public String getItemDescription() {
return ItemDescription;
}
public void setItemDescription(String itemDescription) {
ItemDescription = itemDescription;
}
public int getShopValue() {
return ShopValue;
}
public void setShopValue(int shopValue) {
ShopValue = shopValue;
}
public int getHighAlch() {
return HighAlch;
}
public void setHighAlch(int highAlch) {
HighAlch = highAlch;
}
public int getLowAlch() {
return LowAlch;
}
public void setLowAlch(int lowAlch) {
LowAlch = lowAlch;
}
public int getGeLow() {
return GeLow;
}
public void setGeLow(int geLow) {
GeLow = geLow;
}
public int getGeHigh() {
return GeHigh;
}
public void setGeHigh(int geHigh) {
GeHigh = geHigh;
}
public boolean isStackAble() {
return StackAble;
}
public void setStackAble(boolean stackAble) {
StackAble = stackAble;
}
public boolean isNote() {
return Note;
}
public void setNote(boolean note) {
Note = note;
}
public int getNoteId() {
return NoteId;
}
public void setNoteId(int noteId) {
NoteId = noteId;
}
public int getWeight() {
return weight;
}
public void setWeight(int weight) {
this.weight = weight;
}
public boolean isWearAble() {
return WearAble;
}
public void setWearAble(boolean wearAble) {
WearAble = wearAble;
}
public int getEquipSlotId() {
return EquipSlotId;
}
public void setEquipSlotId(int equipSlotId) {
EquipSlotId = equipSlotId;
}
public boolean isIs2h() {
return is2h;
}
public void setIs2h(boolean is2h) {
this.is2h = is2h;
}
public int getWearId() {
return WearId;
}
public void setWearId(int wearId) {
WearId = wearId;
}
public int[][] getLvlToWear() {
return LvlToWear;
}
public void setLvlToWear(int[][] lvlToWear) {
LvlToWear = lvlToWear;
}
public int[] getBonus() {
return Bonus;
}
public void setBonus(int[] bonus) {
Bonus = bonus;
}
public int[] getAnim() {
return Anim;
}
public void setAnim(int[] anim) {
Anim = anim;
}
public int getSpeed() {
return speed;
}
public void setSpeed(int speed) {
this.speed = speed;
}
}
title says all anything more that i missed about items?