I use emulous, and i have never done this before
How would i make a shop that takes assault points
i already have assault coded 100% but i need the shop
Nothing fancy, just a regular shop that uses assaultpoints instead of gold
shopid = 2
...requested by .Zach
Code:
if (Server.shopHandler.ShopSModifier[c.myShopId] > 1) {
for (int j = 0; j <= Server.shopHandler.ShopItemsStandard[c.myShopId]; j++) {
if (removeId == (Server.shopHandler.ShopItems[c.myShopId][j] - 1)) {
IsIn = true;
break;
}
}
} else {
IsIn = true;
}
if (IsIn == false) {
c.sendMessage("You can't sell "+c.getItems().getItemName(removeId).toLowerCase()+" to this store.");
} else {
int ShopValue = (int)Math.floor(getItemShopValue(removeId, 1, removeSlot)/2);
String ShopAdd = "";
if (ShopValue >= 1000 && ShopValue < 1000000) {
ShopAdd = " (" + (ShopValue / 1000) + "K)";
} else if (ShopValue >= 1000000) {
ShopAdd = " (" + (ShopValue / 1000000) + " million)";
}
c.sendMessage(c.getItems().getItemName(removeId)+": shop will buy for "+ShopValue+" coins"+ShopAdd);
}
}