> ## Documentation Index
> Fetch the complete documentation index at: https://vctdocs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# RESUME

> Triggered when a paused timer is resumed.

## Usage Example

<CodeGroup>
  ```java Java Example theme={null}
  @EventHandler
  public void onVCTEvent(VCTEvent event) {
      if (event.getType() == VCTEventType.RESUME) {
          String timerId = event.getTimerId();

          Bukkit.broadcastMessage("The timer " + timerId + " has resumed!");
      }
  }
  ```

  ```yaml CE Example theme={null}
  vct_resume_example:
    type: custom
    custom_event_data:
      event: voiidstudios.vct.api.VCTEvent
      variables_to_capture:
      - '%eventType%;getType()'
      - '%timerId%;getTimerId()'
    conditions:
    - '%eventType% == RESUME'
    actions:
      default:
      - 'to_all: actionbar: The timer %timerId% has resumed!;100'
  ```
</CodeGroup>

## Behavior

* Fired when a paused timer continues counting down.

## Parameters

<ResponseField name="event" type="VCTEvent">
  Represents the event. Useful getters:

  * `String getTimerId()` — ID of the resumed timer
</ResponseField>
