RuneHive-Game
Loading...
Searching...
No Matches
StoreConstant.java
Go to the documentation of this file.
1package com.runehive.content.store;
2
3/**
4 * Class to execute all constants for Shops.
5 *
6 * @author Daniel | Obey
7 */
8public class StoreConstant {
9
10 /** The identification for the shop itemcontainer. */
11 public static final int INTERFACE_ID = 47_500;
12
13 /** The maximum sell value. */
14 static final int MAXIMUM_SELL_VALUE = 500_000;
15
16 /** Allowed shops for Iron man accounts. */
17 public final static String[] IRON_MAN_STORES = {
18 "Grace's Graceful Store",
19 "The Skilling Store",
20 "Farming Supplies",
21 "Herblore Supplies",
22 "Prestige Rewards Store",
23 "The PvP Store",
24 "The Clanmaster's Store",
25 "Slayer Store",
26 "Ironman General Store",
27 "Ironman Donator Store",
28 "osroyale Vote Store",
29 "The Tzhaar Tokkul Store",
30 "The Pest Control Store",
31 "Miscellaneous Supplies",
32 "Ironman Skilling Tools",
33 "Stardust Store"
34 };
35}
36
Class to execute all constants for Shops.
static final String[] IRON_MAN_STORES
Allowed shops for Iron man accounts.
static final int MAXIMUM_SELL_VALUE
The maximum sell value.
static final int INTERFACE_ID
The identification for the shop itemcontainer.