Bitcoin Forum
July 30, 2026, 08:28:13 AM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [Script] Live topic lock detections tool  (Read 474 times)
Crypto Library (OP)
Legendary
*
Offline

Activity: 1666
Merit: 1186


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
July 28, 2026, 07:46:49 PM
Last edit: July 28, 2026, 10:49:34 PM by Crypto Library
Merited by tbct_mt2 (1)
 #1

Bitcointalk Locked Thread Popup + Live Detection


This topic came to my attention a minute ago, I wanted to create a script on it a long time ago, but due to lack of time and laziness I didn't do it.
But today I tried it with the help of AI.

The Feature of this script is-
  • If you accidentally go to create a post on a locked topic without noticing that the topic is locked, a popup message will appear informing you that the topic is locked.
  • Another special feature of this is that if you are writing a post on a topic and the moderator locks it, then within five seconds it will show you a popup notification that the topic has been locked.

    This way, at least you won't have to waste your time after the topic is locked.


And to use this script, you need to download tampermonkey and then open it.
then,
Create a new script> copy this code and paste and save> now enjoy


Code:
// ==UserScript==
// @name         Bitcointalk Locked Thread Popup + Live Detection
// @namespace    https://bitcointalk.org/
// @version      1.0
// @description  Show a modern popup if a thread is locked or becomes locked while writing.
// @author       Crypto Library
// @homepageURL  https://bitcointalk.org/
// @supportURL   https://bitcointalk.org/index.php?action=profile
// @match        https://bitcointalk.org/index.php?action=post*
// @grant        GM_xmlhttpRequest
// @connect      bitcointalk.org
// ==/UserScript==

(function () {
    'use strict';

    const LOCK_TEXT = "This topic is locked, so you can't actually reply!";
    const CHECK_INTERVAL = 5000;

    let popupShown = false;

    // ------------------------
    // Popup
    // ------------------------

    function showPopup() {

        if (popupShown) return;
        popupShown = true;

        const overlay = document.createElement("div");

        overlay.style.cssText = `
            position:fixed;
            inset:0;
            background:rgba(0,0,0,.55);
            display:flex;
            justify-content:center;
            align-items:center;
            z-index:999999;
            animation:fadeIn .25s ease;
        `;

        const popup = document.createElement("div");

        popup.style.cssText = `
            width:420px;
            max-width:90%;
            background:#fff;
            border-radius:14px;
            padding:28px;
            text-align:center;
            box-shadow:0 12px 35px rgba(0,0,0,.35);
            animation:pop .25s ease;
            font-family:Arial,sans-serif;
        `;

        popup.innerHTML = `
            <div style="font-size:60px;">🔒</div>

            <h2 style="margin:10px 0;color:#d32f2f;">
                Thread Locked
            </h2>

            <p style="font-size:15px;color:#444;line-height:1.6;">
                This topic has been locked.<br><br>
                You cannot submit your reply anymore.
            </p>

            <button id="btcPopupOK"
                style="
                    margin-top:20px;
                    padding:10px 30px;
                    border:none;
                    border-radius:8px;
                    background:#1976d2;
                    color:white;
                    font-size:15px;
                    cursor:pointer;
                ">
                OK
            </button>
        `;

        overlay.appendChild(popup);
        document.body.appendChild(overlay);

        function closePopup() {
            overlay.remove();
        }

        document.getElementById("btcPopupOK").onclick = closePopup;

        document.addEventListener("keydown", function esc(e){
            if(e.key==="Escape"){
                closePopup();
                document.removeEventListener("keydown",esc);
            }
        });

    }

    // ------------------------
    // CSS
    // ------------------------

    const style=document.createElement("style");

    style.textContent=`
        @keyframes fadeIn{
            from{opacity:0;}
            to{opacity:1;}
        }

        @keyframes pop{
            from{
                transform:scale(.8);
                opacity:0;
            }
            to{
                transform:scale(1);
                opacity:1;
            }
        }
    `;

    document.head.appendChild(style);

    // ------------------------
    // Already Locked?
    // ------------------------

    if(document.body.innerText.includes(LOCK_TEXT)){
        showPopup();
    }

    // ------------------------
    // Live Detection
    // ------------------------

    const match = location.href.match(/topic=(\d+)/);

    if(!match) return;

    const topicId = match[1];

    let lastState = false;

    function parseLocked(html){

        const doc = new DOMParser().parseFromString(html,"text/html");

        const links = [...doc.querySelectorAll("a")];

        const hasReply = links.some(a=>{

            return a.textContent.trim().toLowerCase()==="reply";

        });

        return !hasReply;

    }

    function checkThread(){

        GM_xmlhttpRequest({

            method:"GET",

            url:`https://bitcointalk.org/index.php?topic=${topicId}.0&_=${Date.now()}`,

            headers:{
                "Cache-Control":"no-cache"
            },

            onload:function(r){

                if(r.status!==200) return;

                const locked = parseLocked(r.responseText);

                if(!lastState && locked){

                    showPopup();

                }

                lastState = locked;

            }

        });

    }

    checkThread();

    setInterval(checkThread,CHECK_INTERVAL);

})();

Output

For the first part----
1. Locked topic





2. When I or you are going to click on the quote button


3. The response by the script.





For the second part I have created a topic on archive board:

1.


2. Then creating duplicate tab of above tab and then click on quote


3.Then typing somthing as post 


4. And going back to the previous tab1st tab and clicking on the lock topic


5. Again coming back to the duplicate tab where I types somthing as post and the result(in 5 second)



I hope you get that I had to test this manually, cz the moderator did not lock any of the topics I posted. Roll Eyes

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
tbct_mt2
Legendary
*
Offline

Activity: 3052
Merit: 1049



View Profile
July 28, 2026, 07:52:03 PM
 #2

2. Another special feature of this is that if you are writing a post on a topic and the moderator locks it, then within five seconds it will show you a popup notification that the topic has been locked.
This way, at least you won't have to waste your time after the topic is locked.
Updating the topic lock/unlock status every five-seconds is very amazing.

But if the topic is locked by the topic starter, is the popup notification appears the same way if it was locked by a moderator?
I guess it works the same and likely you forgot about topic starter when writing this.

Another thing
How about a topic deletion when I am writing my thread?

 
 RAZED  
| 
 100% 
WELCOME
BONUS
█████████████████████
█████████████████████████
████████████▀░░░░▀███████
██████████▀░░▄▀▀▄░░▀█████
██████████▄▄██▄▄██▄░▀████
█████▀░░░░░░░▀██░░█░░████
████░░████▀▀█░░██▀░░▄████
████░░████▄▄█░░█░░▄██████
████░░█▀▀████░░██████████
████░░█▄▄███▀░░██████████
█████▄░░░░░░░▄███████████
█████████████████████████
█████████████████████
█████████████████████
█████████████████████████
██████████▀▀░░░░░▀▀██████
████████▀░░▄▄█░░▀▄░░█████
██████▀░░▄█████▄░░▀░░████
█████░░▄████▄▀░░█▄▄░░████
████░░▄███▄▀░░▄▀██▀░░████
████░░▀▀██░░▄▀███▀░░█████
████░░▄░░▀█████▀░░▄██████
█████░░▀▄░░█▀▀░░▄████████
██████▄▄░░░░░▄▄██████████
█████████████████████████
█████████████████████
| 
 NO 
KYC
| 
  RAZE THE LIMITS    PLAY NOW     
oll
Full Member
***
Offline

Activity: 313
Merit: 150



View Profile
July 28, 2026, 07:56:27 PM
 #3


This way, at least you won't have to waste your time after the topic is locked.

And to use this script, you need to download tampermonkey and then open it.
then,

I think that any forum participant will understand me that it is always a shame to write a big post and after 15 minutes, when it is already doomed, to see that the topic is closed. Thank you for taking the time to create the script.
Crypto Library (OP)
Legendary
*
Offline

Activity: 1666
Merit: 1186


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
July 28, 2026, 08:42:29 PM
Last edit: July 28, 2026, 09:27:21 PM by Crypto Library
 #4

But if the topic is locked by the topic starter, is the popup notification appears the same way if it was locked by a moderator?
I guess it works the same and likely you forgot about topic starter when writing this.
Yes and Yes

Quote
Another thing
How about a topic deletion when I am writing my thread?
I'm still working on this, I've seen it working successfully on other locked topics, and also on the others topic I made in the previous time even in meta board.

But when I went for quote this only thread, it showed the locked pop-up message even when it's unlocked. If I'm not mistaken, you explained this matter? After a long time, I realized where the main problem really is, and that is What I originally thought was a bug is actually not a bug. It's actually the source code used in this topic.

Anyway, have you tried this? For try this instantly, open your own previous topic in a tab, quote it there, type something, and then go to that topic in another tab, lock that topic, then come back to the quoted tab and if the pop-up message appears. And if there is any bug, please let me know.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
libert19
Legendary
*
Offline

Activity: 3304
Merit: 1177


Signatures are not endorsements, DYOR!


View Profile WWW
July 28, 2026, 08:54:08 PM
 #5

I do not mean to be mean (woa! Woa! Two means but different meanings — this is some wordplay isn't it). But, the moment I saw the title, I saw the author — I knew it was going to be AI.

The presence that Ninja and Powerglove have, is next to none that I don't even expect much unless it's from those two.

Crypto Library (OP)
Legendary
*
Offline

Activity: 1666
Merit: 1186


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
July 28, 2026, 09:16:21 PM
 #6

I do not mean to be mean (woa! Woa! Two means but different meanings — this is some wordplay isn't it). But, the moment I saw the title, I saw the author — I knew it was going to be AI.
Obviously I used AI to create this script, and I already mentioned it on the starting point of this topic,,,, I am not really a pro at programming or coding; my knowledge is tiny here, and that is why I have spent almost three hours prompting and debugging at my current time to get the last output which is some how effective.
But even then, if there are more bugs found, Kindly let me know. And about the author on the script, I used my name because of that 3hours.

Quote
The presence that Ninja and Powerglove have, is next to none that I don't even expect much unless it's from those two.
No single word about them, they are the real boss here, and that's why I've already mentioned them for doing the big job here.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
Upgrade00
Legendary
*
Online Online

Activity: 2828
Merit: 2905


Community Manager - Brand Promotions ✅


View Profile WWW
July 28, 2026, 09:23:53 PM
 #7

  • If you accidentally go to create a post on a locked topic without noticing that the topic is locked, a popup message will appear informing you that the topic is locked.
  • Another special feature of this is that if you are writing a post on a topic and the moderator locks it, then within five seconds it will show you a popup notification that the topic has been locked.
• The forum already fixed the first part. The reply button does not show up if the thread is locked and if you click on the quote button above any reply there you'll see the message at the top telling you that you cannot actually reply there.

• The second part will be useful for most. I have experienced that a few times, typing put a reply and then hitting a wall when j try to post it. Can you share some visuals about how the pop up appears on the screen?[/list]

███████████████████████████
███████▄████████████▄██████
████████▄████████▄████████
███▀█████▀▄███▄▀█████▀███
█████▀█▀▄██▀▀▀██▄▀█▀█████
███████▄███████████▄███████
███████████████████████████
███████▀███████████▀███████
████▄██▄▀██▄▄▄██▀▄██▄████
████▄████▄▀███▀▄████▄████
██▄███▀▀█▀██████▀█▀███▄███
██▀█▀████████████████▀█▀███
███████████████████████████
.
.Duelbits PREDICT..
█████████████████████████
█████████████████████████
███████████▀▀░░░░▀▀██████
██████████░░▄████▄░░████
█████████░░████████░░████
█████████░░████████░░████
█████████▄▀██████▀▄████
████████▀▀░░░▀▀▀▀░░▄█████
██████▀░░░░██▄▄▄▄████████
████▀░░░░▄███████████████
█████▄▄█████████████████
█████████████████████████
█████████████████████████
.
.WHERE EVERYTHING IS A MARKET..
█████
██
██







██
██
██████
Will Bitcoin hit $200,000
before January 1st 2027?

    No @1.15         Yes @6.00    
█████
██
██







██
██
██████

  CHECK MORE > 
Crypto Library (OP)
Legendary
*
Offline

Activity: 1666
Merit: 1186


Leading Crypto Sports Betting & Casino Platform


View Profile WWW
July 28, 2026, 10:38:43 PM
 #8

  • If you accidentally go to create a post on a locked topic without noticing that the topic is locked, a popup message will appear informing you that the topic is locked.
  • Another special feature of this is that if you are writing a post on a topic and the moderator locks it, then within five seconds it will show you a popup notification that the topic has been locked.
• The forum already fixed the first part. The reply button does not show up if the thread is locked and if you click on the quote button above any reply there you'll see the message at the top telling you that you cannot actually reply there.
Many times when I use https://loyce.club/notifications/ or telegram notification bot it takes me directly to the post I was mentioned in. And on that time usually the top side of the forum page is out of my and your eyes, and for this reason the reply option does not even come up. And since now you can quote from locked topics in the forum, many times it is seen that I mistakenly write a post there and later realize that the topic has been locked when I post.

Quote
• The second part will be useful for most. I have experienced that a few times, typing put a reply and then hitting a wall when j try to post it. Can you share some visuals about how the pop up appears on the screen?
Sure....


For the first part----
1. Locked topic





2. When I or you are going to click on the quote button


3. The response by the script.





For the second part I have created a topic on archive board:

1.


2. Then creating duplicate tab of above tab and then click on quote


3.Then typing somthing as post 


4. And going back to the previous tab1st tab and clicking on the lock topic


5. Again coming back to the duplicate tab where I types somthing as post and the result(in 5 second)



I hope you get that I had to test this manually, cz the moderator did not lock any of the topics I posted. Roll Eyes

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
tbct_mt2
Legendary
*
Offline

Activity: 3052
Merit: 1049



View Profile
July 29, 2026, 04:41:10 AM
 #9

But if the topic is locked by the topic starter, is the popup notification appears the same way if it was locked by a moderator?
I guess it works the same and likely you forgot about topic starter when writing this.
Yes and Yes
Thanks for confirmation. So it's time for you to edit the userscript feature description a little bit.

From "Another special feature of this is that if you are writing a post on a topic and the moderator locks it, then within five seconds"
to "Another special feature of this is that if you are writing a post on a topic and the moderator or topic starter locks it, then within five seconds"

Quote
Anyway, have you tried this?
No, I have yet tried it and I don't have intention to try it.

Situations for this to happen (a topic starter or moderator) lock a thread or delete a thread when I am posting is not too high but anyway you made a good userscript for people who need it. Keep up your good work.

 
 RAZED  
| 
 100% 
WELCOME
BONUS
█████████████████████
█████████████████████████
████████████▀░░░░▀███████
██████████▀░░▄▀▀▄░░▀█████
██████████▄▄██▄▄██▄░▀████
█████▀░░░░░░░▀██░░█░░████
████░░████▀▀█░░██▀░░▄████
████░░████▄▄█░░█░░▄██████
████░░█▀▀████░░██████████
████░░█▄▄███▀░░██████████
█████▄░░░░░░░▄███████████
█████████████████████████
█████████████████████
█████████████████████
█████████████████████████
██████████▀▀░░░░░▀▀██████
████████▀░░▄▄█░░▀▄░░█████
██████▀░░▄█████▄░░▀░░████
█████░░▄████▄▀░░█▄▄░░████
████░░▄███▄▀░░▄▀██▀░░████
████░░▀▀██░░▄▀███▀░░█████
████░░▄░░▀█████▀░░▄██████
█████░░▀▄░░█▀▀░░▄████████
██████▄▄░░░░░▄▄██████████
█████████████████████████
█████████████████████
| 
 NO 
KYC
| 
  RAZE THE LIMITS    PLAY NOW     
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!