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
#!/usr/bin/python | |
# blackwidow_enable.py | |
# | |
# Enables the M1-5 and FN keys to send scancodes on the Razer BlackWidow | |
# and BlackWidow Ultimate keyboards. | |
# | |
# Requires the PyUSB library. | |
# | |
# By Michael Fincham <[email protected]> 2012-03-05 |
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
package me.hakej.hagot.hagot; | |
import me.hakej.hagot.hagot.commands.HagotCommand; | |
import me.hakej.hagot.hagot.commands.HealMe; | |
import me.hakej.hagot.hagot.commands.Test; | |
import me.hakej.hagot.hagot.commands.Toggle; | |
import org.bukkit.ChatColor; | |
import org.bukkit.command.Command; | |
import org.bukkit.command.CommandExecutor; | |
import org.bukkit.command.CommandSender; |
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
package me.hakej.hagot.hagot; | |
import me.hakej.hagot.hagot.commands.HagotCommand; | |
import me.hakej.hagot.hagot.commands.HealMe; | |
import me.hakej.hagot.hagot.commands.Test; | |
import me.hakej.hagot.hagot.commands.Toggle; | |
import org.bukkit.ChatColor; | |
import org.bukkit.command.Command; | |
import org.bukkit.command.CommandExecutor; | |
import org.bukkit.command.CommandSender; |
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
const commando = require('discord.js-commando'); | |
class DiceRollCommand extends commando.Command { | |
contructor(client) { | |
super(client, { | |
name: 'roll', | |
group: 'random', | |
memberName: 'roll', | |
description: 'Rolls a dice' | |
}); |