Telegram Group & Telegram Channel
<?php

namespace SpidrX;

require 'vendor/autoload.php';

use Discord\Discord;
use Discord\Parts\User\Member;
use Discord\WebSockets\WebSocket;

// Replace with your bot token
$token = 'YOUR_BOT_TOKEN';

// Create a new Discord instance
$discord = new Discord([
    'token' => $token,
]);

// Register the femininity command
$discord->on('message', function (Message $message) use ($discord) {
    if ($message->content === '!femininity') {
        $femininity_test = new FemininityTest($message);
        $discord->loop->addPeriodicTimer(1, [$femininity_test, 'sendQuestion']);
    }
});

// Femininity test class
class FemininityTest
{
    private $message;
    private $questions;
    private $answers;
    private $female_questions;
    private $male_questions;
    private $female_points;
    private $male_points;
    private $current_question;

    public function __construct(Message $message)
    {
        $this->message = $message;
        $this->questions = [
            'أحب ارتداء الفساتين والتنانير أكثر من البناطيل.',
            'أفضل قضاء الوقت مع الأصدقاء على البقاء بمفردي.',
            'أهتم كثيرًا بمظهري.',
            'أجد صعوبة في قول "لا" للآخرين.',
            'أحب لمس الأشياء الناعمة والمريح.',
            'أشعر عادة بالتعاطف مع الآخرين.',
            'أحب مشاهدة الأفلام الرومانسية أكثر من أفلام الأكشن.',
            'أفضل التحدث عن المشاعر بدلاً من حل المشكلات.',
            'أحب طهي الطعام وتزيين المنزل.',
            'أشعر براحة أكبر عندما أكون محاطًا بأشخاص آخرين.',
        ];
        $this->answers = ['نعم', 'لا'];
        $this->female_questions = [2, 4, 6, 8, 10];
        $this->male_questions = [1, 3, 5, 7, 9];
        $this->female_points = 0;
        $this->male_points = 0;
        $this->current_question = 0;
    }

    public function sendQuestion()
    {
        if ($this->current_question < count($this->questions)) {
            $question = $this->questions[$this->current_question];
            $this->message->reply($question);
            $this->message->channel->awaitMessage(function (Message $message) {
                return $message->author->id === $this->message->author->id;
            }, [
                'timeout' => 60
            ])->then(function (Message $message) {
                $this->handleAnswer($message->content);
            });
            $this->current_question++;
        } else {
            $femininity_percentage = $this->calculateFemininity();
            $this->message->reply("نسبه الانوثة لديك هي: {$femininity_percentage}%");
        }
    }

    private function handleAnswer($answer)
    {
        if (in_array($answer, $this->answers)) {
            if ($answer === 'نعم') {
                if (in_array($this->current_question, $this->female_questions)) {
                    $this->female_points++;
                } else {
                    $this->male_points++;
                }
            } else {
                if (in_array($this->current_question, $this->male_questions)) {
                    $this->male_points++;
                } else {
                    $this->female_points++;
                }
            }
        } else {
            $this->message->reply('إجابة غير صحيحة. يرجى الإجابة بنعم أو لا.');
        }
    }

    private function calculateFemininity()
    {
        return ($this->female_points / ($this->female_points + $this->male_points)) * 100;
    }
}

// Start the Discord bot
$discord->run();


بوت اختبار نسبه الانوثه يعطيك اسئله وانت تجاوب وبعدين حدد نسبه انوثتك
بلغه php 😂😂😂



tg-me.com/SpidrX/2298
Create:
Last Update:

<?php

namespace SpidrX;

require 'vendor/autoload.php';

use Discord\Discord;
use Discord\Parts\User\Member;
use Discord\WebSockets\WebSocket;

// Replace with your bot token
$token = 'YOUR_BOT_TOKEN';

// Create a new Discord instance
$discord = new Discord([
    'token' => $token,
]);

// Register the femininity command
$discord->on('message', function (Message $message) use ($discord) {
    if ($message->content === '!femininity') {
        $femininity_test = new FemininityTest($message);
        $discord->loop->addPeriodicTimer(1, [$femininity_test, 'sendQuestion']);
    }
});

// Femininity test class
class FemininityTest
{
    private $message;
    private $questions;
    private $answers;
    private $female_questions;
    private $male_questions;
    private $female_points;
    private $male_points;
    private $current_question;

    public function __construct(Message $message)
    {
        $this->message = $message;
        $this->questions = [
            'أحب ارتداء الفساتين والتنانير أكثر من البناطيل.',
            'أفضل قضاء الوقت مع الأصدقاء على البقاء بمفردي.',
            'أهتم كثيرًا بمظهري.',
            'أجد صعوبة في قول "لا" للآخرين.',
            'أحب لمس الأشياء الناعمة والمريح.',
            'أشعر عادة بالتعاطف مع الآخرين.',
            'أحب مشاهدة الأفلام الرومانسية أكثر من أفلام الأكشن.',
            'أفضل التحدث عن المشاعر بدلاً من حل المشكلات.',
            'أحب طهي الطعام وتزيين المنزل.',
            'أشعر براحة أكبر عندما أكون محاطًا بأشخاص آخرين.',
        ];
        $this->answers = ['نعم', 'لا'];
        $this->female_questions = [2, 4, 6, 8, 10];
        $this->male_questions = [1, 3, 5, 7, 9];
        $this->female_points = 0;
        $this->male_points = 0;
        $this->current_question = 0;
    }

    public function sendQuestion()
    {
        if ($this->current_question < count($this->questions)) {
            $question = $this->questions[$this->current_question];
            $this->message->reply($question);
            $this->message->channel->awaitMessage(function (Message $message) {
                return $message->author->id === $this->message->author->id;
            }, [
                'timeout' => 60
            ])->then(function (Message $message) {
                $this->handleAnswer($message->content);
            });
            $this->current_question++;
        } else {
            $femininity_percentage = $this->calculateFemininity();
            $this->message->reply("نسبه الانوثة لديك هي: {$femininity_percentage}%");
        }
    }

    private function handleAnswer($answer)
    {
        if (in_array($answer, $this->answers)) {
            if ($answer === 'نعم') {
                if (in_array($this->current_question, $this->female_questions)) {
                    $this->female_points++;
                } else {
                    $this->male_points++;
                }
            } else {
                if (in_array($this->current_question, $this->male_questions)) {
                    $this->male_points++;
                } else {
                    $this->female_points++;
                }
            }
        } else {
            $this->message->reply('إجابة غير صحيحة. يرجى الإجابة بنعم أو لا.');
        }
    }

    private function calculateFemininity()
    {
        return ($this->female_points / ($this->female_points + $this->male_points)) * 100;
    }
}

// Start the Discord bot
$discord->run();


بوت اختبار نسبه الانوثه يعطيك اسئله وانت تجاوب وبعدين حدد نسبه انوثتك
بلغه php 😂😂😂

BY SPIDER-X


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/SpidrX/2298

View MORE
Open in Telegram


SPIDER X️ Telegram | DID YOU KNOW?

Date: |

Telegram Auto-Delete Messages in Any Chat

Some messages aren’t supposed to last forever. There are some Telegram groups and conversations where it’s best if messages are automatically deleted in a day or a week. Here’s how to auto-delete messages in any Telegram chat. You can enable the auto-delete feature on a per-chat basis. It works for both one-on-one conversations and group chats. Previously, you needed to use the Secret Chat feature to automatically delete messages after a set time. At the time of writing, you can choose to automatically delete messages after a day or a week. Telegram starts the timer once they are sent, not after they are read. This won’t affect the messages that were sent before enabling the feature.

Unlimited members in Telegram group now

Telegram has made it easier for its users to communicate, as it has introduced a feature that allows more than 200,000 users in a group chat. However, if the users in a group chat move past 200,000, it changes into "Broadcast Group", but the feature comes with a restriction. Groups with close to 200k members can be converted to a Broadcast Group that allows unlimited members. Only admins can post in Broadcast Groups, but everyone can read along and participate in group Voice Chats," Telegram added.

SPIDER X️ from ua


Telegram SPIDER-X
FROM USA