the Random BLF Topic Chooser

Poll

what should occur when clicking the button?

webpage is replaced by the topic, using the 'back' button to go back
6 (21.4%)
random topic opens in new tab
22 (78.6%)

Total Members Voted: 28

Author Topic: the Random BLF Topic Chooser  (Read 3628 times)

quick page I put together which simply just sends you to a completely random BLF topic.
note that it sometimes comes up with pages that don't exist anymore. just use your browsers back button to return back to the random button.

https://bergle.me/blftopic/

post in this topic any weird/funny topics you come across!
this has nothing to do with the actual 'bergle' site. I'm just using the site to host this page.


« Last Edit: April 28, 2018, 08:39:29 AM by Drydess »




maybe make bergle stay open in one tab and then put the thread that it gives you into a separate tab?
also Warship of God of the moving rocks

https://forum.blockland.us/?topic=52533

YOU GUYS ARE USELESS! ITS BEEN A WEEK. :(

the vid is still up lol poor guy



maybe make bergle stay open in one tab and then put the thread that it gives you into a separate tab?
yeah i was considering that. ive added a poll



i'm taken look at the source code of it.

if you click the button, it redirects to BLF threads but it's randomnized with 10000 to 317000.

Code: [Select]
    //really simple code haha
    function picktopic() {
        var topic = "https://forum.blockland.us/?topic=" + Math.floor((Math.random() * 317000) + 10000);
        window.location.href = topic;
    }

i'm taken look at the source code of it.

if you click the button, it redirects to BLF threads but it's randomnized with 10000 to 317000.
so what you're saying is, this chooses a random blf thread for you? thanks the for info dude