Search:


Search includes:

at_cap(capped)Boolean

Is the capped value at maximum?

Arguments:

- capped (CappedValue, required) -- Capped value

No aliases

cap(capped)Integer

The maximum value from this capped value

Arguments:

- capped (CappedValue, required) -- Capped value

No aliases

capped(current; cap)CappedValue

A capped value from current value and cap

Arguments:

- current (Number, required) -- Current value
- cap (Number, required) -- Cap (max value)

No aliases

current(capped)Integer

The current value from this capped value

Arguments:

- capped (CappedValue, required) -- Capped value

Aliases:

- curr
percentage(capped)Double

The percentage (0-100) of this capped value

Arguments:

- capped (CappedValue, required) -- Capped value

Aliases:

- pct
remaining(capped)Integer

The difference between cap and current value

Arguments:

- capped (CappedValue, required) -- Capped value

Aliases:

- rem
if_capped_value(condition; ifTrue; ifFalse)CappedValue

If the condition is true, the first value is returned, otherwise the second value is returned

Arguments:

- condition (Boolean, required) -- Condition
- ifTrue (CappedValue, required) -- True value
- ifFalse (CappedValue, required) -- False value

Aliases:

- if_capped
- if_cap
if_number(condition; ifTrue; ifFalse)Number

If the condition is true, the first value is returned, otherwise the second value is returned

Arguments:

- condition (Boolean, required) -- Condition
- ifTrue (Number, required) -- True value
- ifFalse (Number, required) -- False value

Aliases:

- if_num
if_string(condition; ifTrue; ifFalse)String

If the condition is true, the first value is returned, otherwise the second value is returned

Arguments:

- condition (Boolean, required) -- Condition
- ifTrue (String, required) -- True value
- ifFalse (String, required) -- False value

Aliases:

- if_str
distance(first; second)Double

Distance between two locations (in meters)

Arguments:

- first (Location, required) -- First location
- second (Location, required) -- Second location

No aliases

location(x; y; z)Location

Creates a location from three coordinates

Arguments:

- x (Number, required) -- X coordinate
- y (Number, required) -- Y coordinate
- z (Number, required) -- Z coordinate

Aliases:

- loc
x(location)Integer

Extracts the X coordinate from a location

Arguments:

- location (Location, required) -- The location to extract the coordinate from

No aliases

y(location)Integer

Extracts the Y coordinate from a location

Arguments:

- location (Location, required) -- The location to extract the coordinate from

No aliases

z(location)Integer

Extracts the Z coordinate from a location

Arguments:

- location (Location, required) -- The location to extract the coordinate from

No aliases

and(values)Boolean

Checks if all conditions are true

Arguments:

- values (Boolean, required) -- Booleans to and together, separated by semicolons

No aliases

equals(first; second)Boolean

Checks if two numbers are equal

Arguments:

- first (Number, required) -- First boolean
- second (Number, required) -- Second boolean

Aliases:

- eq
less_than(first; second)Boolean

Checks if the first value is less than the second

Arguments:

- first (Number, required) -- First number
- second (Number, required) -- Second number

Aliases:

- lt
less_than_or_equals(first; second)Boolean

Checks if the first value is less than or equal to the second

Arguments:

- first (Number, required) -- First number
- second (Number, required) -- Second number

Aliases:

- lte
- less_than_equals
- leq
greater_than(first; second)Boolean

Checks if the first value is greater than the second

Arguments:

- first (Number, required) -- First number
- second (Number, required) -- Second number

Aliases:

- mt
- more_than
- gt
greater_than_or_equals(first; second)Boolean

Checks if the first value is greater than or equal to the second

Arguments:

- first (Number, required) -- First number
- second (Number, required) -- Second number

Aliases:

- mte
- more_than_equals
- greater_than_equals
- gte
- geq
not_equals(first; second)Boolean

Checks if two values are not equal

Arguments:

- first (Number, required) -- First boolean
- second (Number, required) -- Second boolean

Aliases:

- neq
not(value)Boolean

Negates a boolean

Arguments:

- value (Boolean, required) -- Boolean

No aliases

or(values)Boolean

Checks if any condition is true

Arguments:

- values (Boolean, required) -- Booleans to or together, separated by semicolons

No aliases

add(values)Double

Adds any amount of numbers together

Arguments:

- values (Number, required) -- Numbers to add together, separated by semicolons

No aliases

divide(dividend; divisor)Double

Divides two numbers

Arguments:

- dividend (Number, required) -- Dividend
- divisor (Number, required) -- Divisor

Aliases:

- div
integer(value)Integer

Converts any number type to an integer

Arguments:

- value (Number, required) -- Value

Aliases:

- int
long(value)Long

Converts any number type to a long

Arguments:

- value (Number, required) -- Value

No aliases

max(values)Double

The largest of all numbers provided

Arguments:

- values (Number, required) -- Numbers to find the maximum of, separated by semicolons

No aliases

min(values)Double

The smallest of all numbers provided

Arguments:

- values (Number, required) -- Numbers to find the minimum of, separated by semicolons

No aliases

modulo(dividend; divisor)Double

Returns the modulo (remainder of division) of two numbers

Arguments:

- dividend (Number, required) -- Dividend
- divisor (Number, required) -- Divisor

Aliases:

- mod
multiply(values)Double

Multiplies any amount of numbers

Arguments:

- values (Number, required) -- Numbers to multiply together, separated by semicolons

Aliases:

- mul
power(base; exponent)Double

Returns the first number raised to the power of the second number

Arguments:

- base (Number, required) -- Base
- exponent (Number, required) -- Exponent

Aliases:

- pow
random(min; max)Double

Random number between minimum and maximum (excludes max)

Arguments:

- min (Number, required) -- Minimum value (inclusive)
- max (Number, required) -- Maximum value (exclusive)

Aliases:

- rand
round(value; decimals)Double

Rounds a number to the specified number of decimals

Arguments:

- value (Number, required) -- Value
- decimals (Integer, required) -- Decimals

No aliases

square_root(value)Double

Returns the square root of a number

Arguments:

- value (Number, required) -- Value

Aliases:

- sqrt
subtract(first; second)Double

Subtracts the second number from the first number

Arguments:

- first (Number, required) -- First number
- second (Number, required) -- Second number

Aliases:

- sub
name(named)String

The name of this named value

Arguments:

- named (NamedValue, required) -- Named value

No aliases

named_value(name; value)NamedValue

A named value from a name and a value

Arguments:

- name (String, required) -- Name
- value (Number, required) -- Value

Aliases:

- named
value(named)Integer

The value of this named value

Arguments:

- named (NamedValue, required) -- Named value

Aliases:

- val
capped_string(value; delimiter)String

Returns formatted Capped Value with delimiter in between

Arguments:

- value (CappedValue, required) -- Capped Value
- delimiter (String, required) -- Delimiter between current and max value

Aliases:

- cap_str
- str_cap
concat(values)String

Concatenates any amount of strings together

Arguments:

- values (String, required) -- Strings to concatenate, separated by semicolons

No aliases

format_capped(value)String

Formats a capped value to a shorter version.

Arguments:

- value (CappedValue, required) -- Capped value to format

No aliases

format_duration(seconds)String

Formats seconds to a shorter version.

Arguments:

- seconds (Number, required) -- Seconds to format

No aliases

format_date(timestamp)String

Formats a timestamp to a string version.

Arguments:

- timestamp (Number, required) -- Timestamp to format

No aliases

format(value)String

Formats a number to a shorter version.

Arguments:

- value (Number, required) -- Value to format

No aliases

format_ranged(value)String

Formats a ranged value to a shorter version.

Arguments:

- value (RangedValue, required) -- Ranged value to format

No aliases

leading_zeros(value; length)String

Adds leading zeros to a number

Arguments:

- value (Integer, required) -- The number to add leading zeros to
- length (Integer, required) -- The length of the number after adding leading zeros

No aliases

parse_double(value)Double

Parses a string to a double

Arguments:

- value (String, required) -- String to parse

No aliases

parse_integer(value)Integer

Parses a string to an integer

Arguments:

- value (String, required) -- String to parse

Aliases:

- parse_int
regex_find(source; regex)Boolean

Checks if the given regex finds the given string

Arguments:

- source (String, required) -- String to check
- regex (String, required) -- Regex pattern

No aliases

regex_match(source; regex)Boolean

Checks if the given regex matches the given string

Arguments:

- source (String, required) -- String to check
- regex (String, required) -- Regex pattern

No aliases

regex_replace(source; regex; replacement)String

Replaces all matches of the given regex with the given replacement

Arguments:

- source (String, required) -- String to replace
- regex (String, required) -- Regex pattern
- replacement (String, required) -- Replacement string

No aliases

repeat(value; count)String

Repeats the given string the specified amount of times

Arguments:

- value (String, required) -- The string to repeat
- count (Integer, required) -- The number of times to repeat the string

No aliases

string_contains(source; substring)Boolean

Checks if a string contains another string

Arguments:

- source (String, required) -- String to search in
- substring (String, required) -- String to check for

Aliases:

- contains_str
string_equals(first; second)Boolean

Checks if two strings are equal

Arguments:

- first (String, required) -- First string
- second (String, required) -- Second string

Aliases:

- eq_str
string(value)String

Convert a number to a string

Arguments:

- value (Number, required) -- Value to convert

Aliases:

- str
current_territoryString

The territory you are currently in

No arguments

Aliases:

- territory
current_territory_owner(prefixOnly?)String

The 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_owner
current_worldString

Get the name of the current world, such as WC32, may be <unknown> or <not on world>

No arguments

Aliases:

- world
in_mapped_area(width?; height?; scale?)Boolean

Are you currently inside a mapped area?

Arguments:

- width (Number, optional, default: 130) -- Width of the area to check
- height (Number, optional, default: 130) -- Height of the area to check
- scale (Number, optional, default: 1) -- Zoom level of the area to check

No aliases

in_streamBoolean

Are you currently in streamer mode?

No arguments

Aliases:

- streamer
mob_totem_countInteger

The number of mob totems around you

No arguments

No aliases

mob_totem_distance(totemNumber)Double

The distance to the mob totem

Arguments:

- totemNumber (Integer, required) -- The number of the mob totem to get the distance to

No aliases

mob_totem(totemNumber)Location

The location of the mob totem

Arguments:

- totemNumber (Integer, required) -- The number of the mob totem to get the location of

No aliases

mob_totem_owner(totemNumber)String

The name of the player who placed the mob totem

Arguments:

- totemNumber (Integer, required) -- The number of the mob totem to get the owner of

No aliases

mob_totem_time_left(totemNumber)String

The time left on the mob totem

Arguments:

- totemNumber (Integer, required) -- The number of the mob totem to get the time left of

No aliases

newest_worldString

The newest world there is on Wynncraft

No arguments

No aliases

pingInteger

Your ping to the Wynncraft server

No arguments

No aliases

token_gatekeeper_countInteger

The number of tokens gatekeepers present

No arguments

Aliases:

- token_count
token_gatekeeper_deposited(gatekeeperNumber?)CappedValue

The number of tokens deposited to a gatekeeper

Arguments:

- gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper Number

Aliases:

- token_dep
token_gatekeeper(gatekeeperNumber?)CappedValue

The number of tokens collected to get past a gatekeeper

Arguments:

- gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper Number

Aliases:

- token
token_gatekeeper_type(gatekeeperNumber?)String

The type of tokens needed to get past a gatekeeper

Arguments:

- gatekeeperNumber (Integer, optional, default: 0) -- The Gatekeeper Number

Aliases:

- token_type
world_stateString

The current world state. One of NOT_CONNECTED, CONNECTING, INTERIM, HUB, CHARACTER_SELECTION, WORLD

No arguments

No aliases

world_uptime(worldName?)String

The 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:

- uptime
- current_world_uptime
bpsDouble

Player speed in blocks per second

No arguments

No aliases

bps_xzDouble

Player speed in blocks per second excluding vertical movement

No arguments

No aliases

capped_awakened_progressCappedValue

Your Awakened Progress

No arguments

No aliases

capped_blood_poolCappedValue

Your Blood Pool

No arguments

No aliases

capped_corruptedCappedValue

Your Corruption

No arguments

No aliases

capped_focusCappedValue

Your Focus

No arguments

No aliases

capped_healthCappedValue

Your health

No arguments

No aliases

capped_holy_powerCappedValue

Your Holy Power

No arguments

Aliases:

- capped_sacred_surge
capped_mana_bankCappedValue

Your Mana Bank

No arguments

No aliases

capped_manaCappedValue

Your mana

No arguments

No aliases

capped_ophanimCappedValue

Your Ophanim

No arguments

No aliases

class(uppercase?; showReskinnedName?)String

Name 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_activatedBoolean

Whether your commander is active

No arguments

No aliases

commander_durationInteger

Duration of your commander

No arguments

No aliases

healthInteger

Your current health

No arguments

No aliases

health_maxInteger

Maximum possible health

No arguments

No aliases

health_pctDouble

Your current health as percentage of max

No arguments

No aliases

idString

Your character's ID

No arguments

No aliases

manaInteger

Your current mana

No arguments

No aliases

mana_maxInteger

Maximum possible mana

No arguments

No aliases

mana_pctDouble

Your current mana as percentage of max

No arguments

No aliases

sprintCappedValue

Your remaining sprint stamina

No arguments

No aliases

status_effect_active(query)Boolean

Checks if an effect is contained in the status effect list

Arguments:

- query (String, required) -- Case-sensitive effect name string to check for

Aliases:

- contains_effect
status_effectsString

Retrieves the full list of status effects

No arguments

No aliases

area_damage_average(seconds?)Double

The 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 over

Aliases:

- adavg
area_damage_per_secondLong

The damage you dealt in your area in the last second

No arguments

Aliases:

- adps
blocks_above_groundDouble

How many blocks you are above the ground (the number of air blocks below you)

No arguments

Aliases:

- agl
- above_ground_level
kills_per_minute(includeShared?)Integer

How many mobs you have killed in the last 60 seconds

Arguments:

- includeShared (Boolean, optional, default: true) -- Include shared kills

Aliases:

- kpm
last_spell_name(burst?)String

The 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_name
last_spell_repeat_count(burst?)Integer

The 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_count
ticks_since_last_spell(burst?)Integer

The 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_ticks
focused_mob_nameString

The name of the mob you are currently attacking

No arguments

Aliases:

- foc_mob_name
focused_mob_healthLong

The health of the mob you are currently attacking

No arguments

Aliases:

- foc_mob_hp
focused_mob_health_percentCappedValue

The remaining health percentage of the mob you are currently attacking

No arguments

Aliases:

- foc_mob_hp_pct
time_since_last_damage_dealtLong

The time, in milliseconds, since you last damaged a mob

No arguments

Aliases:

- last_dam_ms
capped_levelCappedValue

Your combat level

No arguments

No aliases

capped_xpCappedValue

Your combat XP

No arguments

No aliases

levelInteger

Your current combat level

No arguments

Aliases:

- lvl
xpString

Your current XP in this level expressed as points (formatted)

No arguments

No aliases

xp_pctDouble

Your current XP in this level expressed percentage of level up requirement

No arguments

No aliases

xp_per_minuteString

The amount of experience you gain per minute, formatted.

No arguments

Aliases:

- xpm
xp_per_minute_rawInteger

The amount of experience you gain per minute, raw amount.

No arguments

Aliases:

- xpm_raw
xp_percentage_per_minuteDouble

The amount of experience you gain per minute, percentage.

No arguments

Aliases:

- xppm
xp_rawInteger

Your current XP in this level expressed as points (raw number)

No arguments

No aliases

xp_reqString

XP points needed to level up (formatted)

No arguments

No aliases

xp_req_rawInteger

XP points needed to level up (raw number)

No arguments

No aliases

capped_memCappedValue

Memory usage of the JVM

No arguments

Aliases:

- capped_memory
clockString

The current time, formatted in the current locale style

No arguments

No aliases

clockmString

The current time, formatted to 24h format

No arguments

No aliases

stopwatch_zeroBoolean

Checks if the stopwatch is currently at zero

No arguments

Aliases:

- stopwatch_is_zero
stopwatch_runningBoolean

Checks if the stopwatch is currently running

No arguments

No aliases

stopwatch_hoursInteger

The number in the hours position on the stopwatch

No arguments

No aliases

stopwatch_minutesInteger

The number in the minutes position on the stopwatch

No arguments

No aliases

stopwatch_secondsInteger

The number in the seconds position on the stopwatch

No arguments

No aliases

stopwatch_millisecondsInteger

The number in the milliseconds position on the stopwatch

No arguments

No aliases

mem_maxInteger

Maximum amount of memory available to the JVM

No arguments

Aliases:

- memorymax
- memmax
mem_pctInteger

Percentage of available memory that is currently being used

No arguments

Aliases:

- memorypct
- mempct
mem_usedInteger

Current amount of memory used by the JVM

No arguments

Aliases:

- memoryused
- memused
accessory_durability(accessory)CappedValue

Durability of the specified accessory

Arguments:

- accessory (String, required) -- The accessory you want the durability of. One of Ring_1, Ring_2, Bracelet, Necklace

No aliases

all_shiny_statsString

Shows a list of all shiny stats

No arguments

No aliases

armor_durability(armor)CappedValue

Durability of the specified armor

Arguments:

- armor (String, required) -- The armor you want the durability of

No aliases

capped_held_item_durabilityCappedValue

Durability of the item held in your main hand

No arguments

No aliases

capped_ingredient_pouch_slotsCappedValue

Used slots in the ingredient pouch

No arguments

No aliases

capped_inventory_slotsCappedValue

Used slots in your inventory

No arguments

No aliases

emerald_blockInteger

Get the number of emerald blocks in your inventory

No arguments

Aliases:

- eb
emerald_string(zeros?)String

Get 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 displayed

Aliases:

- estr
emeraldsInteger

Amount of money in emeralds in inventory (Besides LE and EB)

No arguments

Aliases:

- em
held_item_current_durabilityInteger

Current durability of the item in your hand

No arguments

Aliases:

- current_held_durability
held_item_max_durabilityInteger

Max durability of the item in your hand

No arguments

Aliases:

- max_held_durability
held_item_name(formatted?)String

Name of the item in your hand

Arguments:

- formatted (Boolean, optional, default: false) -- Whether to retain the color codes in the name

Aliases:

- held_item
- held_name
held_item_shiny_statNamedValue

Shows the shiny stat of the item held in your main hand

No arguments

No aliases

held_item_typeString

Type of the item in your hand

No arguments

Aliases:

- held_type
held_item_cooldownCappedValue

Remaining cooldown ticks for the item in your hand

No arguments

Aliases:

- held_cooldown
- held_cd
ingredient_pouch_open_slotsInteger

How many slots are currently open in your ingredient pouch.

No arguments

Aliases:

- pouch_open
- pouch_free
ingredient_pouch_used_slotsInteger

How many slots are currently used in your ingredient pouch.

No arguments

Aliases:

- pouch_used
inventory_freeInteger

Number of free slots in inventory

No arguments

Aliases:

- inv_free
inventory_usedInteger

Number of used slots in inventory

No arguments

Aliases:

- inv_used
liquid_emeraldInteger

Amount of money liquid emeralds in inventory

No arguments

Aliases:

- le
moneyInteger

Total amount of money in inventory

No arguments

No aliases

capped_guild_level_progressCappedValue

The XP progress of your guild

No arguments

No aliases

capped_guild_objectives_progressCappedValue

Progress towards next objectives completed milestone

No arguments

No aliases

guild_levelInteger

The Level of the Guild you are in

No arguments

No aliases

guild_nameString

The name of the Guild you are currently in

No arguments

No aliases

guild_rankString

Your Rank in the Guild you are currently in

No arguments

No aliases

is_allied_guild(guild)Boolean

Whether or not the provided guild is an ally of your guild

Arguments:

- guild (String, required) -- The name of the guild to be checked

Aliases:

- is_allied
- is_ally
objective_streakInteger

How much consecutive guild objectives you have completed

No arguments

No aliases

capped_horse_levelCappedValue

Your horse's level

No arguments

No aliases

capped_horse_total_level_timeCappedValue

Your horse's time until max level in seconds

No arguments

Aliases:

- h_tot_lvl_time
capped_horse_xpCappedValue

Your horse's XP

No arguments

No aliases

horse_levelInteger

Your horse's current level

No arguments

Aliases:

- h_lvl
horse_level_maxInteger

Your horse's maximum level

No arguments

Aliases:

- h_mlvl
horse_level_timeInteger

Your horse's time until level up in seconds

No arguments

Aliases:

- h_lvl_time
horse_nameString

Your horse's name

No arguments

Aliases:

- h_name
horse_tierInteger

Your horse's tier

No arguments

Aliases:

- h_tier
horse_xpInteger

Your horse's current XP

No arguments

Aliases:

- h_xp
chest_openedInteger

Get the number of loot chests opened

No arguments

Aliases:

- chest_count
dry_boxesInteger

Get the number of found gear boxes that has not been a mythic

No arguments

Aliases:

- dry_b
- dry_boxes_count
dry_pullsInteger

Get the number of pulls that has not contained a mythic

No arguments

Aliases:

- dry_p
- dry_pulls_count
dry_streakInteger

Get the number of loot chests opened that has not contained a mythic

No arguments

Aliases:

- dry_s
highest_dry_streakInteger

The highest dry streak that you had.

No arguments

No aliases

last_dry_streakInteger

The last dry streak that you had.

No arguments

No aliases

last_mythicString

The last mythic that you found in a loot chest.

No arguments

No aliases

lootrun_beacon_count(color)Integer

The number of beacons you have selected in your lootrun

Arguments:

- color (String, required) -- The color of the beacon

No aliases

lootrun_challengesCappedValue

The number of challenges

No arguments

No aliases

lootrun_last_selected_beacon_colorString

The color of the beacon you have last selected in your lootrun

No arguments

No aliases

lootrun_last_selected_beacon_vibrantBoolean

If the last selected beacon in your lootrun was vibrant or not

No arguments

No aliases

lootrun_mission(index; colored)String

The name of the Lootrun Mission at the given Index

Arguments:

- index (Integer, required) -- The index of the Mission
- colored (Boolean, required) -- Whether or not the output should return colored

No aliases

lootrun_red_beacon_challenge_countInteger

The number of red beacon challenges you have remaining in your lootrun

No arguments

No aliases

lootrun_orange_beacon_countInteger

The number of orange beacon effects currently active

No arguments

No aliases

lootrun_next_orange_expireInteger

How many more challenges until the next orange beacon effect expires

No arguments

No aliases

lootrun_rainbow_beacon_countInteger

How many more challenges until the rainbow beacon effect expires

No arguments

No aliases

lootrun_stateString

The current state of the lootrun you are in. One of NOT_RUNNING, CHOOSING_BEACON, IN_TASK

No arguments

No aliases

lootrun_task_location(color)Location

The location of the task the beacon is pointing to

Arguments:

- color (String, required) -- The color of the beacon

No aliases

lootrun_task_name(color)String

The name of the task the beacon is pointing to

Arguments:

- color (String, required) -- The color of the beacon

No aliases

lootrun_task_type(color)String

The 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 beacon

No aliases

lootrun_timeInteger

The time left of current lootrun in seconds

No arguments

No aliases

lootrun_beacon_vibrant(color)Boolean

If the lootrun beacon is vibrant

Arguments:

- color (String, required) -- The color of the beacon

No aliases

dirDouble

Your current direction (heading)

No arguments

No aliases

fpsInteger

The current FPS (frames per second)

No arguments

No aliases

key_pressed(keyCode)Boolean

Returns true if the specified key is currently pressed, false otherwise

Arguments:

- keyCode (Integer, required) -- The key code to check, as a GLFW key code

No aliases

minecraft_effect_duration(effectName)Integer

Returns the duration left of the specified Minecraft effect if it is currently active, -1 otherwise

Arguments:

- effectName (String, required) -- The Minecraft effect identifier

No aliases

my_locationLocation

Your current location

No arguments

Aliases:

- my_loc
ticksInteger

The number of ticks since world start

No arguments

No aliases

last_harvest_material_levelInteger

The level of the material you last harvested

No arguments

No aliases

last_harvest_material_nameString

The name of the material you last harvested

No arguments

No aliases

last_harvest_material_tierInteger

The tier of the material you last harvested

No arguments

No aliases

last_harvest_material_typeString

The type of material you last harvested

No arguments

No aliases

last_harvest_resource_typeString

The type of resource you last harvested

No arguments

No aliases

material_dry_streakInteger

Returns the number of times a material was not a T3 in a row.

No arguments

Aliases:

- mat_dry
profession_level(profession)Integer

The level of the specified profession

Arguments:

- profession (String, required) -- The profession to check

Aliases:

- prof_lvl
profession_percentage(profession)Double

Your current percentage for the profession specified

Arguments:

- profession (String, required) -- The profession to check

Aliases:

- prof_pct
profession_xp_per_minute(profession)String

The amount of XP you gained for the specified profession in the last minute

Arguments:

- profession (String, required) -- The profession to check

Aliases:

- prof_xpm
profession_xp_per_minute_raw(profession)Integer

The raw amount of XP you gained for the specified profession in the last minute

Arguments:

- profession (String, required) -- The profession to check

Aliases:

- prof_xpm_raw
current_raidString

The name of the raid you are currently in

No arguments

Aliases:

- raid
current_raid_roomString

The type of raid room you are currently in

No arguments

Aliases:

- raid_room
current_raid_room_timeLong

How long you have been in the current raid room for in milliseconds

No arguments

No aliases

current_raid_room_damageLong

How much damage have you dealt in the current raid room

No arguments

No aliases

current_raid_timeLong

How long you have been in the current raid for in milliseconds

No arguments

Aliases:

- raid_time
current_raid_damageLong

How much damage have you dealt in the current raid

No arguments

Aliases:

- raid_damage
dry_aspectsInteger

Dry Aspects

No arguments

No aliases

dry_raid_reward_pullsInteger

Dry Raid Reward Pulls

No arguments

No aliases

dry_raids_tomesInteger

Dry Raids Tomes

No arguments

No aliases

dry_raids_aspectsInteger

Dry Raids Aspects

No arguments

No aliases

raid_challengesCappedValue

The number of challenges in the raid

No arguments

No aliases

raid_intermission_timeLong

How long you have been outside of a challenge/boss room in milliseconds

No arguments

No aliases

raid_room_time(roomName)Long

How long it took to complete the specified raid room in milliseconds

Arguments:

- roomName (String, required) -- The room type to get the time taken to complete for. One of CHALLENGE_1, CHALLENGE_2 or CHALLENGE_3

No aliases

raid_room_damage(roomName)Long

How much damage did you deal in the specified raid room

Arguments:

- roomName (String, required) -- The room type to get the damage dealt for. One of CHALLENGE_1, CHALLENGE_2 or CHALLENGE_3

No aliases

raid_personal_best_time(raidName)Long

The fastest time taken to beat the specified raid in milliseconds

Arguments:

- raidName (String, required) -- The name of the raid to get the best time for

Aliases:

- raid_pb
raid_time_remainingInteger

How much time is left to complete the raid in seconds

No arguments

No aliases

range_high(range)Integer

The high value of the range

Arguments:

- range (RangedValue, required) -- Range

Aliases:

- high
range_low(range)Integer

The low value of the range

Arguments:

- range (RangedValue, required) -- Range

Aliases:

- low
ranged(low; high)RangedValue

Creates a range from two values

Arguments:

- low (Integer, required) -- Low value
- high (Integer, required) -- High value

No aliases

arrow_shield_countInteger

The number of arrow shield charges you have

No arguments

Aliases:

- arrow_shield
mantle_shield_countInteger

The number of mantle shield charges you have

No arguments

Aliases:

- mantle_shield
shaman_mask(isColored?; useShortName?)String

What 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)Double

The distance between you and the shaman totem

Arguments:

- totemNumber (Integer, required) -- The number of the totem to get the distance from

No aliases

shaman_totem_location(totemNumber)String

The location of the shaman totem

Arguments:

- totemNumber (Integer, required) -- The number of the totem to get the distance from

No aliases

shaman_totem_state(totemNumber)String

The state of the shaman totem. One of SUMMONED, ACTIVE

Arguments:

- totemNumber (Integer, required) -- The number of the totem to get the distance from

No aliases

shaman_totem_time_left(totemNumber)Integer

The time left on the shaman totem

Arguments:

- totemNumber (Integer, required) -- The number of the totem to get the distance from

No aliases

friendsInteger

Number of friends online

No arguments

No aliases

party_members(includeOffline?)Integer

Number of party members

Arguments:

- includeOffline (Boolean, optional, default: true) -- Whether to include offline party members in the count

No aliases

party_leaderString

The name of the party leader

No arguments

No aliases

statistics_total(statisticKey; overall)Long

Total of all statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsTotal.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsTotal.argument.overall

No aliases

statistics_count(statisticKey; overall)Long

Count of statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsCount.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsCount.argument.overall

No aliases

statistics_min(statisticKey; overall)Long

Minimum value among the statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsMin.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsMin.argument.overall

No aliases

statistics_max(statisticKey; overall)Long

Maximum value among the statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsMax.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsMax.argument.overall

No aliases

statistics_average(statisticKey; overall)Long

Average value of the statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsAverage.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsAverage.argument.overall

No aliases

statistics_first_modified(statisticKey; overall)Long

First modification date among the statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsFirstModified.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsFirstModified.argument.overall

No aliases

statistics_last_modified(statisticKey; overall)Long

Last modification date among the statistical entries

Arguments:

- statisticKey (String, required) -- function.wynntils.statisticsLastModified.argument.statisticKey
- overall (Boolean, required) -- function.wynntils.statisticsLastModified.argument.overall

No aliases

statistics_formatted(statisticKey; value)String

Format numbers the way the statistic kind does

Arguments:

- statisticKey (String, required) -- The statistic key to get the value of
- value (Number, required) -- The value to format

No aliases

aura_timerDouble

The time left before aura strikes

No arguments

No aliases

current_tower_attack_speedDouble

The attack speed of the current tower you are attacking

No arguments

No aliases

current_tower_damageRangedValue

The damage of the current tower you are attacking

No arguments

No aliases

current_tower_defenseDouble

The defense of the current tower you are attacking

No arguments

No aliases

current_tower_healthLong

The health of the current tower you are attacking

No arguments

No aliases

estimated_time_to_finish_warLong

The estimated time to finish the war you are currently in

No arguments

No aliases

initial_tower_attack_speedDouble

The attack speed of the initial tower you are attacking

No arguments

No aliases

initial_tower_damageRangedValue

The damage of the initial tower you are attacking

No arguments

No aliases

initial_tower_defenseDouble

The defense of the initial tower you are attacking

No arguments

No aliases

initial_tower_healthLong

The health of the initial tower you are attacking

No arguments

No aliases

is_territory_queued(territoryName)Boolean

Is the specified territory queued for an attack?

Arguments:

- territoryName (String, required) -- The territory to check

Aliases:

- is_queued
team_dps(seconds?)Long

The 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 over

No aliases

time_in_warLong

The time you have been in the war you are currently in

No arguments

No aliases

tower_dpsRangedValue

The DPS of the tower you are currently attacking

No arguments

No aliases

tower_effective_hpLong

The effective HP of the tower you are currently attacking

No arguments

No aliases

tower_ownerString

The owner of the tower you are attacking

No arguments

No aliases

tower_territoryString

The territory of the tower you are attacking

No arguments

No aliases

volley_timerDouble

The time left before volley strikes

No arguments

No aliases

wars_since(sinceDays?)Long

The number of wars in the specified time period

Arguments:

- sinceDays (Integer, optional, default: 7) -- The number of days to include

No aliases

annihilation_sun_progressCappedValue

The progress towards a new sun being created during the Annihilation battle

No arguments

Aliases:

- sun_progress
transcribe_gavellian(gavellian)String

Transcribe your given input into Gavellian.

Arguments:

- gavellian (String, required) -- The text you want to transcribe into Gavellian.

Aliases:

- gavellian
transcribe_wynnic(wynnic)String

Transcribe your given input into Wynnic.

Arguments:

- wynnic (String, required) -- The text you want to transcribe into Wynnic.

Aliases:

- wynnic