JustPaste
HomeCategoriesAboutDonateContactTerms of UsePrivacy Policy
JustPaste

Free online notepad — write and share instantly

Navigate

  • Home
  • Timeline
  • Categories

Info

  • About
  • Donate
  • Contact

Legal

  • Terms of Use
  • Privacy Policy

© 2026 JustPaste.app. All rights reserved.

Made with ♥ by JustPaste

Ghost gg | JustPaste.app
about 1 month ago0 views
💻Technology

Ghost gg

<!DOCTYPE html>
<html>
<head>
    <title>FF Trainer Pro</title>
    <style>
        body {
            background: black;
            color: #00ffcc;
            font-family: Arial;
            text-align: center;
            padding: 20px;
        }

        h1 {
            text-shadow: 0 0 10px #00ffcc;
        }

        .box {
            border: 1px solid #00ffcc;
            padding: 15px;
            margin: 10px;
            border-radius: 10px;
            box-shadow: 0 0 10px #00ffcc;
        }

        input {
            width: 80%;
            padding: 10px;
            margin: 8px;
            background: black;
            border: 1px solid #00ffcc;
            color: #00ffcc;
        }

        button {
            padding: 12px;
            width: 85%;
            background: #00ffcc;
            color: black;
            font-weight: bold;
            border: none;
            margin-top: 10px;
        }

        #resultado {
            margin-top: 20px;
            font-size: 18px;
        }

        .scan {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0% {opacity: 1;}
            50% {opacity: 0.3;}
            100% {opacity: 1;}
        }
    </style>
</head>

<body>

<h1>FF TRAINER PRO</h1>

<div class="box">
    <p class="scan">● ANALISANDO DADOS...</p>

    <input type="number" id="kills" placeholder="Kills">
    <input type="number" id="hs" placeholder="Headshots">
    <input type="number" id="tiros" placeholder="Tiros dados">
    <input type="number" id="acertos" placeholder="Acertos">

    <button onclick="analisar()">ANALISAR DESEMPENHO</button>
</div>

<div id="resultado"></div>

<script>
function analisar() {
    let kills = parseInt(document.getElementById("kills").value);
    let hs = parseInt(document.getElementById("hs").value);
    let tiros = parseInt(document.getElementById("tiros").value);
    let acertos = parseInt(document.getElementById("acertos").value);

    if (!kills || !tiros) {
        document.getElementById("resultado").innerHTML = "Preencha todos os campos!";
        return;
    }

    let hsRate = (hs * 100) / kills;
    let precisao = (acertos * 100) / tiros;

    let nivel = "";
    let dica = "";

    if (hsRate < 30) {
        nivel = "INICIANTE";
        dica = "Aumente a sensibilidade geral e puxe mais rápido.";
    } else if (hsRate < 60) {
        nivel = "INTERMEDIÁRIO";
        dica = "Ajuste Red Dot e controle melhor o dedo.";
    } else {
        nivel = "PRO";
        dica = "Mantenha consistência e refine a movimentação.";
    }

    document.getElementById("resultado").innerHTML =
        "🎯 HS: " + hsRate.toFixed(1) + "%<br>" +
        "📊 Precisão: " + precisao.toFixed(1) + "%<br>" +
        "🏆 Nível: " + nivel + "<br><br>" +
        "💡 Dica: " + dica;
}
</script>

</body>
</html>

⚠️Content was pasted as plain text and auto-formatted as a code block. Use the Code Block button in the editor for proper formatting.

← Back to timeline