RuneHive-Game
Loading...
Searching...
No Matches
InterfaceConstants.java
Go to the documentation of this file.
1package com.runehive.game.world;
2
3/**
4 * The class that contains helpful information on interfaces.
5 *
6 * @author SeVen
7 */
8public class InterfaceConstants {
9
10 public static final int DUEL_SCOREBOARD = 6308;
11
12 public static final int DEPOSIT_BOX = 4465;
13
14 public static final int EQUIPMENT = 1688;
15
16 public static final int INVENTORY_INTERFACE = 3214;
17
18 /**
19 * The action for removing items from the inventory container itemcontainer.
20 */
21 public static final int REMOVE_INVENTORY_ITEM = 3322;
22
23 /**
24 * The action for adding items from another container to the inventory container itemcontainer.
25 */
26 public static final int ADD_INVENTORY_ITEM = 3415;
27
28 /**
29 * The action sent when a player removes their offered items from the trade screen.
30 */
31 public static final int REMOVE_TRADE_ITEM = 33021;
32
33 public static final int INVENTORY_STORE = 5064;
34
35 public static final int WITHDRAW_BANK = 5382;
36
37 public static final int SHOP_INVENTORY = 3823;
38
39 public static final int SHOP_INTERFACE = 40051;
40
41 /**
42 * The main trade itemcontainer.
43 */
44 public static final int FIRST_TRADE_SCREEN = 33000;
45
46 /**
47 * The second trade screen itemcontainer.
48 */
49 public static final int SECOND_TRADE_SCREEN = 33200;
50
51 /**
52 * The container itemcontainer for the player starting the trade.
53 */
54 public static final int PLAYER_TRADE_CONTAINER = 33021;
55
56 /**
57 * The container itemcontainer for the other player in the trade.
58 */
59 public static final int OTHER_TRADE_CONTAINER = 33022;
60
61 public static final int FIRST_DUEL_SCREEN = 31000;
62
63 public static final int SECOND_DUEL_SCREEN = 31500;
64
65 public static final int PLAYER_STAKE_CONTAINER = 31012;
66
67 public static final int OTHER_STAKE_CONTAINER = 31014;
68
69 public static final int PRICE_CHECKER = 48542;
70
71 public static final int DONATOR_DEPOSIT = 58607;
72
73}
The class that contains helpful information on interfaces.
static final int PLAYER_TRADE_CONTAINER
The container itemcontainer for the player starting the trade.
static final int ADD_INVENTORY_ITEM
The action for adding items from another container to the inventory container itemcontainer.
static final int REMOVE_INVENTORY_ITEM
The action for removing items from the inventory container itemcontainer.
static final int FIRST_TRADE_SCREEN
The main trade itemcontainer.
static final int OTHER_TRADE_CONTAINER
The container itemcontainer for the other player in the trade.
static final int REMOVE_TRADE_ITEM
The action sent when a player removes their offered items from the trade screen.
static final int SECOND_TRADE_SCREEN
The second trade screen itemcontainer.