├── .gitignore ├── .idea ├── Dyno-Custom-Commands.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── 404.md ├── BetaModern.html ├── BugReport.html ├── CNAME ├── CodeGenApp ├── index.html ├── resources │ ├── 9999.mp3 │ ├── Code Generator.cc1 │ └── Code Generator.cch └── src │ └── Runtime.js ├── CodeGenerator.md ├── Command List.md ├── CreateOwn.md ├── DYNOCCMA.jpg ├── Dyno Customer Hotline.md ├── Fun Commands ├── 8ball.txt ├── Mini-Games │ ├── Dyno-RPG │ │ ├── .credits │ │ ├── README.md │ │ ├── blight.txt │ │ ├── cointoss.txt │ │ ├── cure.txt │ │ ├── curse.txt │ │ ├── deathmatch.txt │ │ ├── divinecure.txt │ │ ├── fester.txt │ │ ├── infect.txt │ │ ├── insult.txt │ │ ├── plague.txt │ │ ├── raise.txt │ │ ├── register.txt │ │ ├── rpg-cmds.txt │ │ ├── sacrifice.txt │ │ ├── stab.txt │ │ └── treat.txt │ ├── Infection Mini-Game │ │ ├── cure.txt │ │ ├── infect.txt │ │ ├── plague.txt │ │ └── treat.txt │ ├── crownme.txt │ ├── guess-number.txt │ ├── readme.md │ └── roulette.txt ├── blocked.txt ├── choosepunish.txt ├── cuddle.txt ├── customcolor.txt ├── deathmatch.txt ├── depressme.txt ├── hug.txt ├── letterbox3.txt ├── letterbox4.txt ├── match.txt ├── muteme.txt ├── pending.txt ├── random.txt ├── readme.md └── sacrifice.txt ├── Information Commands ├── README.md ├── channel-info.txt ├── datetime-info.txt ├── server-info.txt └── user-info.txt ├── Moderation Commands ├── Extensive Mod Commands │ ├── README.md │ ├── badnick.txt │ ├── mute-ban.txt │ ├── mute-kick.txt │ ├── mute-sban.txt │ ├── mute-tban.txt │ └── pc-ignore.txt ├── Freeze Commands │ ├── README.md │ ├── freeze.txt │ └── unfreeze.txt ├── Nickname Request Commands │ ├── README.md │ ├── nickname-approve.txt │ ├── nickname-deny.txt │ └── nickname-request.txt ├── Warning System Commands │ ├── 1warn.txt │ ├── 2warn.txt │ ├── 3warn.txt │ ├── README.md │ └── clwarn.txt ├── cmdban.txt ├── cmdunban.txt ├── demote.txt ├── dm.txt ├── dmpurge.txt ├── permamute.txt ├── promote.txt ├── readme.md └── superclean.txt ├── README.md ├── Say Commands ├── bluegreen.txt ├── embed.txt ├── green.txt ├── orange.txt ├── red.txt ├── say.txt ├── sayto.txt └── yelloworange.txt ├── SupportUs.md ├── Utilities ├── Poll Commands │ ├── op1.txt │ ├── op2.txt │ ├── poll.txt │ ├── pollclose.txt │ ├── pollcount.txt │ └── readme.md ├── Search Commands │ ├── bing.txt │ ├── gsearch.txt │ ├── reddit.txt │ ├── wikd.txt │ ├── wikip.txt │ └── wikiq.txt ├── Sleep Commands │ ├── awake.txt │ ├── readme.md │ └── sleeping.txt ├── accept.txt ├── callmods-alt.txt ├── callmods.txt ├── code.txt ├── colorchange.txt ├── deny.txt ├── dmclean.txt ├── faq.txt ├── me.txt ├── readme.md ├── report.txt ├── request.txt ├── scholar.txt ├── sub.txt ├── subscribe.txt ├── suggest.txt ├── todo.txt └── waitwhat.txt ├── Verification Commands ├── Nex's Version │ ├── README.md │ ├── block.txt │ ├── code.txt │ ├── getcode.txt │ ├── unblock.txt │ ├── unverify.txt │ └── verify.txt ├── README.md ├── getcode.txt ├── signupcode.txt ├── unverify.txt ├── verification.txt └── verify.txt ├── Website Archive ├── CodeGenerator-old.html ├── CommandList-old.html ├── freeze-old.html └── old-homepage │ ├── index.html │ └── style.css ├── _config.yml ├── _layouts ├── amp.html ├── default.html └── homepage.html ├── _sass └── jekyll-theme-architect.scss ├── amp ├── CodeGenerator.md ├── Command List.md ├── CreateOwn.md ├── chat.md ├── index.md └── variables.md ├── bored.html ├── chat.md ├── discord.html ├── files ├── 404.jpg ├── Orange Logos │ ├── blur.png │ ├── circles.png │ ├── glow.png │ ├── main.png │ ├── orangeback.png │ └── wood.png ├── alone.png ├── dcc-trans.png ├── dcc_logo.png ├── dcc_logo_square.png ├── pending.png ├── wumpus.PNG └── z_Dyno_CC.png ├── index.md ├── mDynocc.html ├── sitemap.xml ├── staff.md └── variables.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/workspace.xml 3 | .sass-cache 4 | _site 5 | -------------------------------------------------------------------------------- /.idea/Dyno-Custom-Commands.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/.idea/Dyno-Custom-Commands.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/404.md -------------------------------------------------------------------------------- /BetaModern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/BetaModern.html -------------------------------------------------------------------------------- /BugReport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/BugReport.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | dynocc.xyz -------------------------------------------------------------------------------- /CodeGenApp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CodeGenApp/index.html -------------------------------------------------------------------------------- /CodeGenApp/resources/9999.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CodeGenApp/resources/9999.mp3 -------------------------------------------------------------------------------- /CodeGenApp/resources/Code Generator.cc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CodeGenApp/resources/Code Generator.cc1 -------------------------------------------------------------------------------- /CodeGenApp/resources/Code Generator.cch: -------------------------------------------------------------------------------- 1 | c -------------------------------------------------------------------------------- /CodeGenApp/src/Runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CodeGenApp/src/Runtime.js -------------------------------------------------------------------------------- /CodeGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CodeGenerator.md -------------------------------------------------------------------------------- /Command List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Command List.md -------------------------------------------------------------------------------- /CreateOwn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/CreateOwn.md -------------------------------------------------------------------------------- /DYNOCCMA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/DYNOCCMA.jpg -------------------------------------------------------------------------------- /Dyno Customer Hotline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Dyno Customer Hotline.md -------------------------------------------------------------------------------- /Fun Commands/8ball.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/8ball.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/.credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/.credits -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/README.md -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/blight.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/blight.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/cointoss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/cointoss.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/cure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/cure.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/curse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/curse.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/deathmatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/deathmatch.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/divinecure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/divinecure.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/fester.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/fester.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/infect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/infect.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/insult.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/insult.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/plague.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/plague.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/raise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/raise.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/register.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/register.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/rpg-cmds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/rpg-cmds.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/sacrifice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/sacrifice.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/stab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/stab.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Dyno-RPG/treat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Dyno-RPG/treat.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Infection Mini-Game/cure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Infection Mini-Game/cure.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Infection Mini-Game/infect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Infection Mini-Game/infect.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Infection Mini-Game/plague.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Infection Mini-Game/plague.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/Infection Mini-Game/treat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/Infection Mini-Game/treat.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/crownme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/crownme.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/guess-number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/guess-number.txt -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/readme.md -------------------------------------------------------------------------------- /Fun Commands/Mini-Games/roulette.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/Mini-Games/roulette.txt -------------------------------------------------------------------------------- /Fun Commands/blocked.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | https://dynocc.xyz/files/wumpus.PNG 3 | -------------------------------------------------------------------------------- /Fun Commands/choosepunish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/choosepunish.txt -------------------------------------------------------------------------------- /Fun Commands/cuddle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/cuddle.txt -------------------------------------------------------------------------------- /Fun Commands/customcolor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/customcolor.txt -------------------------------------------------------------------------------- /Fun Commands/deathmatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/deathmatch.txt -------------------------------------------------------------------------------- /Fun Commands/depressme.txt: -------------------------------------------------------------------------------- 1 | {user} https://dynocc.xyz/files/alone.png 2 | -------------------------------------------------------------------------------- /Fun Commands/hug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/hug.txt -------------------------------------------------------------------------------- /Fun Commands/letterbox3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/letterbox3.txt -------------------------------------------------------------------------------- /Fun Commands/letterbox4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/letterbox4.txt -------------------------------------------------------------------------------- /Fun Commands/match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/match.txt -------------------------------------------------------------------------------- /Fun Commands/muteme.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {!mute {user} 10 You asked for it. Just one question. Why?} 3 | -------------------------------------------------------------------------------- /Fun Commands/pending.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | https://dynocc.xyz/files/pending.png 3 | -------------------------------------------------------------------------------- /Fun Commands/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/random.txt -------------------------------------------------------------------------------- /Fun Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/readme.md -------------------------------------------------------------------------------- /Fun Commands/sacrifice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Fun Commands/sacrifice.txt -------------------------------------------------------------------------------- /Information Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Information Commands/README.md -------------------------------------------------------------------------------- /Information Commands/channel-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Information Commands/channel-info.txt -------------------------------------------------------------------------------- /Information Commands/datetime-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Information Commands/datetime-info.txt -------------------------------------------------------------------------------- /Information Commands/server-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Information Commands/server-info.txt -------------------------------------------------------------------------------- /Information Commands/user-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Information Commands/user-info.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/README.md -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/badnick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/badnick.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/mute-ban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/mute-ban.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/mute-kick.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/mute-kick.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/mute-sban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/mute-sban.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/mute-tban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/mute-tban.txt -------------------------------------------------------------------------------- /Moderation Commands/Extensive Mod Commands/pc-ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Extensive Mod Commands/pc-ignore.txt -------------------------------------------------------------------------------- /Moderation Commands/Freeze Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Freeze Commands/README.md -------------------------------------------------------------------------------- /Moderation Commands/Freeze Commands/freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Freeze Commands/freeze.txt -------------------------------------------------------------------------------- /Moderation Commands/Freeze Commands/unfreeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Freeze Commands/unfreeze.txt -------------------------------------------------------------------------------- /Moderation Commands/Nickname Request Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Nickname Request Commands/README.md -------------------------------------------------------------------------------- /Moderation Commands/Nickname Request Commands/nickname-approve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Nickname Request Commands/nickname-approve.txt -------------------------------------------------------------------------------- /Moderation Commands/Nickname Request Commands/nickname-deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Nickname Request Commands/nickname-deny.txt -------------------------------------------------------------------------------- /Moderation Commands/Nickname Request Commands/nickname-request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Nickname Request Commands/nickname-request.txt -------------------------------------------------------------------------------- /Moderation Commands/Warning System Commands/1warn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Warning System Commands/1warn.txt -------------------------------------------------------------------------------- /Moderation Commands/Warning System Commands/2warn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Warning System Commands/2warn.txt -------------------------------------------------------------------------------- /Moderation Commands/Warning System Commands/3warn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Warning System Commands/3warn.txt -------------------------------------------------------------------------------- /Moderation Commands/Warning System Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Warning System Commands/README.md -------------------------------------------------------------------------------- /Moderation Commands/Warning System Commands/clwarn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/Warning System Commands/clwarn.txt -------------------------------------------------------------------------------- /Moderation Commands/cmdban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/cmdban.txt -------------------------------------------------------------------------------- /Moderation Commands/cmdunban.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/cmdunban.txt -------------------------------------------------------------------------------- /Moderation Commands/demote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/demote.txt -------------------------------------------------------------------------------- /Moderation Commands/dm.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {require:serverMod} 3 | {dm:$1} 4 | $2+ 5 | -------------------------------------------------------------------------------- /Moderation Commands/dmpurge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/dmpurge.txt -------------------------------------------------------------------------------- /Moderation Commands/permamute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/permamute.txt -------------------------------------------------------------------------------- /Moderation Commands/promote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/promote.txt -------------------------------------------------------------------------------- /Moderation Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/readme.md -------------------------------------------------------------------------------- /Moderation Commands/superclean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Moderation Commands/superclean.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/README.md -------------------------------------------------------------------------------- /Say Commands/bluegreen.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | ```fix 3 | =$1+``` 4 | -------------------------------------------------------------------------------- /Say Commands/embed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Say Commands/embed.txt -------------------------------------------------------------------------------- /Say Commands/green.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | ```css 3 | $1+``` 4 | -------------------------------------------------------------------------------- /Say Commands/orange.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | ```autohotkey 3 | $1+:``` 4 | -------------------------------------------------------------------------------- /Say Commands/red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Say Commands/red.txt -------------------------------------------------------------------------------- /Say Commands/say.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | $1+ 3 | -------------------------------------------------------------------------------- /Say Commands/sayto.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {respond:#$1.channel.name} 3 | $2+ 4 | -------------------------------------------------------------------------------- /Say Commands/yelloworange.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | ```fix 3 | $1+``` 4 | -------------------------------------------------------------------------------- /SupportUs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/SupportUs.md -------------------------------------------------------------------------------- /Utilities/Poll Commands/op1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/op1.txt -------------------------------------------------------------------------------- /Utilities/Poll Commands/op2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/op2.txt -------------------------------------------------------------------------------- /Utilities/Poll Commands/poll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/poll.txt -------------------------------------------------------------------------------- /Utilities/Poll Commands/pollclose.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/pollclose.txt -------------------------------------------------------------------------------- /Utilities/Poll Commands/pollcount.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/pollcount.txt -------------------------------------------------------------------------------- /Utilities/Poll Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Poll Commands/readme.md -------------------------------------------------------------------------------- /Utilities/Search Commands/bing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/bing.txt -------------------------------------------------------------------------------- /Utilities/Search Commands/gsearch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/gsearch.txt -------------------------------------------------------------------------------- /Utilities/Search Commands/reddit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/reddit.txt -------------------------------------------------------------------------------- /Utilities/Search Commands/wikd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/wikd.txt -------------------------------------------------------------------------------- /Utilities/Search Commands/wikip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/wikip.txt -------------------------------------------------------------------------------- /Utilities/Search Commands/wikiq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Search Commands/wikiq.txt -------------------------------------------------------------------------------- /Utilities/Sleep Commands/awake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Sleep Commands/awake.txt -------------------------------------------------------------------------------- /Utilities/Sleep Commands/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Sleep Commands/readme.md -------------------------------------------------------------------------------- /Utilities/Sleep Commands/sleeping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/Sleep Commands/sleeping.txt -------------------------------------------------------------------------------- /Utilities/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/accept.txt -------------------------------------------------------------------------------- /Utilities/callmods-alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/callmods-alt.txt -------------------------------------------------------------------------------- /Utilities/callmods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/callmods.txt -------------------------------------------------------------------------------- /Utilities/code.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | Code: 3 | `$1+` 4 | -------------------------------------------------------------------------------- /Utilities/colorchange.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/colorchange.txt -------------------------------------------------------------------------------- /Utilities/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/deny.txt -------------------------------------------------------------------------------- /Utilities/dmclean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/dmclean.txt -------------------------------------------------------------------------------- /Utilities/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/faq.txt -------------------------------------------------------------------------------- /Utilities/me.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {!whois {user}} 3 | -------------------------------------------------------------------------------- /Utilities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/readme.md -------------------------------------------------------------------------------- /Utilities/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/report.txt -------------------------------------------------------------------------------- /Utilities/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/request.txt -------------------------------------------------------------------------------- /Utilities/scholar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/scholar.txt -------------------------------------------------------------------------------- /Utilities/sub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/sub.txt -------------------------------------------------------------------------------- /Utilities/subscribe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/subscribe.txt -------------------------------------------------------------------------------- /Utilities/suggest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Utilities/suggest.txt -------------------------------------------------------------------------------- /Utilities/todo.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | {!announce 350208497364762645 **__Todo {user}__** 3 | $1+} 4 | -------------------------------------------------------------------------------- /Utilities/waitwhat.txt: -------------------------------------------------------------------------------- 1 | {delete} 2 | **_```fix 3 | wait=what```_** 4 | -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/README.md -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/block.txt -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/code.txt -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/getcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/getcode.txt -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/unblock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/unblock.txt -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/unverify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/unverify.txt -------------------------------------------------------------------------------- /Verification Commands/Nex's Version/verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/Nex's Version/verify.txt -------------------------------------------------------------------------------- /Verification Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/README.md -------------------------------------------------------------------------------- /Verification Commands/getcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/getcode.txt -------------------------------------------------------------------------------- /Verification Commands/signupcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/signupcode.txt -------------------------------------------------------------------------------- /Verification Commands/unverify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/unverify.txt -------------------------------------------------------------------------------- /Verification Commands/verification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/verification.txt -------------------------------------------------------------------------------- /Verification Commands/verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Verification Commands/verify.txt -------------------------------------------------------------------------------- /Website Archive/CodeGenerator-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Website Archive/CodeGenerator-old.html -------------------------------------------------------------------------------- /Website Archive/CommandList-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Website Archive/CommandList-old.html -------------------------------------------------------------------------------- /Website Archive/freeze-old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Website Archive/freeze-old.html -------------------------------------------------------------------------------- /Website Archive/old-homepage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Website Archive/old-homepage/index.html -------------------------------------------------------------------------------- /Website Archive/old-homepage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/Website Archive/old-homepage/style.css -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/amp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/_layouts/amp.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/_layouts/homepage.html -------------------------------------------------------------------------------- /_sass/jekyll-theme-architect.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/_sass/jekyll-theme-architect.scss -------------------------------------------------------------------------------- /amp/CodeGenerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/CodeGenerator.md -------------------------------------------------------------------------------- /amp/Command List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/Command List.md -------------------------------------------------------------------------------- /amp/CreateOwn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/CreateOwn.md -------------------------------------------------------------------------------- /amp/chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/chat.md -------------------------------------------------------------------------------- /amp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/index.md -------------------------------------------------------------------------------- /amp/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/amp/variables.md -------------------------------------------------------------------------------- /bored.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/bored.html -------------------------------------------------------------------------------- /chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/chat.md -------------------------------------------------------------------------------- /discord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/discord.html -------------------------------------------------------------------------------- /files/404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/404.jpg -------------------------------------------------------------------------------- /files/Orange Logos/blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/blur.png -------------------------------------------------------------------------------- /files/Orange Logos/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/circles.png -------------------------------------------------------------------------------- /files/Orange Logos/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/glow.png -------------------------------------------------------------------------------- /files/Orange Logos/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/main.png -------------------------------------------------------------------------------- /files/Orange Logos/orangeback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/orangeback.png -------------------------------------------------------------------------------- /files/Orange Logos/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/Orange Logos/wood.png -------------------------------------------------------------------------------- /files/alone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/alone.png -------------------------------------------------------------------------------- /files/dcc-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/dcc-trans.png -------------------------------------------------------------------------------- /files/dcc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/dcc_logo.png -------------------------------------------------------------------------------- /files/dcc_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/dcc_logo_square.png -------------------------------------------------------------------------------- /files/pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/pending.png -------------------------------------------------------------------------------- /files/wumpus.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/wumpus.PNG -------------------------------------------------------------------------------- /files/z_Dyno_CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/files/z_Dyno_CC.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/index.md -------------------------------------------------------------------------------- /mDynocc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/mDynocc.html -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/sitemap.xml -------------------------------------------------------------------------------- /staff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/staff.md -------------------------------------------------------------------------------- /variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DynoCC/Dyno-Custom-Commands/HEAD/variables.md --------------------------------------------------------------------------------