├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── command-mistake-improvement.md └── PULL_REQUEST_TEMPLATE.md ├── Commands ├── Basic Commmands │ ├── dm.txt │ ├── embed.txt │ ├── readme.md │ └── say.txt ├── Command Snippets Module │ ├── README.md │ ├── register.txt │ ├── run.txt │ └── unregister.txt ├── Dueling Game │ ├── accept.txt │ ├── duel.txt │ ├── fire.txt │ └── load.txt ├── Entertainment Commands │ ├── 8ball.txt │ ├── gift.txt │ ├── hug.txt │ ├── last.txt │ ├── rate.txt │ ├── readme.md │ ├── rickroll.txt │ ├── roulette.txt │ └── ship.txt ├── Lottery Module │ ├── award.txt │ ├── draw.txt │ ├── lottery.txt │ ├── numbers.txt │ └── readme.md ├── Moderation Commands │ ├── badnick.txt │ ├── cooldown.txt │ ├── lc.txt │ ├── mute-ban.txt │ ├── mute-kick.txt │ ├── mute-sban.txt │ ├── mute-tban.txt │ ├── pc-ignore.txt │ ├── pingmods.txt │ ├── readme.md │ └── spam.txt ├── Polls Module │ ├── op1.txt │ ├── op2.txt │ ├── pollclose.txt │ ├── pollcount.txt │ ├── pollstart.txt │ └── readme.md ├── Premium Commands │ ├── push.txt │ ├── readme.md │ └── rename.txt ├── Profile Module │ ├── delprofile.txt │ ├── edprofile.txt │ ├── profile.txt │ ├── profiles.txt │ ├── readme.md │ └── setinfo.txt ├── Suggestion Module │ ├── approve.txt │ ├── deny.txt │ ├── implement.txt │ ├── readme.md │ └── suggest.txt ├── Support Tickets │ ├── accept.txt │ ├── away.txt │ ├── back.txt │ ├── close.txt │ ├── deny.txt │ ├── readme.md │ └── ticket.txt ├── Utility Commands │ ├── channelinfo.txt │ ├── colorswap.txt │ ├── copy.txt │ ├── dm.txt │ ├── erole.txt │ ├── id.txt │ ├── lc.txt │ ├── link.txt │ ├── lookup.txt │ ├── mention.txt │ ├── owner.txt │ ├── panel.txt │ ├── pomodoro.txt │ ├── rcolor.txt │ ├── readme.md │ ├── reddit.txt │ ├── reset.txt │ ├── rolemention.txt │ ├── roleswap.txt │ ├── screenshare.txt │ ├── search.txt │ ├── setup.txt │ ├── spotify.txt │ ├── status.txt │ ├── superclean.txt │ └── toggle.txt ├── Verification Module │ ├── codes.md │ ├── dmimage.txt │ ├── password.txt │ ├── readme.md │ ├── unverify.txt │ └── verify.txt ├── Word Chain Module │ ├── last.txt │ └── readme.md └── readme.md ├── LICENSE.md └── readme.md /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/command-mistake-improvement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/.github/ISSUE_TEMPLATE/command-mistake-improvement.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Commands/Basic Commmands/dm.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {require:serverMod} 3 | {dm:$1}$2+ -------------------------------------------------------------------------------- /Commands/Basic Commmands/embed.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {!announce {channel} $1+} -------------------------------------------------------------------------------- /Commands/Basic Commmands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Basic Commmands/readme.md -------------------------------------------------------------------------------- /Commands/Basic Commmands/say.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | $1+ -------------------------------------------------------------------------------- /Commands/Command Snippets Module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Command Snippets Module/README.md -------------------------------------------------------------------------------- /Commands/Command Snippets Module/register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Command Snippets Module/register.txt -------------------------------------------------------------------------------- /Commands/Command Snippets Module/run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Command Snippets Module/run.txt -------------------------------------------------------------------------------- /Commands/Command Snippets Module/unregister.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Command Snippets Module/unregister.txt -------------------------------------------------------------------------------- /Commands/Dueling Game/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Dueling Game/accept.txt -------------------------------------------------------------------------------- /Commands/Dueling Game/duel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Dueling Game/duel.txt -------------------------------------------------------------------------------- /Commands/Dueling Game/fire.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Dueling Game/fire.txt -------------------------------------------------------------------------------- /Commands/Dueling Game/load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Dueling Game/load.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/8ball.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/8ball.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/gift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/gift.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/hug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/hug.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/last.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/last.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/rate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/rate.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/readme.md -------------------------------------------------------------------------------- /Commands/Entertainment Commands/rickroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/rickroll.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/roulette.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/roulette.txt -------------------------------------------------------------------------------- /Commands/Entertainment Commands/ship.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Entertainment Commands/ship.txt -------------------------------------------------------------------------------- /Commands/Lottery Module/award.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Lottery Module/award.txt -------------------------------------------------------------------------------- /Commands/Lottery Module/draw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Lottery Module/draw.txt -------------------------------------------------------------------------------- /Commands/Lottery Module/lottery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Lottery Module/lottery.txt -------------------------------------------------------------------------------- /Commands/Lottery Module/numbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Lottery Module/numbers.txt -------------------------------------------------------------------------------- /Commands/Lottery Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Lottery Module/readme.md -------------------------------------------------------------------------------- /Commands/Moderation Commands/badnick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/badnick.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/cooldown.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/cooldown.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/lc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/lc.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/mute-ban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/mute-ban.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/mute-kick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/mute-kick.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/mute-sban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/mute-sban.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/mute-tban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/mute-tban.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/pc-ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/pc-ignore.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/pingmods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/pingmods.txt -------------------------------------------------------------------------------- /Commands/Moderation Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/readme.md -------------------------------------------------------------------------------- /Commands/Moderation Commands/spam.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Moderation Commands/spam.txt -------------------------------------------------------------------------------- /Commands/Polls Module/op1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/op1.txt -------------------------------------------------------------------------------- /Commands/Polls Module/op2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/op2.txt -------------------------------------------------------------------------------- /Commands/Polls Module/pollclose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/pollclose.txt -------------------------------------------------------------------------------- /Commands/Polls Module/pollcount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/pollcount.txt -------------------------------------------------------------------------------- /Commands/Polls Module/pollstart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/pollstart.txt -------------------------------------------------------------------------------- /Commands/Polls Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Polls Module/readme.md -------------------------------------------------------------------------------- /Commands/Premium Commands/push.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Premium Commands/push.txt -------------------------------------------------------------------------------- /Commands/Premium Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Premium Commands/readme.md -------------------------------------------------------------------------------- /Commands/Premium Commands/rename.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Premium Commands/rename.txt -------------------------------------------------------------------------------- /Commands/Profile Module/delprofile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/delprofile.txt -------------------------------------------------------------------------------- /Commands/Profile Module/edprofile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/edprofile.txt -------------------------------------------------------------------------------- /Commands/Profile Module/profile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/profile.txt -------------------------------------------------------------------------------- /Commands/Profile Module/profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/profiles.txt -------------------------------------------------------------------------------- /Commands/Profile Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/readme.md -------------------------------------------------------------------------------- /Commands/Profile Module/setinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Profile Module/setinfo.txt -------------------------------------------------------------------------------- /Commands/Suggestion Module/approve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Suggestion Module/approve.txt -------------------------------------------------------------------------------- /Commands/Suggestion Module/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Suggestion Module/deny.txt -------------------------------------------------------------------------------- /Commands/Suggestion Module/implement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Suggestion Module/implement.txt -------------------------------------------------------------------------------- /Commands/Suggestion Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Suggestion Module/readme.md -------------------------------------------------------------------------------- /Commands/Suggestion Module/suggest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Suggestion Module/suggest.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/accept.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/away.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/away.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/back.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/back.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/close.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/close.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/deny.txt -------------------------------------------------------------------------------- /Commands/Support Tickets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/readme.md -------------------------------------------------------------------------------- /Commands/Support Tickets/ticket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Support Tickets/ticket.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/channelinfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/channelinfo.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/colorswap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/colorswap.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/copy.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/dm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/dm.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/erole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/erole.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/id.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/id.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/lc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/lc.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/link.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/lookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/lookup.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/mention.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/mention.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/owner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/owner.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/panel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/panel.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/pomodoro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/pomodoro.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/rcolor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/rcolor.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/readme.md -------------------------------------------------------------------------------- /Commands/Utility Commands/reddit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/reddit.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/reset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/reset.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/rolemention.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/rolemention.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/roleswap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/roleswap.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/screenshare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/screenshare.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/search.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/setup.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/spotify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/spotify.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/status.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/status.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/superclean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/superclean.txt -------------------------------------------------------------------------------- /Commands/Utility Commands/toggle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Utility Commands/toggle.txt -------------------------------------------------------------------------------- /Commands/Verification Module/codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/codes.md -------------------------------------------------------------------------------- /Commands/Verification Module/dmimage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/dmimage.txt -------------------------------------------------------------------------------- /Commands/Verification Module/password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/password.txt -------------------------------------------------------------------------------- /Commands/Verification Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/readme.md -------------------------------------------------------------------------------- /Commands/Verification Module/unverify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/unverify.txt -------------------------------------------------------------------------------- /Commands/Verification Module/verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Verification Module/verify.txt -------------------------------------------------------------------------------- /Commands/Word Chain Module/last.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Word Chain Module/last.txt -------------------------------------------------------------------------------- /Commands/Word Chain Module/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/Word Chain Module/readme.md -------------------------------------------------------------------------------- /Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/Commands/readme.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/LICENSE.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StrandCC/Strand-Custom-Commands/HEAD/readme.md --------------------------------------------------------------------------------