Remove the random bullshit, and made bonk say username instead of pinging them
This commit is contained in:
parent
6f141f1736
commit
8f924ed0dd
4 changed files with 1 additions and 13 deletions
0
a
0
a
2
index.js
2
index.js
|
@ -137,7 +137,7 @@ client.on("interactionCreate", (int) => {
|
|||
var mem2 = int.guild.members.cache.get(int.options.getUser("user").id);
|
||||
mem2.kick(int.options.getString("reason"));
|
||||
} else if(int.commandName == "bonk"){
|
||||
int.reply("<@!" + int.options.getUser("user").id + "> <a:getbonked:912473583488499743>");
|
||||
int.reply(`*${int.user.username} bonked ${int.options.getUser("user").username}* <a:getbonked:912473583488499743>`);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
11
led.py
11
led.py
|
@ -1,11 +0,0 @@
|
|||
import RPi.GPIO as GPIO
|
||||
import time
|
||||
GPIO.setmode(GPIO.BOARD)
|
||||
GPIO.setup(7, GPIO.OUT)
|
||||
# loop through 50 times, on/off for 1 second
|
||||
for i in range(50):
|
||||
GPIO.output(7,True)
|
||||
time.sleep(1)
|
||||
GPIO.output(7,False)
|
||||
time.sleep(1)
|
||||
GPIO.cleanup()
|
1
note
1
note
|
@ -1 +0,0 @@
|
|||
Muahahahahahhahah
|
Loading…
Reference in a new issue