Redirect Threads Code:

Global Footer -OR- the footers of the boards in which you wish to redirect threads:

<script type="text/javascript"><!--
// Redirect Threads
// Created by Charles Stover (a.k.a. GAMEchief, SegaDragon)
// http://gamingmedley.com
var threadRedirects = new Array(), threadId = 0;

// threadRedirects[THREAD-ID] = "URL TO REDIRECTION";
threadRedirects[50] = "http://gamingmedley.com";
threadRedirects[69] = "http://proboards.gamingmedley.com/codes.php";
threadRedirects[101] = "http://files.gamingmedley.com/Chrono_Trigger_DS/";
threadRedirects[321] = "http://youtube.com/watch?v=oHg5SJYRHA0"; // RickRoll

// No need to modify below here.
checkRedirUrl = function(u)
{
    return (((i = u.match(/thread=(\d+)/)) && (i = parseInt(i[1])) && (threadRedirects[i])) ? i : null);
}
if (threadId = checkRedirUrl(location.href))
    location.href = threadRedirects[threadId];
var a, anchs = document.getElementsByTagName('a');
for (a = 0; a < anchs.length; a++)
{
    if ((h = anchs[a].getAttribute("href")) && (threadId = checkRedirUrl(h)))
    {
        anchs[a].setAttribute("href", threadRedirects[threadId]);
        anchs[a].parentNode.parentNode.parentNode.onclick = function()
        {
            if (!pb_bubble)
                location.href = this.getElementsByTagName('a')[0].getAttribute("href");
        }
    }
}
//--></script>

Code Database:

If you have a Code Database (a forum that serves as a collection of scripts) on your message board, you may paste the following code into that forum to add it your own code list.

[b]Title:[/b] [url=http://proboards.gamingmedley.com/codes/redirect-threads.html]Redirect Threads[/url]
[b]Creator:[/b] Charles Stover (a.k.a. GAMEchief, SegaDragon)
[b]Cross-Browser:[/b] Yes
[b]Placement:[/b] Global Footer -OR- the footers of the boards in which you wish to redirect threads
[code]<script type="text/javascript"><!--
// Redirect Threads
// Created by Charles Stover (a.k.a. GAMEchief, SegaDragon)
// http://gamingmedley.com
var threadRedirects = new Array(), threadId = 0;

// threadRedirects[THREAD-ID] = "URL TO REDIRECTION";
threadRedirects[50] = "http://gamingmedley.com";
threadRedirects[69] = "http://proboards.gamingmedley.com/codes.php";
threadRedirects[101] = "http://files.gamingmedley.com/Chrono_Trigger_DS/";
threadRedirects[321] = "http://youtube.com/watch?v=oHg5SJYRHA0"; // RickRoll

// No need to modify below here.
checkRedirUrl = function(u)
{
    return (((i = u.match(/thread=(\d+)/)) && (i = parseInt(i[1])) && (threadRedirects[i])) ? i : null);
}
if (threadId = checkRedirUrl(location.href))
    location.href = threadRedirects[threadId];
var a, anchs = document.getElementsByTagName('a');
for (a = 0; a < anchs.length; a++)
{
    if ((h = anchs[a].getAttribute("href")) && (threadId = checkRedirUrl(h)))
    {
        anchs[a].setAttribute("href", threadRedirects[threadId]);
        anchs[a].parentNode.parentNode.parentNode.onclick = function()
        {
            if (!pb_bubble)
                location.href = this.getElementsByTagName('a')[0].getAttribute("href");
        }
    }
}
//--></script>[/code]