im attempting to create a command that has a messageRun implementation. the command should be able to take multiple members and then a duration to timeout the members for.
for example, something like @bot timeout @member @member @member 12d
this would result in the bot timing out every member for 12 days. but what if i wanted to do something more dynamic like having a custom duration for some members?
for example, something like @bot timeout @member 12d @member 1h @member @member @member 2d
would result in the bot timing out the first member for 12 days, the second for 1 hour and the other 3 for 2 days. is this possible within sapphire? if so, how can I implement something like this?