Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 780 Bytes

usdactivity.md

File metadata and controls

53 lines (31 loc) · 780 Bytes
description
Return's the given user's activities.

$activity

This function shows the current activity of the indicated user (Only if it detects any activity.), If the indicated user does not have an activity such as a 'custom status' it will show 'none'.

Fields

This function has 1 field

  1. userID (optional)

Raw Usage: $activity[userID (optional)]

Options

  • userID - The user the activity is based on

Activities

  • Custom Status
  • Spotify (Listening to)
  • <Game Name> (Playing)
  • Streaming

Usage

Without a user ID

bot.command({
    name: "activiy",
    code: `$activity`
});

With a user ID

bot.command({
    name: "activity",
    code: `$activity[535566311942651924]`
});