You are viewing a potentially older version of this package. View all versions.
AndrewLin-Remind-1.1.5 icon

Remind

Remind: A mod for On-Together with in-game utility commands including scheduled reminders (/remindmein, /remindlocalin, /remindglobalin), and more. Use /remindhelp

Date uploaded 4 months ago
Version 1.1.5
Download link AndrewLin-Remind-1.1.5.zip
Downloads 34
Dependency string AndrewLin-Remind-1.1.5

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2305 icon
BepInEx-BepInExPack

BepInEx pack for Mono Unity games. Preconfigured and ready to use.

Preferred version: 5.4.2305
AndrewLin-Alpha-0.0.11 icon
AndrewLin-Alpha

Alpha: A mod for On-Together to provide common utilities and features.

Preferred version: 0.0.11

README

Remind

A BepInEx mod for On Together that adds scheduled reminder commands to in-game chat.

In-Game Commands

Type any command into the in-game chat. Commands start with / and are not sent to other players.

Command Short Description
/remindhelp /rh List all available commands
/remindtoggle /rt Toggle Remind on/off
/remindchatconfirmation /rcc Toggle sending confirmation in chat after scheduling reminder
/remindmein /rmi Show a private notification after a delay
/remindmeat /rma Show a private notification at a specific time
/remindlocalin /rli Send a local chat message after a delay
/remindlocalat /rla Send a local chat message at a specific time
/remindglobalin /rgi Send a global chat message after a delay
/remindglobalat /rga Send a global chat message at a specific time

Reminder Syntax

in commands take a duration (timespan hh:mm:ss or ISO 8601 duration nhnmns), at commands take a local time (HH:mm[:ss]):

/remindmein 1h30m Take a break
/remindmein 0:05:00 Take a break
/remindmeat 14:45 Stand-up meeting

/remindlocalin 1:00:00 One hour left!
/remindlocalin 45s Quiz ends!
/remindlocalat 20:00 Game night starts

/remindglobalin 0:30:00 Checkpoint in 30 minutes
/remindglobalat 15:00 Boss fight time

Configuration

Located in BepInEx/config/com.andrewlin.ontogether.remind.cfg

  • EnableFeature (default: true) — Enable or disable all mod features
  • ShowCommand (default: false) — Show commands in chat when used

Installation

Use r2modman or the Thunderstore app for the simplest install.

Manual:

  1. Install BepInEx into your On Together game folder
  2. Copy AndrewLin.Remind.dll into BepInEx/plugins/
  3. Launch the game — a config file will be generated automatically

CHANGELOG

Changelog

All notable changes to this project will be documented in this file.

[1.1.10] - 2026-04-12

Changed

  • Dependency update to Alpha 0.0.11

[1.1.9] - 2026-04-12

Changed

  • Depends on Alpha 0.0.10

[1.1.8] - 2026-04-11

Changed

  • Depends on Alpha 0.0.8

[1.0.0] - 2026-03-18

Changed

  • Depend on AndrewLin-Alpha 1.0.0 mod
  • Rename BroadcastCreation to ChatConfirmation
  • Interpret a specific clock time e.g. 01:00 that was in the past for tomorrow (like alarm clock)

[0.0.5] - 2026-03-14

Changed

  • HOTFIX: some names are too darn long, so unformat for now
  • No longer Jaide ping compliant temporarily

[0.0.4] - 2026-03-14

Added

  • /remindbroadcastcreation /rbc to set if initial creation broadcast needs to happen

Changed

  • Jaide ping compliant
  • Fix remind at timezone

[0.0.3] - 2026-03-13

Changed

  • Remove trailing fraction seconds

[0.0.2] - 2026-03-13

Changed

  • Reminder chats now only use duration to be timezone invariant

[0.0.1] - 2026-03-12

Added

  • /remindmein (/rmi) — show a private notification after a duration (hh:mm:ss)
  • /remindmeat (/rma) — show a private notification at a local time (HH:mm)
  • /remindlocalin (/rli) — send a local chat message after a duration
  • /remindlocalat (/rla) — send a local chat message at a local time
  • /remindglobalin (/rgi) — send a global chat message after a duration
  • /remindglobalat (/rga) — send a global chat message at a local time
  • /remindhelp (/rh) — list all available commands
  • /remindtoggle (/rt) — toggle the mod on/off
  • /remindshowcommand (/rsc) — toggle showing commands in chat
  • ScheduledTaskManager — wall-clock based one-shot task scheduler with ScheduleIn(TimeSpan), ScheduleAt(DateTime), TryScheduleIn(string, ...), and TryScheduleAt(string, ...) overloads