Skip to main content

modcall

Raises a moderator call to notify staff on the dashboard that a player needs assistance. BloxCord automatically attaches the list of players standing near the caller (within 15 studs).
This method is rate-limited and gated:
  • 10-minute cooldown per player between successful calls.
  • The reason must be 256 characters or fewer.
  • Modcalls must be enabled for your organization, and the caller must not have an active modcallban logbook entry.

Parameters

Player
required
The player raising the call. Used as the caller and as the center point for the nearby-players scan.
string
required
Why the call is being raised. Maximum 256 characters.

Returns

boolean
true if the call was raised. false if the player is still on cooldown, the reason exceeds 256 characters, or the call was otherwise rejected.

Example


pushCommandLog

Records that a staff member ran an admin command. This is a local, buffered call — entries are queued and uploaded with the next server report, so it returns instantly without a network round-trip.

Parameters

Player
required
The player who ran the command. Its UserId and Name are recorded.
Player
The player the command targeted, if any. Omit for commands with no target.
string
required
The command string that was executed.
string
The vanity related to the admin-level of the user. For example, “SHR Admin”, or “Administrator”. The dashboard will show this as the moderator’s admin level.

Returns

boolean
Always true — the entry is buffered locally and flushed on the next report.

Example