This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="timer"> | |
| <div class="space"></div> | |
| <label> | |
| <input type="text"> | |
| <span id='timer'></span> | |
| </label> | |
| <div class="space"></div> | |
| </div> | |
| <div class="buttons"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -----BEGIN PRIVATE KEY----- | |
| MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDdl4se5sdwDBuM | |
| 9NGm6ZxpDd8LuDGRwTNVdaPfiUHtlUoI9oc48LqRCEKcPOJjRYsMXDf9NPwAtv86 | |
| fxd3qB/oCw8VWdEY4IIwOO7MUQwYS+VrQoiEQVP1Xzf1uwqFRiQjGdlOwde6UpyN | |
| SW8YvtT1zqHc+AaUW9WPSKAjlZTuDCrIZCAKDWTBllACnXZkpT2iYIQvc9xjx+CE | |
| +/gVm7JdJ29k0zoAk8fbPr3BG6uW48nCt9U9ZNJ2yLub4Llsp8VYdmzLo7dDRe6J | |
| ymsDc06jxyNFgbA2Km051FxKpyDYehqmnafNWxDW7OERUOfvA5RTH+LltwrKfWbL | |
| 6Ngl7tFnAgMBAAECggEAV/G/GyKIYKXNgWHgmxf4JZGFxkbyFWDSGMa5pQv6iGpJ | |
| mckN3cFcqhbXKN7ZEoEVMHChH/MZWMdIAFVUYP7uus84y0Z8QB1KTg0qaRh5bmMg | |
| yDL9r0+mHKoPsYzsHfy6dtvZbPJtxdrnmwNb/jwulOfPQb2GDvdriJRQSg8hrl+U |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| --color-static-black: #000; | |
| --color-static-white: #fff; | |
| --color-static-blue: #1473e6; | |
| --color-static-gray-50: #fff; | |
| --color-static-gray-75: #fff; | |
| --color-static-gray-100: #fff; | |
| --color-static-gray-200: #f4f4f4; | |
| --color-static-gray-300: #eaeaea; | |
| --color-static-gray-400: #d3d3d3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Credit: RealSGII2 (2021) | |
| ; Name: abcdefKeyboard.ahk | |
| ; Description: Makes a QWERTY keyboard into an ABCDEF keyboard. | |
| #NoEnv | |
| SendMode Input | |
| SetWorkingDir %A_ScriptDir% | |
| #if !GetKeyState("Shift", "P") && !GetKeyState("CapsLock", "T") | |
| q::a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --background-primary: #2a2f39; | |
| --background-secondary: #21252b; | |
| --border-primary: rgba(0, 0, 0, 0.2); | |
| --border-heavy: rgba(0, 0, 0, 0.32); | |
| --border-light: rgba(0, 0, 0, 0.1); | |
| --color-brand: #4d78cc; | |
| --shadow-small: 0 0 3px 0 rgba(0, 0, 0, 0.3); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Command("dmhelp"), Alias("dmbotinfo", "dmcommands")] | |
| public async Task DMHelp() | |
| { | |
| EmbedBuilder extraHelpEmbed = new EmbedBuilder(); | |
| extraHelpEmbed.AddField("Wiki", "[Click Here](https://github.com/Blackcatmaxy/Botcatmaxy/wiki)", true); | |
| extraHelpEmbed.AddField("Submit bugs, enhancements, and contribute", "[Click Here](http://bot.blackcatmaxy.com)", true); | |
| EmbedBuilder embed = new EmbedBuilder | |
| { | |
| Title = "Commands", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| client.on("message", async message => { | |
| if (message.content === prefix + "ping") { | |
| const m = await message.channel.send("Connexion...") | |
| await m.edit(`Type: Etablie ! Votre ping est de ${Math.round(client.ping)}ms`) | |
| } | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local CS = game:GetService("CollectionService"); | |
| local TS = game:GetService("TweenService") | |
| local OPEN_SOUND = "rbxassetid://3272350111"; | |
| local CLOSE_SOUND = "rbxassetid://3272350111"; | |
| local LabDoor = {}; | |
| LabDoor.__index = LabDoor; | |
| LabDoor.TAGNAME = "LabDoor"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .majick-button { | |
| cursor: pointer; | |
| box-sizing: border-box; | |
| background-position: 0 100%; | |
| background-size: 200% 200%; | |
| outline: 0; | |
| display: -webkit-inline-box; | |
| display: inline-flex; | |
| padding: 0 1.2rem; | |
| height: 42px; |
NewerOlder