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 280

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

View MORE
Open in Telegram


SPIDER X️ Telegram | DID YOU KNOW?

Date: |

The lead from Wall Street offers little clarity as the major averages opened lower on Friday and then bounced back and forth across the unchanged line, finally finishing mixed and little changed.The Dow added 33.18 points or 0.10 percent to finish at 34,798.00, while the NASDAQ eased 4.54 points or 0.03 percent to close at 15,047.70 and the S&P 500 rose 6.50 points or 0.15 percent to end at 4,455.48. For the week, the Dow rose 0.6 percent, the NASDAQ added 0.1 percent and the S&P gained 0.5 percent.The lackluster performance on Wall Street came on uncertainty about the outlook for the markets following recent volatility.

SPIDER X️ from us


Telegram SPIDER-X
FROM USA