Search:
Search includes:
at_cap(capped)BooleanIs the capped value at maximum?
Arguments:
capped (CappedValue, required) -- Capped valueNo aliases
cap(capped)IntegerThe maximum value from this capped value
Arguments:
capped (CappedValue, required) -- Capped valueNo aliases
capped(current; cap)CappedValueA capped value from current value and cap
Arguments:
current (Number, required) -- Current valuecap (Number, required) -- Cap (max value)No aliases
current(capped)IntegerThe current value from this capped value
Arguments:
capped (CappedValue, required) -- Capped valueAliases:
currpercentage(capped)DoubleThe percentage (0-100) of this capped value
Arguments:
capped (CappedValue, required) -- Capped valueAliases:
pctremaining(capped)IntegerThe difference between cap and current value
Arguments:
capped (CappedValue, required) -- Capped valueAliases:
remblink_shaderCustomColorReturns color value that triggers Wynncraft's blink text shader
No arguments
No aliases
brightness_shift(color; degree)CustomColorShifts the brightness of provided color
Arguments:
color (CustomColor, required) -- Color to changedegree (Number, required) -- Amount of degrees to shift, from -1 to 1No aliases
fade_shaderCustomColorReturns color value that triggers Wynncraft's fade text shader
No arguments
No aliases
from_hex(hex)CustomColorReturns a color value based on provided hex argument
Arguments:
hex (String, required) -- The hex code representing the desired color. The leading # can be omittedNo aliases
from_rgb(r; g; b)CustomColorReturns a color value based on provided RGB arguments
Arguments:
r (Integer, required) -- Red value between 0 and 255g (Integer, required) -- Green value between 0 and 255b (Integer, required) -- Blue value between 0 and 255No aliases
from_rgb_percent(r; g; b)CustomColorReturns a color value based on provided RGB arguments
Arguments:
r (Number, required) -- Red value between 0 and 1g (Number, required) -- Green value between 0 and 1b (Number, required) -- Blue value between 0 and 1No aliases
gradient_shader(style?)CustomColorReturns color value that triggers Wynncraft's gradient text shader
Arguments:
style (Integer, optional, default: 1) -- The style of the gradientNo aliases
hue_shift(color; degree)CustomColorShifts the hue of provided color
Arguments:
color (CustomColor, required) -- Color to changedegree (Number, required) -- Amount of degrees to shift, from -1 to 1No aliases
rainbow_shaderCustomColorReturns color value that triggers Wynncraft's rainbow text shader
No arguments
No aliases
saturation_shift(color; degree)CustomColorShifts the saturation of provided color
Arguments:
color (CustomColor, required) -- Color to changedegree (Number, required) -- Amount of degrees to shift, from -1 to 1No aliases
shine_shaderCustomColorReturns color value that triggers Wynncraft's shine text shader
No arguments
No aliases
to_hex_string(color)StringReturns a hex string representation of provided color
Arguments:
color (CustomColor, required) -- ColorNo aliases
if_capped_value(condition; ifTrue; ifFalse)CappedValueIf the condition is true, the first value is returned, otherwise the second value is returned
Arguments:
condition (Boolean, required) -- ConditionifTrue (CappedValue, required) -- True valueifFalse (CappedValue, required) -- False valueAliases:
if_cappedif_capif_custom_color(condition; ifTrue; ifFalse)CustomColorIf the condition is true, the first value is returned, otherwise the second value is returned
Arguments:
condition (Boolean, required) -- ConditionifTrue (CustomColor, required) -- True valueifFalse (CustomColor, required) -- False valueAliases:
if_colorif_customcolorif_number(condition; ifTrue; ifFalse)NumberIf the condition is true, the first value is returned, otherwise the second value is returned
Arguments:
condition (Boolean, required) -- ConditionifTrue (Number, required) -- True valueifFalse (Number, required) -- False valueAliases:
if_numif_string(condition; ifTrue; ifFalse)StringIf the condition is true, the first value is returned, otherwise the second value is returned
Arguments:
condition (Boolean, required) -- ConditionifTrue (String, required) -- True valueifFalse (String, required) -- False valueAliases:
if_strdistance(first; second)DoubleDistance between two locations (in meters)
Arguments:
first (Location, required) -- First locationsecond (Location, required) -- Second locationNo aliases
location(x; y; z)LocationCreates a location from three coordinates
Arguments:
x (Number, required) -- X coordinatey (Number, required) -- Y coordinatez (Number, required) -- Z coordinateAliases:
locx(location)IntegerExtracts the X coordinate from a location
Arguments:
location (Location, required) -- The location to extract the coordinate fromNo aliases
y(location)IntegerExtracts the Y coordinate from a location
Arguments:
location (Location, required) -- The location to extract the coordinate fromNo aliases
z(location)IntegerExtracts the Z coordinate from a location
Arguments:
location (Location, required) -- The location to extract the coordinate fromNo aliases
and(values)BooleanChecks if all conditions are true
Arguments:
values (Boolean, required) -- Booleans to and together, separated by semicolonsNo aliases
equals(first; second)BooleanChecks if two numbers are equal
Arguments:
first (Number, required) -- First booleansecond (Number, required) -- Second booleanAliases:
eqless_than(first; second)BooleanChecks if the first value is less than the second
Arguments:
first (Number, required) -- First numbersecond (Number, required) -- Second numberAliases:
ltless_than_or_equals(first; second)BooleanChecks if the first value is less than or equal to the second
Arguments:
first (Number, required) -- First numbersecond (Number, required) -- Second numberAliases:
lteless_than_equalsleqgreater_than(first; second)BooleanChecks if the first value is greater than the second
Arguments:
first (Number, required) -- First numbersecond (Number, required) -- Second numberAliases:
mtmore_thangtgreater_than_or_equals(first; second)BooleanChecks if the first value is greater than or equal to the second
Arguments:
first (Number, required) -- First numbersecond (Number, required) -- Second numberAliases:
mtemore_than_equalsgreater_than_equalsgtegeqnot_equals(first; second)BooleanChecks if two values are not equal
Arguments:
first (Number, required) -- First booleansecond (Number, required) -- Second booleanAliases:
neqnot(value)BooleanNegates a boolean
Arguments:
value (Boolean, required) -- BooleanNo aliases
or(values)BooleanChecks if any condition is true
Arguments:
values (Boolean, required) -- Booleans to or together, separated by semicolonsNo aliases
add(values)DoubleAdds any amount of numbers together
Arguments:
values (Number, required) -- Numbers to add together, separated by semicolonsNo aliases
divide(dividend; divisor)DoubleDivides two numbers
Arguments:
dividend (Number, required) -- Dividenddivisor (Number, required) -- DivisorAliases:
divinteger(value)IntegerConverts any number type to an integer
Arguments:
value (Number, required) -- ValueAliases:
intlong(value)LongConverts any number type to a long
Arguments:
value (Number, required) -- ValueNo aliases
max(values)DoubleThe largest of all numbers provided
Arguments:
values (Number, required) -- Numbers to find the maximum of, separated by semicolonsNo aliases
min(values)DoubleThe smallest of all numbers provided
Arguments:
values (Number, required) -- Numbers to find the minimum of, separated by semicolonsNo aliases
modulo(dividend; divisor)DoubleReturns the modulo (remainder of division) of two numbers
Arguments:
dividend (Number, required) -- Dividenddivisor (Number, required) -- DivisorAliases:
modmultiply(values)DoubleMultiplies any amount of numbers
Arguments:
values (Number, required) -- Numbers to multiply together, separated by semicolonsAliases:
mulpower(base; exponent)DoubleReturns the first number raised to the power of the second number
Arguments:
base (Number, required) -- Baseexponent (Number, required) -- ExponentAliases:
powrandom(min; max)DoubleRandom number between minimum and maximum (excludes max)
Arguments:
min (Number, required) -- Minimum value (inclusive)max (Number, required) -- Maximum value (exclusive)Aliases:
randround(value; decimals)DoubleRounds a number to the specified number of decimals
Arguments:
value (Number, required) -- Valuedecimals (Integer, required) -- DecimalsNo aliases
square_root(value)DoubleReturns the square root of a number
Arguments:
value (Number, required) -- ValueAliases:
sqrtsubtract(first; second)DoubleSubtracts the second number from the first number
Arguments:
first (Number, required) -- First numbersecond (Number, required) -- Second numberAliases:
subname(named)StringThe name of this named value
Arguments:
named (NamedValue, required) -- Named valueNo aliases
named_value(name; value)NamedValueA named value from a name and a value
Arguments:
name (String, required) -- Namevalue (Number, required) -- ValueAliases:
namedvalue(named)DoubleThe value of this named value
Arguments:
named (NamedValue, required) -- Named valueAliases:
valcapped_string(value; delimiter)StringReturns formatted Capped Value with delimiter in between
Arguments:
value (CappedValue, required) -- Capped Valuedelimiter (String, required) -- Delimiter between current and max valueAliases:
cap_strstr_capconcat(values)StringConcatenates any amount of strings together
Arguments:
values (String, required) -- Strings to concatenate, separated by semicolonsNo aliases
format_capped(value)StringFormats a capped value to a shorter version.
Arguments:
value (CappedValue, required) -- Capped value to formatNo aliases
format_duration(seconds)StringFormats seconds to a shorter version.
Arguments:
seconds (Number, required) -- Seconds to formatNo aliases
format_date(timestamp)StringFormats a timestamp to a string version.
Arguments:
timestamp (Number, required) -- Timestamp to formatNo aliases
format(value)StringFormats a number to a shorter version.
Arguments:
value (Number, required) -- Value to formatNo aliases
format_ranged(value)StringFormats a ranged value to a shorter version.
Arguments:
value (RangedValue, required) -- Ranged value to formatNo aliases
leading_zeros(value; length)StringAdds leading zeros to a number
Arguments:
value (Integer, required) -- The number to add leading zeros tolength (Integer, required) -- The length of the number after adding leading zerosNo aliases
parse_double(value)DoubleParses a string to a double
Arguments:
value (String, required) -- String to parseNo aliases
parse_integer(value)IntegerParses a string to an integer
Arguments:
value (String, required) -- String to parseAliases:
parse_intregex_find(source; regex)BooleanChecks if the given regex finds the given string
Arguments:
source (String, required) -- String to checkregex (String, required) -- Regex patternNo aliases
regex_match(source; regex)BooleanChecks if the given regex matches the given string
Arguments:
source (String, required) -- String to checkregex (String, required) -- Regex patternNo aliases
regex_replace(source; regex; replacement)StringReplaces all matches of the given regex with the given replacement
Arguments:
source (String, required) -- String to replaceregex (String, required) -- Regex patternreplacement (String, required) -- Replacement stringNo aliases
repeat(value; count)StringRepeats the given string the specified amount of times
Arguments:
value (String, required) -- The string to repeatcount (Integer, required) -- The number of times to repeat the stringNo aliases
string_contains(source; substring)BooleanChecks if a string contains another string
Arguments:
source (String, required) -- String to search insubstring (String, required) -- String to check forAliases:
contains_strstring_equals(first; second)BooleanChecks if two strings are equal
Arguments:
first (String, required) -- First stringsecond (String, required) -- Second stringAliases:
eq_strstring(value)StringConvert a number to a string
Arguments:
value (Number, required) -- Value to convertAliases:
strcurrent_territoryStringThe territory you are currently in
No arguments
Aliases:
territorycurrent_territory_owner(prefixOnly?)StringThe name or prefix of the guild that owns the territory you are currently in
Arguments:
prefixOnly (Boolean, optional, default: false) -- Should only the guild prefix be shown?Aliases:
territory_ownercurrent_worldStringGet the name of the current world, such as WC32, may be <unknown> or <not on world>
No arguments
Aliases:
worldgathering_totem_countIntegerThe number of gathering totems around you
No arguments
No aliases
gathering_totem_distance(totemNumber)DoubleThe distance to the gathering totem
Arguments:
totemNumber (Integer, required) -- The number of the gathering totem to get the distance toNo aliases
gathering_totem(totemNumber)LocationThe location of the gathering totem
Arguments:
totemNumber (Integer, required) -- The number of the gathering totem to get the location ofNo aliases
gathering_totem_owner(totemNumber)StringThe name of the player who placed the gathering totem
Arguments:
totemNumber (Integer, required) -- The number of the gathering totem to get the owner ofNo aliases
gathering_totem_time_left(totemNumber)StringThe time left on the gathering totem
Arguments:
totemNumber (Integer, required) -- The number of the gathering totem to get the time left ofNo aliases
in_mapped_area(width?; height?; scale?)BooleanAre you currently inside a mapped area?
Arguments:
width (Number, optional, default: 130) -- Width of the area to checkheight (Number, optional, default: 130) -- Height of the area to checkscale (Number, optional, default: 1) -- Zoom level of the area to checkNo aliases
in_streamBooleanAre you currently in streamer mode?
No arguments
Aliases:
streamermob_totem_countIntegerThe number of mob totems around you
No arguments
No aliases
mob_totem_distance(totemNumber)DoubleThe distance to the mob totem
Arguments:
totemNumber (Integer, required) -- The number of the mob totem to get the distance toNo aliases
mob_totem(totemNumber)LocationThe location of the mob totem
Arguments:
totemNumber (Integer, required) -- The number of the mob totem to get the location ofNo aliases
mob_totem_owner(totemNumber)StringThe name of the player who placed the mob totem
Arguments:
totemNumber (Integer, required) -- The number of the mob totem to get the owner ofNo aliases
mob_totem_time_left(totemNumber)StringThe time left on the mob totem
Arguments:
totemNumber (Integer, required) -- The number of the mob totem to get the time left ofNo aliases
newest_worldStringThe newest world there is on Wynncraft
No arguments
No aliases
pingIntegerYour ping to the Wynncraft server
No arguments
No aliases
token_gatekeeper_countIntegerThe number of tokens gatekeepers present
No arguments
Aliases:
token_counttoken_gatekeeper_deposited(gatekeeperNumber?)CappedValueThe number of tokens deposited to a gatekeeper
Arguments:
gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper NumberAliases:
token_deptoken_gatekeeper(gatekeeperNumber?)CappedValueThe number of tokens collected to get past a gatekeeper
Arguments:
gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper NumberAliases:
tokentoken_gatekeeper_type(gatekeeperNumber?)StringThe type of tokens needed to get past a gatekeeper
Arguments:
gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper NumberAliases:
token_typeworld_stateStringThe current world state. One of NOT_CONNECTED, CONNECTING, INTERIM, HUB, CHARACTER_SELECTION, WORLD
No arguments
No aliases
world_uptime(worldName?)StringThe time the world has been up for
Arguments:
worldName (String, optional, default: null) -- The name of the world you want the uptime of. This is by default the world you are in.Aliases:
uptimecurrent_world_uptimebpsDoublePlayer speed in blocks per second
No arguments
No aliases
bps_xzDoublePlayer speed in blocks per second excluding vertical movement
No arguments
No aliases
capped_awakened_progressCappedValueYour Awakened Progress
No arguments
No aliases
capped_blood_poolCappedValueYour Blood Pool
No arguments
No aliases
capped_corruptedCappedValueYour Corruption
No arguments
No aliases
capped_focusCappedValueYour Focus
No arguments
No aliases
capped_healthCappedValueYour health
No arguments
No aliases
capped_holy_powerCappedValueYour Holy Power
No arguments
Aliases:
capped_sacred_surgecapped_mana_bankCappedValueYour Mana Bank
No arguments
No aliases
capped_manaCappedValueYour mana
No arguments
No aliases
capped_ophanimCappedValueYour Ophanim
No arguments
No aliases
class(uppercase?; showReskinnedName?)StringName of your current class
Arguments:
uppercase (Boolean, optional, default: false) -- Should the class name be in uppercase?showReskinnedName (Boolean, optional, default: true) -- Should the reskinned name be shown instead of the original one?No aliases
commander_activatedBooleanWhether your commander is active
No arguments
No aliases
commander_durationIntegerDuration of your commander
No arguments
No aliases
healthIntegerYour current health
No arguments
No aliases
health_maxIntegerMaximum possible health
No arguments
No aliases
health_pctDoubleYour current health as percentage of max
No arguments
No aliases
idStringYour character's ID
No arguments
No aliases
manaIntegerYour current mana
No arguments
No aliases
mana_maxIntegerMaximum possible mana
No arguments
No aliases
mana_pctDoubleYour current mana as percentage of max
No arguments
No aliases
ophanim_activeBooleanIs the Ophanim skill active?
No arguments
No aliases
ophanim_orb(orbNumber)IntegerReturns the status of the given Ophanim orb. Returns -1 if the player doesn't have an orb with the given ID, otherwise, returns a number based on the color of the orb, 3 if it's blue, 2 if it's yellow, 1 if it's red and 0 if the orb is dead.
Arguments:
orbNumber (Integer, required) -- Which orb's data to get (starts from 0)No aliases
sprintCappedValueYour remaining sprint stamina
No arguments
No aliases
status_effect_active(query)BooleanChecks if an effect is contained in the status effect list
Arguments:
query (String, required) -- Case-sensitive effect name string to check forAliases:
contains_effectstatus_effect_duration(query)NamedValueSearches for given status effect and returns a NamedValue with the name and duration in seconds. If none were found the name will be empty, if the duration is infinite -1 will be returned
Arguments:
query (String, required) -- The query to search status by nameNo aliases
status_effect_modifier(query)NamedValueSearches for given status effect and returns a NamedValue with type of modifier and its value. If none were found the name will be empty
Arguments:
query (String, required) -- The query to search status by nameNo aliases
status_effectsStringRetrieves the full list of status effects
No arguments
No aliases
area_damage_average(seconds?)DoubleThe average damage you dealt in your area in the last specified seconds
Arguments:
seconds (Integer, optional, default: 10) -- The amount of seconds to average the damage overAliases:
adavgarea_damage_per_secondLongThe damage you dealt in your area in the last second
No arguments
Aliases:
adpsblocks_above_groundDoubleHow many blocks you are above the ground (the number of air blocks below you)
No arguments
Aliases:
aglabove_ground_levelfocused_mob_healthLongThe health of the mob you are currently attacking
No arguments
Aliases:
foc_mob_hpfocused_mob_health_percentCappedValueThe remaining health percentage of the mob you are currently attacking
No arguments
Aliases:
foc_mob_hp_pctfocused_mob_nameStringThe name of the mob you are currently attacking
No arguments
Aliases:
foc_mob_namekills_per_minute(includeShared?)IntegerHow many mobs you have killed in the last 60 seconds
Arguments:
includeShared (Boolean, optional, default: true) -- Include shared killsAliases:
kpmlast_spell_name(burst?)StringThe name of the last spell cast
Arguments:
burst (Boolean, optional, default: false) -- Should only the last spell in the current burst be returned?Aliases:
recast_namelast_spell_repeat_count(burst?)IntegerThe number of times the last spell has been cast in a row in the current burst
Arguments:
burst (Boolean, optional, default: false) -- Should only the last spell in the current burst be returned?Aliases:
recast_countticks_since_last_spell(burst?)IntegerThe number of ticks since the last spell was cast
Arguments:
burst (Boolean, optional, default: false) -- Should only the last spell in the current burst be returned?Aliases:
recast_tickstime_since_last_damage_dealtLongThe time, in milliseconds, since you last damaged a mob
No arguments
Aliases:
last_dam_mstime_since_last_kill(includeShared?)LongThe time, in milliseconds, since you last killed a mob
Arguments:
includeShared (Boolean, optional, default: false) -- Include Shared killsAliases:
last_kill_mstotal_area_damage(seconds?)DoubleThe sum of damage you dealt in your area in the last specified seconds
Arguments:
seconds (Integer, optional, default: 10) -- The amount of seconds to sum the damage overAliases:
total_dmgtdmgcapped_levelCappedValueYour combat level
No arguments
No aliases
capped_xpCappedValueYour combat XP
No arguments
No aliases
levelIntegerYour current combat level
No arguments
Aliases:
lvlxpStringYour current XP in this level expressed as points (formatted)
No arguments
No aliases
xp_pctDoubleYour current XP in this level expressed percentage of level up requirement
No arguments
No aliases
xp_per_minuteStringThe amount of experience you gain per minute, formatted.
No arguments
Aliases:
xpmxp_per_minute_rawIntegerThe amount of experience you gain per minute, raw amount.
No arguments
Aliases:
xpm_rawxp_percentage_per_minuteDoubleThe amount of experience you gain per minute, percentage.
No arguments
Aliases:
xppmxp_rawIntegerYour current XP in this level expressed as points (raw number)
No arguments
No aliases
xp_reqStringXP points needed to level up (formatted)
No arguments
No aliases
xp_req_rawIntegerXP points needed to level up (raw number)
No arguments
No aliases
capped_memCappedValueMemory usage of the JVM
No arguments
Aliases:
capped_memoryclockStringThe current time, formatted in the current locale style
No arguments
No aliases
clockmStringThe current time, formatted to 24h format
No arguments
No aliases
stopwatch_zeroBooleanChecks if the stopwatch is currently at zero
No arguments
Aliases:
stopwatch_is_zerostopwatch_runningBooleanChecks if the stopwatch is currently running
No arguments
No aliases
stopwatch_hoursIntegerThe number in the hours position on the stopwatch
No arguments
No aliases
stopwatch_minutesIntegerThe number in the minutes position on the stopwatch
No arguments
No aliases
stopwatch_secondsIntegerThe number in the seconds position on the stopwatch
No arguments
No aliases
stopwatch_millisecondsIntegerThe number in the milliseconds position on the stopwatch
No arguments
No aliases
mem_maxIntegerMaximum amount of memory available to the JVM
No arguments
Aliases:
memorymaxmemmaxmem_pctIntegerPercentage of available memory that is currently being used
No arguments
Aliases:
memorypctmempctmem_usedIntegerCurrent amount of memory used by the JVM
No arguments
Aliases:
memoryusedmemusedaccessory_durability(accessory)CappedValueDurability of the specified accessory
Arguments:
accessory (String, required) -- The accessory you want the durability of. One of Ring_1, Ring_2, Bracelet, NecklaceNo aliases
all_shiny_statsStringShows a list of all shiny stats
No arguments
No aliases
armor_durability(armor)CappedValueDurability of the specified armor
Arguments:
armor (String, required) -- The armor you want the durability ofNo aliases
capped_held_item_durabilityCappedValueDurability of the item held in your main hand
No arguments
No aliases
capped_ingredient_pouch_slotsCappedValueUsed slots in the ingredient pouch
No arguments
No aliases
capped_inventory_slotsCappedValueUsed slots in your inventory
No arguments
No aliases
emerald_blockIntegerGet the number of emerald blocks in your inventory
No arguments
Aliases:
ebemerald_string(zeros?)StringGet the value of all currency in your inventory, nicely formatted as LE/EB/E
Arguments:
zeros (Boolean, optional, default: false) -- Whether zero values should be displayedAliases:
estremeraldsIntegerAmount of money in emeralds in inventory (Besides LE and EB)
No arguments
Aliases:
emheld_item_cooldownCappedValueRemaining cooldown ticks for the item in your hand
No arguments
Aliases:
held_cooldownheld_cdheld_item_current_durabilityIntegerCurrent durability of the item in your hand
No arguments
Aliases:
current_held_durabilityheld_item_max_durabilityIntegerMax durability of the item in your hand
No arguments
Aliases:
max_held_durabilityheld_item_name(formatted?)StringName of the item in your hand
Arguments:
formatted (Boolean, optional, default: false) -- Whether to retain the color codes in the nameAliases:
held_itemheld_nameheld_item_shiny_statNamedValueShows the shiny stat of the item held in your main hand
No arguments
No aliases
held_item_typeStringType of the item in your hand
No arguments
Aliases:
held_typeingredient_pouch_open_slotsIntegerHow many slots are currently open in your ingredient pouch.
No arguments
Aliases:
pouch_openpouch_freeingredient_pouch_used_slotsIntegerHow many slots are currently used in your ingredient pouch.
No arguments
Aliases:
pouch_usedinventory_freeIntegerNumber of free slots in inventory
No arguments
Aliases:
inv_freeinventory_usedIntegerNumber of used slots in inventory
No arguments
Aliases:
inv_useditem_count(name?)IntegerReturns the total number of all items in inventory
Arguments:
name (String, optional, default: null) -- The name that the item ends with to count specifically insteadAliases:
item_amountliquid_emeraldIntegerAmount of money liquid emeralds in inventory
No arguments
Aliases:
lemoneyIntegerTotal amount of money in inventory
No arguments
No aliases
capped_guild_level_progressCappedValueThe XP progress of your guild
No arguments
No aliases
capped_guild_objectives_progressCappedValueProgress towards next objectives completed milestone
No arguments
No aliases
guild_levelIntegerThe Level of the Guild you are in
No arguments
No aliases
guild_nameStringThe name of the Guild you are currently in
No arguments
No aliases
guild_rankStringYour Rank in the Guild you are currently in
No arguments
No aliases
is_allied_guild(guild)BooleanWhether or not the provided guild is an ally of your guild
Arguments:
guild (String, required) -- The name of the guild to be checkedAliases:
is_alliedis_allyobjective_streakIntegerHow much consecutive guild objectives you have completed
No arguments
No aliases
capped_horse_levelCappedValueYour horse's level
No arguments
No aliases
capped_horse_total_level_timeCappedValueYour horse's time until max level in seconds
No arguments
Aliases:
h_tot_lvl_timecapped_horse_xpCappedValueYour horse's XP
No arguments
No aliases
horse_levelIntegerYour horse's current level
No arguments
Aliases:
h_lvlhorse_level_maxIntegerYour horse's maximum level
No arguments
Aliases:
h_mlvlhorse_level_timeIntegerYour horse's time until level up in seconds
No arguments
Aliases:
h_lvl_timehorse_nameStringYour horse's name
No arguments
Aliases:
h_namehorse_tierIntegerYour horse's tier
No arguments
Aliases:
h_tierhorse_xpIntegerYour horse's current XP
No arguments
Aliases:
h_xpchest_openedIntegerGet the number of loot chests opened
No arguments
Aliases:
chest_countdry_boxesIntegerGet the number of found gear boxes that has not been a mythic
No arguments
Aliases:
dry_bdry_boxes_countdry_pullsIntegerGet the number of pulls that has not contained a mythic
No arguments
Aliases:
dry_pdry_pulls_countdry_streakIntegerGet the number of loot chests opened that has not contained a mythic
No arguments
Aliases:
dry_shighest_dry_streakIntegerThe highest dry streak that you had.
No arguments
No aliases
last_dry_streakIntegerThe last dry streak that you had.
No arguments
No aliases
last_mythicStringThe last mythic that you found in a loot chest.
No arguments
No aliases
lootrun_beacon_count(color)IntegerThe number of beacons you have selected in your lootrun
Arguments:
color (String, required) -- The color of the beaconNo aliases
lootrun_beacon_vibrant(color)BooleanIf the lootrun beacon is vibrant
Arguments:
color (String, required) -- The color of the beaconNo aliases
lootrun_challengesCappedValueThe number of challenges
No arguments
No aliases
lootrun_last_selected_beacon_colorStringThe color of the beacon you have last selected in your lootrun
No arguments
No aliases
lootrun_last_selected_beacon_vibrantBooleanIf the last selected beacon in your lootrun was vibrant or not
No arguments
No aliases
lootrun_mission(index; colored)StringThe name of the Lootrun Mission at the given Index
Arguments:
index (Integer, required) -- The index of the Missioncolored (Boolean, required) -- Whether or not the output should return coloredNo aliases
lootrun_red_beacon_challenge_countIntegerThe number of red beacon challenges you have remaining in your lootrun
No arguments
No aliases
lootrun_orange_beacon_countIntegerThe number of orange beacon effects currently active
No arguments
No aliases
lootrun_next_orange_expireIntegerHow many more challenges until the next orange beacon effect expires
No arguments
No aliases
lootrun_rainbow_beacon_countIntegerHow many more challenges until the rainbow beacon effect expires
No arguments
No aliases
lootrun_rerollsIntegerThe number of rerolls you have in your current lootrun
No arguments
No aliases
lootrun_sacrificesIntegerThe number of sacrifices you have in your current lootrun
No arguments
No aliases
lootrun_stateStringThe current state of the lootrun you are in. One of NOT_RUNNING, CHOOSING_BEACON, IN_TASK
No arguments
No aliases
lootrun_task_location(color)LocationThe location of the task the beacon is pointing to
Arguments:
color (String, required) -- The color of the beaconNo aliases
lootrun_task_name(color)StringThe name of the task the beacon is pointing to
Arguments:
color (String, required) -- The color of the beaconNo aliases
lootrun_task_type(color)StringThe type of the task the beacon is pointing to. One of LOOT, SLAY, TARGET, DESTROY, DEFEND, UNKNOWN
Arguments:
color (String, required) -- The color of the beaconNo aliases
lootrun_timeIntegerThe time left of current lootrun in seconds
No arguments
No aliases
lootrun_trial(index)StringThe name of the Lootrun Trial at the given Index
Arguments:
index (Integer, required) -- The index of the TrialNo aliases
dirDoubleYour current direction (heading)
No arguments
No aliases
fpsIntegerThe current FPS (frames per second)
No arguments
No aliases
key_pressed(keyCode)BooleanReturns true if the specified key is currently pressed, false otherwise
Arguments:
keyCode (Integer, required) -- The key code to check, as a GLFW key codeNo aliases
minecraft_effect_duration(effectName)IntegerReturns the duration left of the specified Minecraft effect if it is currently active, -1 otherwise
Arguments:
effectName (String, required) -- The Minecraft effect identifierNo aliases
my_locationLocationYour current location
No arguments
Aliases:
my_locticksLongThe number of ticks since world start
No arguments
No aliases
last_harvest_material_levelIntegerThe level of the material you last harvested
No arguments
No aliases
last_harvest_material_nameStringThe name of the material you last harvested
No arguments
No aliases
last_harvest_material_tierIntegerThe tier of the material you last harvested
No arguments
No aliases
last_harvest_material_typeStringThe type of material you last harvested
No arguments
No aliases
last_harvest_resource_typeStringThe type of resource you last harvested
No arguments
No aliases
material_dry_streakIntegerReturns the number of times a material was not a T3 in a row.
No arguments
Aliases:
mat_dryprofession_level(profession)IntegerThe level of the specified profession
Arguments:
profession (String, required) -- The profession to checkAliases:
prof_lvlprofession_percentage(profession)DoubleYour current percentage for the profession specified
Arguments:
profession (String, required) -- The profession to checkAliases:
prof_pctprofession_xp(profession)CappedValueThe XP of specified profession
Arguments:
profession (String, required) -- The profession to checkAliases:
prof_xpprofession_xp_per_minute(profession)StringThe amount of XP you gained for the specified profession in the last minute
Arguments:
profession (String, required) -- The profession to checkAliases:
prof_xpmprofession_xp_per_minute_raw(profession)IntegerThe raw amount of XP you gained for the specified profession in the last minute
Arguments:
profession (String, required) -- The profession to checkAliases:
prof_xpm_rawcurrent_raidStringThe name of the raid you are currently in
No arguments
Aliases:
raidcurrent_raid_boss_countIntegerHow many bosses does the current raid have
No arguments
No aliases
current_raid_challenge_countIntegerHow many challenges does the current raid have
No arguments
No aliases
current_raid_room_nameStringThe name of the challenge raid room you are currently in
No arguments
No aliases
current_raid_room_timeLongHow long you have been in the current raid room for in milliseconds
No arguments
No aliases
current_raid_room_damageLongHow much damage have you dealt in the current raid room
No arguments
No aliases
current_raid_timeLongHow long you have been in the current raid for in milliseconds
No arguments
Aliases:
raid_timecurrent_raid_damageLongHow much damage have you dealt in the current raid
No arguments
Aliases:
raid_damagedry_aspectsIntegerDry Aspects
No arguments
No aliases
dry_raid_reward_pullsIntegerDry Raid Reward Pulls
No arguments
No aliases
dry_raids_tomesIntegerDry Raids Tomes
No arguments
No aliases
dry_raids_aspectsIntegerDry Raids Aspects
No arguments
No aliases
raid_challengesCappedValueThe number of challenges in the raid
No arguments
No aliases
raid_has_room(roomNumber)BooleanHas the current raid got a room for the given room number?
Arguments:
roomNumber (Integer, required) -- The room number to checkNo aliases
raid_intermission_timeLongHow long you have been outside of a challenge/boss room in milliseconds
No arguments
No aliases
raid_is_boss_room(roomNumber)BooleanIs the given room number a boss room in the current raid?
Arguments:
roomNumber (Integer, required) -- The room number to checkNo aliases
raid_room_damage(roomNumber)LongHow much damage did you deal in the specified raid room
Arguments:
roomNumber (Integer, required) -- The room number to get the damage dealt for.No aliases
raid_room_name(roomNumber)StringThe name of the specified raid room
Arguments:
roomNumber (Integer, required) -- The room number to get the name of.No aliases
raid_room_time(roomNumber)LongHow long it took to complete the specified raid room in milliseconds
Arguments:
roomNumber (Integer, required) -- The room number to get the time taken to complete for.No aliases
raid_personal_best_time(raidName)LongThe fastest time taken to beat the specified raid in milliseconds
Arguments:
raidName (String, required) -- The name of the raid to get the best time forAliases:
raid_pbraid_time_remainingIntegerHow much time is left to complete the raid in seconds
No arguments
No aliases
range_high(range)IntegerThe high value of the range
Arguments:
range (RangedValue, required) -- RangeAliases:
highrange_low(range)IntegerThe low value of the range
Arguments:
range (RangedValue, required) -- RangeAliases:
lowranged(low; high)RangedValueCreates a range from two values
Arguments:
low (Integer, required) -- Low valuehigh (Integer, required) -- High valueNo aliases
arrow_shield_countIntegerThe number of arrow shield charges you have
No arguments
Aliases:
arrow_shieldguardian_angels_countIntegerThe number of guardian angel charges you have
No arguments
Aliases:
guardian_angelsmantle_shield_countIntegerThe number of mantle shield charges you have
No arguments
Aliases:
mantle_shieldshaman_mask(isColored?; useShortName?)StringWhat shaman mask you are currently wearing
Arguments:
isColored (Boolean, optional, default: true) -- Should the name be colored according to the mask's color?useShortName (Boolean, optional, default: false) -- Should the short name be used instead of the full name?No aliases
shaman_totem_distance(totemNumber)DoubleThe distance between you and the shaman totem
Arguments:
totemNumber (Integer, required) -- The number of the totem to get the distance fromNo aliases
shaman_totem_location(totemNumber)StringThe location of the shaman totem
Arguments:
totemNumber (Integer, required) -- The number of the totem to get the distance fromNo aliases
shaman_totem_state(totemNumber)StringThe state of the shaman totem. One of SUMMONED, ACTIVE
Arguments:
totemNumber (Integer, required) -- The number of the totem to get the distance fromNo aliases
shaman_totem_time_left(totemNumber)IntegerThe time left on the shaman totem
Arguments:
totemNumber (Integer, required) -- The number of the totem to get the distance fromNo aliases
shield_type_nameStringThe name of the current active shield type, currently one of Arrow, Guardian Angels or Mantle
No arguments
Aliases:
shield_typefriendsIntegerNumber of friends online
No arguments
No aliases
party_members(includeOffline?)IntegerNumber of party members
Arguments:
includeOffline (Boolean, optional, default: true) -- Whether to include offline party members in the countNo aliases
party_leaderStringThe name of the party leader
No arguments
No aliases
statistics_total(statisticKey; overall)LongTotal of all statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_count(statisticKey; overall)LongCount of statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_min(statisticKey; overall)LongMinimum value among the statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_max(statisticKey; overall)LongMaximum value among the statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_average(statisticKey; overall)LongAverage value of the statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_first_modified(statisticKey; overall)LongFirst modification date among the statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_last_modified(statisticKey; overall)LongLast modification date among the statistical entries
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofoverall (Boolean, required) -- Should the overall value be shown? If false, the current character's value will be shown.No aliases
statistics_formatted(statisticKey; value)StringFormat numbers the way the statistic kind does
Arguments:
statisticKey (String, required) -- The statistic key to get the value ofvalue (Number, required) -- The value to formatNo aliases
aura_timerDoubleThe time left before aura strikes
No arguments
No aliases
current_tower_attack_speedDoubleThe attack speed of the current tower you are attacking
No arguments
No aliases
current_tower_damageRangedValueThe damage of the current tower you are attacking
No arguments
No aliases
current_tower_defenseDoubleThe defense of the current tower you are attacking
No arguments
No aliases
current_tower_healthLongThe health of the current tower you are attacking
No arguments
No aliases
estimated_time_to_finish_warLongThe estimated time to finish the war you are currently in
No arguments
No aliases
initial_tower_attack_speedDoubleThe attack speed of the initial tower you are attacking
No arguments
No aliases
initial_tower_damageRangedValueThe damage of the initial tower you are attacking
No arguments
No aliases
initial_tower_defenseDoubleThe defense of the initial tower you are attacking
No arguments
No aliases
initial_tower_healthLongThe health of the initial tower you are attacking
No arguments
No aliases
is_territory_queued(territoryName)BooleanIs the specified territory queued for an attack?
Arguments:
territoryName (String, required) -- The territory to checkAliases:
is_queuedteam_dps(seconds?)LongThe DPS of your team in the war you are currently in
Arguments:
seconds (Long, optional, default: 9223372036854775807) -- The amount of seconds to average the damage overNo aliases
time_in_warLongThe time you have been in the war you are currently in
No arguments
No aliases
tower_dpsRangedValueThe DPS of the tower you are currently attacking
No arguments
No aliases
tower_effective_hpLongThe effective HP of the tower you are currently attacking
No arguments
No aliases
tower_ownerStringThe owner of the tower you are attacking
No arguments
No aliases
tower_territoryStringThe territory of the tower you are attacking
No arguments
No aliases
volley_timerDoubleThe time left before volley strikes
No arguments
No aliases
wars_since(sinceDays?)LongThe number of wars in the specified time period
Arguments:
sinceDays (Integer, optional, default: 7) -- The number of days to includeNo aliases
annihilation_sun_progressCappedValueThe progress towards a new sun being created during the Annihilation battle
No arguments
Aliases:
sun_progresstranscribe_gavellian(gavellian)StringTranscribe your given input into Gavellian.
Arguments:
gavellian (String, required) -- The text you want to transcribe into Gavellian.Aliases:
gavelliantranscribe_wynnic(wynnic)StringTranscribe your given input into Wynnic.
Arguments:
wynnic (String, required) -- The text you want to transcribe into Wynnic.Aliases:
wynnicto_background_text(text; textColor; backgroundColor; leftEdge; rightEdge)StringConverts the text to use Wynncraft background style.
Arguments:
text (String, required) -- Text to convert. Unsupported characters will be omittedtextColor (CustomColor, required) -- Color of the textbackgroundColor (CustomColor, required) -- Color of the backgroundleftEdge (String, required) -- Style of the left edge. NONE or PILLrightEdge (String, required) -- Style of the right edge. NONE or PILLNo aliases
to_fancy_text(text)StringConverts the text to use Wynncraft Fancy style.
Arguments:
text (String, required) -- Text to convert. Unsupported characters will be omittedNo aliases