$parseTime

Convert human-readable time strings into milliseconds. This function allows you to easily specify durations using common time units (seconds, minutes, hours, days, etc.) and get the equivalent value in milliseconds.

Usage

$parseTime[time]

Argument:

  • time: A string representing the time duration you want to convert. Supported units include s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months - 30 days), and y (years - 365 days).

Example

This example shows how to use $parseTime to convert 1 minute into milliseconds.

Member04/04/2025
!!exec $parseTime[1m]
Custom Command Bot 04/04/2025
60000

Explanation:

  • The user enters the command !!exec $parseTime[1m].
  • $parseTime[1m] converts "1m" (1 minute) into its equivalent in milliseconds, which is 60000.
  • The bot then outputs the result: 60000.