RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
StoreConstant.java
1package com.osroyale.content.store;
2
31
32public class StoreConstant {
33
35 public static final int INTERFACE_ID = 47_500;
36
38 static final int MAXIMUM_SELL_VALUE = 500_000;
39
41 public final static String[] IRON_MAN_STORES = {
42 "Grace's Graceful Store",
43 "The Skilling Store",
44 "Farming Supplies",
45 "Herblore Supplies",
46 "Prestige Rewards Store",
47 "The PvP Store",
48 "The Clanmaster's Store",
49 "Slayer Store",
50 "Ironman General Store",
51 "Ironman Donator Store",
52 "Tarnish Vote Store",
53 "The Tzhaar Tokkul Store",
54 "The Pest Control Store",
55 "Miscellaneous Supplies",
56 "Ironman Skilling Tools",
57 "Stardust Store"
58 };
59}
60