Jump to content

[Snippet] Constants


Chovy

Recommended Posts

package com.epicbot.framework;

import java.util.regex.Pattern;

public class Constants {

    public static final Pattern BANK_ACTION = Pattern.compile("(Use|Bank|Open|Banker)");
    public static final Pattern BANK_OBJECT = Pattern.compile("(Bank chest|Bank booth|Grand Exchange booth|Bank buffalo)");
    public static final Pattern EQUIPMENT_WIELD = Pattern.compile("(Wear|Wield|Equip|Hold)");

    public static final String[] JEWELLERY_BOX = {
            "Ornate Jewellery Box",
            "Fancy Jewellery Box",
            "Basic Jewellery Box"
    };

    public static final String[] POOLS = {
            "Fiery Ornate Pool of Rejuvenation",
            "Fancy pool of Rejuvenation",
            "Ornate pool of Rejuvenation",
            "Fancy Rejuvenation pool",
            "Rejuvenation pool",
            "Revitalisation pool",
            "Restoration pool",
            "Pool of Refreshment"
    };

    public static final String[] ALCHABLES = {
            "Adamant platebody",

            "Rune med helm",
            "Rune full helm",
            "Rune sq shield",
            "Rune chainbody",
            "Rune battleaxe",
            "Rune longsword",
            "Rune kiteshield",
            "Rune 2h sword",
            "Rune dagger",
            "Rune knife(p++)",
            "Rune scimitar",

            "Dragon battleaxe",
            "Dragon longsword",
            "Dragon platelegs",
            "Dragon plateskirt",
            "Dragon med helm",
            "Dragon spear",
            "Dragon scimitar",
            "Dragon chainbody",

            "Red d'hide body",
            "Black d'hide body",
            "Black d'hide chaps",
            "Mystic air staff",
            "Mystic fire staff",
            "Ancient staff",
            "Smoke battlestaff",
            "Battlestaff"
    };

}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...