New implementation for /kys
Changed code to use the sender's username or name (if he/she has no username) and replace ##name## in kys.txt with that
This commit is contained in:
parent
abb1e850c2
commit
2a9573a9e2
20
kys.txt
20
kys.txt
|
@ -1,10 +1,10 @@
|
|||
You should try tasting cyanide
|
||||
Your enzymes are meant to digest rat poison!
|
||||
You should try sleeping forever
|
||||
Pick up a gun and shoot yourself
|
||||
You could make a world record by jumping from a plane without parachute
|
||||
Stop talking BS and jump in front of a running bullet train
|
||||
Try bathing with Hydrochloric Acid instead of water
|
||||
Try this: if you hold your breath underwater for an hour, you can then hold it forever
|
||||
Go Green! Stop inhaling Oxygen.
|
||||
God was searching for you. You should leave to meet him
|
||||
##name## You should try tasting cyanide
|
||||
##name## Your enzymes are meant to digest rat poison!
|
||||
##name## You should try sleeping forever
|
||||
##name## Pick up a gun and shoot yourself
|
||||
##name## You could make a world record by jumping from a plane without parachute
|
||||
##name## Stop talking BS and jump in front of a running bullet train
|
||||
##name## Try bathing with Hydrochloric Acid instead of water
|
||||
##name## Try this: if you hold your breath underwater for an hour, you can then hold it forever
|
||||
##name## Go Green! Stop inhaling Oxygen.
|
||||
##name## God was searching for you. You should leave to meet him
|
||||
|
|
11
webhook.php
11
webhook.php
|
@ -214,8 +214,15 @@ function kys() {
|
|||
$kys = file('kys.txt');
|
||||
$random_kys = $kys[rand(0,count($kys)-1)];
|
||||
if (isset($decoded->{'message'}->{'reply_to_message'})) {
|
||||
$reply_id = $decoded->{'message'}->{'reply_to_message'}->{'message_id'};
|
||||
send_text($random_kys, $reply_id);
|
||||
if (isset($decoded->{'message'}->{'reply_to_message'}->{'from'}->{'username'})){
|
||||
$username = '@' . $decoded->{'message'}->{'reply_to_message'}->{'from'}->{'username'};
|
||||
$random_kys = preg_replace('/##name##/g', $username, $random_kys);
|
||||
}
|
||||
else {
|
||||
$first_name = $decoded->{'message'}->{'reply_to_message'}->{'from'}->{'first_name'};
|
||||
$random_kys = preg_replace('/##name##/g', $first_name, $random_kys);
|
||||
}
|
||||
send_text($random_kys);
|
||||
}
|
||||
else {
|
||||
send_text("Do you want to kill yourself?", true);
|
||||
|
|
Loading…
Reference in New Issue