1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

License files

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-16 18:42:10 -03:00
parent df36f9bb32
commit 5e21f16735
13 changed files with 1403 additions and 21 deletions

View File

@@ -76,7 +76,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
/**
* Count of items
*/
private int count = 1;
private long count = 1;
public Item(ItemTemplateID templateID) {
this.templateID = templateID;
@@ -112,7 +112,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
/**
* @return the count
*/
public int getCount() {
public long getCount() {
return count;
}
@@ -120,7 +120,7 @@ public class Item extends AbstractObject implements Playable, Spawnable,
* @param count
* the count to set
*/
public void setCount(int count) {
public void setCount(long count) {
this.count = count;
}

View File

@@ -114,11 +114,21 @@ public class CharacterInventory implements Iterable<Item> {
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public enum InventoryPaperdoll {
UNDERWEAR, HEAD, HAIR1, HAIR2, NECK, RIGHT_HAND, FEET, LEFT_HAND, RIGHT_EAR, LEFT_EAR, GLOVES,
UNDERWEAR(0), HEAD(1), HAIR1(2), HAIR2(3), NECK(4), RIGHT_HAND(5), CHEST(
6), LEFT_HAND(7), RIGHT_EAR(8), LEFT_EAR(9), GLOVES(10), LEGS(
11), FEET(12), RIGHT_FINGER(13), LEFT_FINGER(14), LEFT_BRACELET(
15), RIGHT_BRACELET(16), DECORATION_1(17), DECORATION_2(18), DECORATION_3(
19), DECORATION_4(20), DECORATION_5(21), DECORATION_6(22), CLOAK(
23), BELT(24);
LEGS, LEFT_FEET, RIGHT_FEET, RIGHT_FINGER, LEFT_FINGER, CHEST, LEFT_BRACELET, RIGHT_BRACELET,
/**
* The inventory paperdoll slot id
*/
public final int id;
DECORATION_1, DECORATION_2, DECORATION_3, DECORATION_4, DECORATION_5, DECORATION_6, CLOAK, BELT;
InventoryPaperdoll(int id) {
this.id = id;
}
}
/**