Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Results 1 to 9 of 9
  1. #1
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    1,544

    Latest Awards:

    Default handy T's handy HTML guide v0.2

    it was 1st posted on rune HQ thats y it is using my RS name

    Hi & welcome to handy T's handy HTML guide v0.2containing many HTML codes for webs
    sites & now with new HTML codes for forums.

    if u have any suggestions for v0.3 then plz PM me on RuneHQ

    Updates for v0.3

    Downloadable

    New section "the RPG forums" with a shop

    More codes

    --------------------------------------------------------------------------------
    Javascripts
    --------------------------------------------------------------------------------

    1.Stop right click

    <script LANGUAGE="JavaScript">
    <!--
    function click() {
    if (event.button==2) {
    alert(' has disabled right-clicking.');
    }
    }
    document.onmousedown=click
    // -->
    //-->
    </script>

    2.Enter Pop-Up

    <SCRIPT language="JavaScript">alert("TEXT") </SCRIPT>

    3.Leaving Pop-Up

    <BODY onUnload="alert('TEXT HERE');">

    4.Enter & Leaving Pop-Up

    <BODY onLoad="alert('ENTER TEXT');"onUnload="alert('LEAVING TEXT');">

    5.Name-Asking Pop-Up

    Welcome to my site,
    <script language="VBScript"><!--Dim Name
    Name=InputBox("Whats your name?")document.write Name-->
    </script>

    6.Pop-Up W/Cancel Option

    <SCRIPT language="JavaScript">confirm("TEXT HERE")</SCRIPT>

    7.No Right Click Warning

    <script LANGUAGE="JavaScript">document.onmousedown=clickva r times=0var times2=10function click() {if ((event.button==2) || (event.button==3)) {if (times>=1) { bye() }alert("WARNING Text Here");times++ } }function bye() {alert("SECOND TIME TEXT");bye() }</script>

    (This simply warns the visitor the first time when they right click, and then doesn't stop the
    next time they right click!)

    8.Password-Asking Pop-Up

    <HEAD><SCRIPT language="JavaScript"><!--hidevar password;var pass1="PASSWORD GOES HERE";password=prompt('TEXT ON P-UP',' ');if (password==pass1)alert('TEXT IF CORRECT');else { window.location="URL OF PAGE THAT IT GOES TO IF THEY ANSWERED WRONG"; }//--></SCRIPT></HEAD>

    9.Pop-Up Menu Window

    <HTML><HEAD><script LANGUAGE="JavaScript"><!--function WindowOpen1(){ window.open('URL OF SITE HERE', 'Window1', 'resizable,scrollbars=yes,height=300,width=400');}//--></script></HEAD><BODY><a HREF="#" ONCLICK="WindowOpen1();return false">TEXT OF LINK GOES HERE</A>

    10.Links Flash Different Colors

    <script language = "javascript"><!--var timevar = 50;makeblue();function makeblue(){ document.linkColor="blue"; document.alinkColor="blue"; document.vlinkColor="blue"; setTimeout("makered()",timevar); return true;}function makered(){ document.linkColor="red"; document.alinkColor="red"; document.vlinkColor="red"; setTimeout("makegreen()",timevar); return true;}function makegreen(){ document.linkColor="green"; document.alinkColor="green"; document.vlinkColor="green"; setTimeout("makeorange()",timevar); return true;}function makeorange(){ document.linkColor="orange"; document.alinkColor="orange"; document.vlinkColor="orange"; setTimeout("makeblue()",timevar); return true;}//--></script>

    11.Graphics Float Around The Screen

    <SCRIPT LANGUAGE="JavaScript1.2"><!-- Beginvar no = 5; // number of graphics you wantvar speed = 15; // smaller number moves the graphics fastervar heart = "URL OF GRAPHIC GOES HERE!! ONLY CHANGE THIS!";var flag;var ns4up = (document.layers) ? 1 : 0; // browser sniffervar ie4up = (document.all) ? 1 : 0;var dx, xp, yp; // coordinate and position variablesvar am, stx, sty; // amplitude and step variablesvar i, doc_width = 300, doc_height = 600;if (ns4up) {doc_width = self.innerWidth;doc_height = self.innerHeight;} else if (ie4up) {doc_width = document.body.clientWidth;doc_height = document.body.clientHeight;}dx = new Array();xp = new Array();yp = new Array();amx = new Array();amy = new Array();stx = new Array();sty = new Array();flag = new Array();for (i = 0; i < no; ++ i) {dx[i] = 0; // set coordinate variablesxp[i] = Math.random()*(doc_width-30)+10; // set position variablesyp[i] = Math.random()*doc_height;amy[i] = 12+ Math.random()*20; // set amplitude variablesamx[i] = 10+ Math.random()*40;stx[i] = 0.02 + Math.random()/10; // set step variablessty[i] = 0.7 + Math.random(); // set step variablesflag[i] = (Math.random()>0.5)?1:0;if (ns4up) { // set layersif (i == 0) {document.write("<layer name='dot"+ i +"' left='15' ");document.write("top='15' visibility='show'><img src='");document.write(heart+ "' border='0'></layer>");} else {document.write("<layer name='dot"+ i +"' left='15' ");document.write("top='15' visibility='show'><img src='");document.write(heart+ "' border='0'></layer>");}} elseif (ie4up) {if (i == 0) {document.write("<div id='dot"+ i +"' style='POSITION: ");document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");document.write("visible; TOP: 15px; LEFT: 15px;'><img src='");document.write(heart+ "' border='0'></div>");} else {document.write("<div id='dot"+ i +"' style='POSITION: ");document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");document.write("visible; TOP: 15px; LEFT: 15px;'><img src='");document.write(heart+ "' border='0'></div>");}}}function snowNS() { // Netscape main animation functionfor (i = 0; i < no; ++ i) { // iterate for every dotif (yp[i] > doc_height-25) {xp[i] = 10+ Math.random()*(doc_width-amx[i]-15);yp[i] = 0;flag[i]=(Math.random()<0.5)?1:0;stx[i] = 0.02 + Math.random()/10;sty[i] = 0.7 + Math.random();doc_width = self.innerWidth;doc_height = self.innerHeight;}if (flag[i])dx[i] += stx[i];elsedx[i] -= stx[i];if (Math.abs(dx[i]) > Math.PI) {yp[i]+=Math.abs(amy[i]*dx[i]);xp[i]+=amx[i]*dx[i];dx[i]=0;flag[i]=!flag[i];}document.layers["dot"+i].top = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));document.layers["dot"+i].left = xp[i] + amx[i]*dx[i];}setTimeout("snowNS()", speed);}function snowIE() { // IE main animation functionfor (i = 0; i < no; ++ i) { // iterate for every dotif (yp[i] > doc_height-25) {xp[i] = 10+ Math.random()*(doc_width-amx[i]-15);yp[i] = 0;stx[i] = 0.02 + Math.random()/10;sty[i] = 0.7 + Math.random();flag[i]=(Math.random()<0.5)?1:0;doc_width = document.body.clientWidth;doc_height = document.body.clientHeight;}if (flag[i])dx[i] += stx[i];elsedx[i] -= stx[i];if (Math.abs(dx[i]) > Math.PI) {yp[i]+=Math.abs(amy[i]*dx[i]);xp[i]+=amx[i]*dx[i];dx[i]=0;flag[i]=!flag[i];}document.all["dot"+i].style.pixelTop = yp[i] + amy[i]*(Math.abs(Math.sin(dx[i])+dx[i]));document.all["dot"+i].style.pixelLeft = xp[i] + amx[i]*dx[i];}setTimeout("snowIE()", speed);}if (ns4up) {snowNS();} else if (ie4up) {snowIE();}// End --></script>

    12.FAQ drop down

    <!-- TWO STEPS TO INSTALL FAQ DROP DOWN:

    1. Copy the coding into the HEAD of your HTML document
    2. Add the last code into the BODY of your HTML document -->

    <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->

    <HEAD>

    <script type="text/javascript">
    <!-- Begin
    /* This script and many more are available free online at
    The JavaScript Source!! http://javascript.internet.com
    Created by: Fang :: http://tinyurl.com/7v7l8 */

    function toggle(obj) {
    // Moz. or IE
    var sibling=(obj.nextSibling.nodeType==3)? obj.nextSibling.nextSibling : obj.nextSibling;
    // hide or show
    if(sibling.style.display=='' || sibling.style.display=='block') {
    sibling.style.display='none';
    obj.firstChild.firstChild.data='+';
    }
    else {
    sibling.style.display='block';
    obj.firstChild.firstChild.data='-';
    }
    }
    //
    function initCollapse() {
    var oDT=document.getElementById('content').getElements ByTagName('dt');
    for (var i=0; i < oDT.length; i++) {
    oDT[i].onclick=function() {toggle(this)};
    var oSpan=document.createElement('span');
    var sign=document.createTextNode('+');
    oSpan.appendChild(sign);
    oDT[i].insertBefore(oSpan, oDT[i].firstChild);
    oSpan.style.fontFamily='monospace';
    oSpan.style.paddingRight='0.5em';
    oDT[i].style.cursor='pointer';
    toggle(oDT[i]);
    }
    oDT=null;
    }
    window.onload=function() {if(document.getElementById && document.createElement) {initCollapse();}}
    //-->
    </script>
    </HEAD>

    <!-- STEP TWO: Copy this code into the BODY of your HTML document -->

    <BODY>

    <div align="center">
    <dl id="content">
    <dt>This is Question #1 <em class="sm">[click here]</em></dt>
    <dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in.<br><br></dd>
    <dt>This is Question #2 <em class="sm">[click here]</em></dt>
    <dd>Ma quande lingues coalesce, li grammatica del resultant lingue es plu simplic e regulari quam ti del coalescent lingues. Li nov lingua franca va esser plu simplic e regulari quam li existent Europan lingues. It va esser tam simplic quam Occidental: in fact, it va esser Occidental. A un Angleso.<br><br></dd>
    <dt>This is Question #3 <em class="sm">[click here]</em></dt>
    <dd>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in.</dd>
    </dl>
    </div>

    <p><center>
    <font face="arial, helvetica" size"-2">Free JavaScripts provided<br>
    by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
    </center><p>

    <!-- Script Size: 3.03 KB -->

    --------------------------------------------------------------------------------
    Textareas
    --------------------------------------------------------------------------------

    13.Regular Textarea

    <textarea>TEXT HERE
    </textarea>

    14.Textarea (Specific Size)

    <textarea rows=# cols=#>
    TEXT GOES HERE
    </textarea>

    15.Textarea With Colors

    <textarea ROWS=5 COLS=15
    style="background:COLOR"
    style="font-family:FONT"
    style="color:COLOR HERE"
    style="border style:solid">
    TEXT TEXT</textarea>

    17.Textarea Allowing HTML

    <ilayer name="scroll1">
    <div id="scroll3"
    style="width:100;height:75;
    background-color:COLORHERE;
    overflow:auto">
    TEXT HTML TEXT HTML
    </textarea></div>

    --------------------------------------------------------------------------------
    FONTS
    --------------------------------------------------------------------------------

    18.Changing Font Colors

    <font color=COLORHERE>TEXT HERE

    19.Coulor names (only for this code)

    Dodgerblue
    Salmon
    Blueviolet
    Turquoise
    Darkpink
    Lime
    Seagreen
    Pink
    Royalblue
    Yellow
    Goldenrod
    Coral
    Burlywood
    Firebrick
    Forestgreen
    Fuchsia
    Indigo
    Skyblue
    Indianred
    Olive
    Peru
    Orchid
    Plum
    Springgreen
    Steelblue
    Teal
    Blue
    Hotpink
    Cornflowerblue

    20.Changing Font Sizes

    <font size=NUMBER>TEXT HERE

    21.Changing Font Faces

    <font face="FONTNAME">TEXT HERE

    22.Some font names

    Verdana
    Comic Sans MS
    Impact
    Snap ITC

    23.Combining It All

    <font face="FONT" size=NUMBER
    color=COLORHERE>TEXT HERE

    24.Adding Extras

    <i>Italicized</i>

    <s>Slashout</s>

    <b>Bold</b>

    <u>Underline</u>

    <sup>SuperScript</sup>

    <sub>SubScript</sub>

    <tt>Typewriter</tt>

    text with color back ground

    <span style=background:COLOR>
    TEXT GOES HERE</span>

    25.Fancy Texts

    <TABLE
    STYLE="filter:___(color=____,
    strength=___)">
    <TR><TD><center>
    TEXT GOES HERE</TABLE>

    FILL IN THE BLANKS (in order):
    #1. dropshadow, glow, or shadow.
    #2. Any color
    #3. A number 1-10

    26.Another Fancy Text

    <DIV ID="waveText"style="width:#;
    height:#;font-size:#pt;color:COLOR;
    filter:wave(add=0,phase=4,freq=5,
    strength=2)">TEXT HERE</DIV>

    27.Aligning Text

    <p align=DIRECTION>TEXT</p>

    (put in Left, right or Center)

    28.Spacing Text (big space)

    <p>

    29.spacing Text (small space)

    <br>

    30.Spacing Letters

    <H3 STYLE="LETTER-SPACING:#em">
    TEXT HERE</H3>

    The H3 can be changed to anything from 1-6, 1 being the biggest. The # can also be changed
    (its the amount of space between the letters).

    31.Indenting Text

    <dl><dd>INDENTED
    TEXT HERE</dl>

    --------------------------------------------------------------------------------
    Moving text
    --------------------------------------------------------------------------------

    32.sliding

    <marquee>TEXT HERE</marquee>

    33.Bouncing

    <marquee behavior=alternate>TEXT HERE</marquee>

    34.Sliding with back ground

    <marquee bgcolor=aqua>TEXT HERE</marquee

    35.Moving Directions

    <marquee direction=right,left,up,or down>TEXT HERE</marquee>

    36.Moving speed

    <marquee scrollamount=NUMBER>TEXT HERE</marquee>

    37.Size

    <marquee width=percent OR number>TEXT HERE</marquee>


    38.Slows when mouse over it

    <marquee onMouseover="this.scrollAmount=#"
    onMouseout="this.scrollAmount=#">TEXT</marquee>

    39.Loop (6)

    <marquee loop=#>Text</marquee>

    40.stops after 6

    <marquee behavior=slide>TEXT</marquee>

    41.Combining It All

    <marquee bgcolor=COLOR
    width=#scrollamount=#
    direction=L,R,U,orD>TEXT HERE</marquee>

    --------------------------------------------------------------------------------
    Links
    --------------------------------------------------------------------------------

    42.Basic Link

    <a href=URL OF WEBSITE>
    TEXT HERE</a>

    43.Email Link

    <a href="mailto:[email protected]">
    TEXT HERE</a>

    44.Emails With Subjects

    <a href="mailto:
    [email protected]?subject=blah">
    TEXT HERE</a>

    45.Link With Toolbar Text

    <a href=""
    "OnMouseOver="window.status='TEXT';
    return true;">
    LINK TEXT</a>

    46.Mouseover Link

    <a href="
    "onmouseover="parent.location='URL'">
    TEXT HERE</a>

    47.Mouseover Link: Back Ground

    <a href=""
    onMouseOver="var bg = prompt('TEXT');
    document.bgColor=bg">
    TEXT HERE</a>

    48.Mouseover Link: Pop Up

    <a href="" onMouseover="alert('TEXT')">
    TEXT</a>

    49.Re-Direction Link

    <META HTTP-EQUIV="Refresh" CONTENT="6;
    URL=URL HERE">

    50.Drop-Down Link List

    <form><select name=select size="1"
    style="background-color:COLORHERE;
    font size:#pt; font-family:FONTHERE;
    color:COLORHERE"
    onchange="location.href=
    (form.select.options[form.select.selectedIndex].value)">
    <option value="URL">page link</option>
    <option value="URL">page link</option>
    <option value="URL">page link</option>

    </select></form>

    51.Drop-Down List (TARGET)

    <script language="javascript">
    function jump(form) {
    var myindex=form.menu.selectedIndex
    if (form.menu.options[myindex].value != "0")
    {
    window.open(form.menu.options[myindex].value,
    target="TARGET NAME GOES HERE");
    }}//--></script>

    <form name="">

    <select name="menu"
    style="background-color:COLORHERE;
    font size:#pt; font-family:FONTHERE;
    color:COLORHERE" size="1"
    onchange="jump(this.form)">

    <option value="URL HERE">TEXT</option>
    <option value="URL HERE">TEXT</option>
    <option value="URL HERE">TEXT</option>
    <option value="URL HERE">TEXT</option>

    </select></form>

    52.Changing Link Styles

    You can change how ALL your links look:
    just when its normal (A:LINK),
    once you visited it (A:VISITED),
    when you click on it (A:ACTIVE),
    when you put your mouse on it (A:HOVER).

    The following is the main code. Put it ONCE on your page, and it changes ALL your links.
    Whatever interesting style code you want to do, put that particular code where it says
    "text-decoration:none"

    <STYLE type="text/css"><!--
    Aink{color:COLOR;text-decoration:none}
    A:visited{color:COLOR;text-decoration:none}
    A:active{color:COLOR;text-decoration:none}
    A:hover{color:COLOR;text-decoration:none}
    --></STYLE>

    See where it says "text-decoration:none"? That can be changed to many different codes,
    which make links underlined, bold, italic, different colors, etc. You can change any, or all
    of the text-decorations. If you want to, replace the part where it says "text-decoration:none"
    on each line with one of the following codes. OR if you leave it as it is, the links will be
    plain, non-underlined. You can also put more than one text decoration on each section.

    53.Back link button

    <body>
    <center>
    <form>
    <input type="button" value=" back " onClick="history.go(-1)">
    </form>
    </center>

    --------------------------------------------------------------------------------
    Text Decorations For Links
    --------------------------------------------------------------------------------

    This bit is to show you how to make thinks bold, underlined & so on using HTML
    code

    54.Code To Replace "text-decoration:none"

    55.text-decoration:underline = underlined

    56.text-decoration:underline overline = underline & overline

    57.background-color:COLORHERE = background color

    58.text-decorationine-through = slashed out

    59.cursor:crosshair = cross cursor

    60.cursor:n-resize = cursor points up

    61.cursor:s-resize = cursor points down

    62.cursor:w-resize = cursor points left

    63.cursor:e-resize = cursor points right

    64.cursor:wait = hourglass cursor

    65.font-weight:bold = bold font

    66.font-weight:italic = italics text

    67.font-size:#pt = sized text

    --------------------------------------------------------------------------------
    Back ground
    --------------------------------------------------------------------------------

    68.Body Backgrounds

    <body background="IMAGE URL">

    69.Background (Non-Moving)

    <body background="IMAGE URL"bgproperties="fixed">

    70.Body Background Colors

    <body bgcolor="COLOR OR HEX CODE HERE">


    --------------------------------------------------------------------------------
    Music
    --------------------------------------------------------------------------------

    71.Background Music

    <BGSOUND SRC="MIDI URL" AUTOSTART="true"
    HIDDEN="true" LOOP="infinite">

    72.Background Music (MIDI FORMAT)

    <embed src="MIDI URL"
    loop="true" autostart="true"controls="smallconsole">

    73.Music On Expage

    <a href="MIDI URL">Listen to ?</a>

    OR

    <META HTTP-EQUIV="Refresh" CONTENT="6; URL=MIDI URL">

    74.Background Music with Console

    <bgsound src = "MIDI URL" loop = "true">
    <embed src = "MIDI URL" autostart =
    "true" loop = "false" volume = "50%" height = "60" width =
    "145">

    --------------------------------------------------------------------------------
    Music box's
    --------------------------------------------------------------------------------

    75.Original MusicBox

    <center>
    <form> <table border=0 bordercolor=black bgcolor=royalblue><tr><th><bgsound src="url of song" id=music loop=infinite><font face="verdana"><font size=1><font color=white>Jams</font></th></tr><tr><td>
    <input type="button" value="play" onclick="document.all.music.src='url of song';document.cookie='SO=Y;PATH=/'">
    <input type="button" value="stop" onclick="document.all.music.src='http://208.222.215.244/images/music/blank.htm';document.cookie='SO=N;PATH=/;'"></td></tr></table></form>
    </center>
    </script>

    77.MusicBox (url background)#

    <center>
    <form> <table border=0 bordercolor=black background="http://www.freebackgrounds.com/back-001.gif"><tr><th><bgsound src="url of song" id=music loop=infinite><font face="verdana"><font size=1><font color=white>Jams</font></th></tr><tr><td>
    <input type="button" value="play" onclick="document.all.music.src='url of song';document.cookie='SO=Y;PATH=/'">
    <input type="button" value="stop" onclick="document.all.music.src='http://208.222.215.244/images/music/blank.htm';document.cookie='SO=N;PATH=/;'"></td></tr></table></form>
    </center>
    </script>

    78.MusicBox (style sheet)

    <style type="text/css">
    <!--
    p {
    color: #97A676;
    background: none;
    font-size: 9px;
    font-weight: bold;
    font-family: arial
    }

    td {
    color: #97A676;
    background: none;
    font-size: 9px;
    font-weight: bold;
    font-family: arial
    }


    input {
    color: #000000;
    background: ;
    font-size: 9px;
    font-weight: bold;
    text-decoration: none;
    font-family: arial;
    text-align: center;
    border-width: 2px;
    border-style: ridge;
    border-color:#66D50C;
    }
    -->
    </style>

    </script>

    --------------------------------------------------------------------------------
    79.Radio Box
    --------------------------------------------------------------------------------

    To put a radio on your site (must join a radio SHOUTcast thing)

    <object id="MediaPlayer" type="application/x-oleobject" height="40" standby="Please wait while we start the radio!" width="180" classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6">
    <param value="http://IP ADDRESSORT" name="URL">
    <param value="1" name="rate">
    <param value="0" name="balance">
    <param value="0" name="currentPosition">
    <param value="" name="defaultFrame">
    <param value="1" name="playCount">
    <param value="-1" name="autoStart">
    <param value="0" name="currentMarker">
    <param value="-1" name="invokeURLs">
    <param value="" name="baseURL">
    <param value="50" name="volume">
    <param value="0" name="mute">
    <param value="mini" name="uiMode">
    <param value="0" name="stretchToFit">
    <param value="0" name="windowlessVideo">
    <param value="-1" name="enabled">
    <param value="-1" name="enableContextMenu">
    <param value="0" name="fullScreen">
    <param value="" name="SAMIStyle">
    <param value="" name="SAMILang">
    <param value="" name="SAMIFilename">
    <param value="" name="captioningID">
    <param value="0" name="enableErrorDialogs">
    <param value="4763" name="_cx">
    <param value="1058" name="_cy"></object></p>

    --------------------------------------------------------------------------------
    80.Tables
    --------------------------------------------------------------------------------

    1) You HAVE TO START WITH THIS CODE:

    <table>

    1B) You can add extras to this part of the table,
    but don't make a whole new code.
    Examples of extras you can add:
    bgcolor=COLOR
    background=IMAGE URL
    border=NUMBER
    bordercolor=COLOR
    cellpadding=NUMBER
    cellspacing=NUMBER
    You can either do bgcolor OR background
    They can all go in one code, like this:

    <table bgcolor=white border=4 bordercolor=blue
    cellpadding=5 cellspacing=3>

    2) Now you can add the rows.
    After code #1, you must type this:
    <tr>

    3) Depending on how many columns you want, you can
    repeat this code over and over after code #2.
    Each one creates a new column (the part going down).
    If you only want a row with nothing
    separating it, write it once.
    <td>TEXT GOES HERE</td>

    4) Now, after you make all the columns you need,
    you must end the row, by doing this:
    </tr>

    5) Now, you can repeat steps #2-4 as many times
    as you like to make numerous rows with
    the same number of columns.

    6) Once you made all the rows you want, you must
    end the table with this code:
    </table>

    --------------------------------------------------------------------------------
    Tables extras
    --------------------------------------------------------------------------------

    The following codes are
    extras you can add to your table.
    Key word: ADD! Remember, you still
    need the other parts of the table code.


    81.Row/Column Spans

    <td colspan=4>TEXT</td>
    <td rowspan=3>TEXT</td>
    These codes specify how many rows or columns one box SPANS (covers) Colspan=2
    Text Text
    Row span =4 Text
    Text
    Text
    Text

    82.No Outside Border
    <table border=3
    bordercolor=blue frame=void>
    Text Text
    Text Text

    83.No Side Borders
    <table border=3
    bordercolor=blue frame=hsides>
    Text Text
    Text Text

    84.No Top/Bottom Border
    <table border=3
    bordercolor=blue frame=vsides>
    Text Text
    Text Text

    85.No Inside Borders
    <table border=3
    bordercolor=blue rules=none>
    Text Text
    Text Text

    86.Only Column Borders
    <table border=3
    bordercolor=blue rules=cols>
    Text Text
    Text Text

    87.Only Row Borders
    <table border=3
    bordercolor=blue rules=rows>
    Text Text
    Text Text

    Here are some examples
    of FINISHED tables:


    <table bgcolor=lime border=4
    bordercolor=blueviolet
    cellpadding=5 cellspacing=3><tr><td colspan=4>
    <center>Text Text Text Text
    <tr><td><center>Text<td><center>Text
    <td><center>Text><td><center>Text</table>
    Text Text Text Text
    Text Text Text Text

    <table border=4 bordercolor=blue>
    <tr><td bgcolor=white>
    <font color=blueviolet>Text
    <tr><td bgcolor=blueviolet>
    <font color=white>Text<tr><td bgcolor=white>
    <font color=blueviolet>Text</table>
    Text
    Text
    Text

    <table border=5 bordercolor=blueviolet
    cellspacing=0 cellpadding=2
    rules=rows><tr><td bgcolor=aqua>
    <font color=magenta>Text<td bgcolor=lime>
    <font color=dodgerblue>Text
    <tr><td bgcolor=magenta>
    <font color=aqua>Text<td bgcolor=dodgerblue>
    <font color=lime>Text</table>
    Text Text
    Text Text

    <table border=6 bordercolor=lime
    background=IMAGE URL
    height=90><tr><td>Thanx
    <a href=http://expage.com/page/luauhp>Laura
    for the background!</table>

    <table border=8 bordercolorlight=dodgerblue
    bordercolordark=lime><tr><td>
    TEXT TEXT TEXT TEXT TEXT
    TEXT TEXT TEXT TEXT TEXT</table>

    --------------------------------------------------------------------------------
    Random Codes
    --------------------------------------------------------------------------------

    88.AOL Locate-Me Code (not AIM)

    <A HREF="aol://3548:NAME">
    TEXT HERE</a>

    89.AOL IM-Me Code (not AIM)

    <A HREF="aol://9293:NAME">
    TEXT HERE</a>

    90.AOL Chat Link (not AIM)

    <a href="aol://2719:2-2-NAME/">
    TEXT HERE</a>

    91.HTML on AOL Profiles

    < font . face="font name here">
    < font . ptsize=#>
    < p . align=center,left,or right>
    < a . href="aol://3548:NAME">Locate Me< /a .>
    < a . href="aol://9293:NAME">IM Me< /a .>
    < a . href="URLHERE">text< /a .>
    < font . color=#000000>
    < body . bgcolor=#000000>

    **for the last 2, change #000000 to a hex code
    remember, dont delete the . or spaces

    92.Option Buttons W/Pop-Ups

    <form>OPTION1
    <input type="radio"
    onClick="alert('TEXT')">
    OPTION2
    <input type="radio"
    onClick="alert('TEXT')">

    93.Bulleted Lists

    <li>TEXT<li>TEXT
    <li>TEXT<li>TEXT

    94.Clock

    <table border=2 bordercolor=blue
    cellspacing=0><tr><td>
    <applet codebase=http://www.ClockBot.com/
    code=clockbot.Clock width=125 height=25>
    <param name=bgColor value="#FFFFFF">
    <param name=fgColor value="#9966FF">
    <param name=shadowColor value="#FFFFFF">
    <param name=fontName value="arial">
    <param name=fontSize value="20">
    <param name=xoff value="2">
    <param name=yoff value="2">
    <param name=xstart value="10">
    <param name=ystart value="21">
    <param name=rot value="0">
    <param name=msleep value="300">
    </applet></table>

    95.Background Changer

    <form name="BackgroundColor"
    method="post">
    <input type="button"
    OnClick="document.bgColor='HEX CODE';
    "value="TEXT HERE">
    <input type="button"
    OnClick="document.bgColor='HEX CODE';
    "value="TEXT HERE">
    <input type="button"
    OnClick="document.bgColor='HEX CODE';
    "value="TEXT HERE"></form>

    96.Flashy Background Changer

    <a href="
    "onmouseover="document.bgColor='aqua';
    document.bgColor='yellow';
    document.bgColor='orange';
    document.bgColor='skyblue';
    document.bgColor='coral';
    document.bgColor='lightgreen';
    document.bgColor='white';
    document.bgColor='blueviolet';
    document.bgColor='skyblue';
    document.bgColor='hotpink';
    document.bgColor='black';
    document.bgColor='white'>
    TEXT GOES HERE</a>

    97.Change The Title

    <a href=""
    onMouseOver="var title= prompt('TEXT');
    document.title=title">LINK TEXT</a>

    98.Put a code on a site so others can see it with out the: clock, pop up & so on...

    (xmp) (the html code here) (/xmp)

    99.Clock

    <script language="JavaScript">
    var author="www.dseffects.com";
    var clocksize="80";
    var xpos="10";
    var ypos="10";
    var colnumbers="000000";
    var colseconds="ff0000";
    var colminutes="ffffff";
    var colhours="ffffff";
    var regkey="";
    </script>
    <script src="DS_AnalogClock.js"></script>

    100.A cool knight pic (put your mouse over it)

    <script language="JavaScript">
    //Preload knight Images
    knighted=new Image(32,48)
    knighted.src="http://images.bravenet.com/common/images/resources/scripts/knight-blue.gif"
    knightred=new Image(32,48)
    knightred.src="http://images.bravenet.com/common/images/resources/scripts/knight-red.gif"
    </script>
    <!-- create mouse-over effect -->
    <a href="http://www.Runechest.tk" onMouseOver="document.knight.src=knightred.src" onMouseOut="document.knight.src=knighted.src"><img name="knight" src="http://images.bravenet.com/common/images/resources/scripts/knight-blue.gif" border="0"></a>

    101.The date (show what todays date is)

    <script language="JavaScript">
    <!-- Begin
    var months=new Array(13);
    months[1]="January";
    months[2]="February";
    months[3]="March";
    months[4]="April";
    months[5]="May";
    months[6]="June";
    months[7]="July";
    months[8]="August";
    months[9]="September";
    months[10]="October";
    months[11]="November";
    months[12]="December";
    var time=new Date();
    var lmonth=months[time.getMonth() + 1];
    var date=time.getDate();
    var year=time.getYear();
    if (year < 2000) // Y2K Fix, Isaac Powell
    year = year + 1900;
    document.write("<center>" + lmonth + " ");
    document.write(date + ", " + year + "</center>");
    // End -->
    </script>
    </center>

    102.Making a Line

    <hr width=NUMBER color=COLOR size=NUMBER>


    103.Making a Space (not realy needed)

    &nbsp;

    --------------------------------------------------------------------------------
    Forum HTML
    --------------------------------------------------------------------------------

    all the codes here are for Iinvision boards i have not test them on any other
    board & they do not work on pro-boards

    104.Make active users list sorted alphabetically
    Put the code after your <% BOARD %> Tag:

    <script>//Active Users List Sorter - By Markup
    oNames=[];
    nNames=[];
    decoration=[];
    no=[];
    div=document.body.getElementsByTagName("DIV");
    for(i=0;i<div.length;i++)
    {
    altList=false;
    if(div[i].innerHTML.match(/[0-9]+\sMembers\:/))if(div[i].className=="row2")altList=true;
    if(div[i].className=="thin"||altList)
    {
    a=div[i].getElementsByTagName("A");
    for(n=0;n<a.length;n++)
    {
    pattern=a[n].innerHTML.match(/>[\w\s]+<\//);
    if(pattern)
    {
    user=pattern.toString();
    user=user.substring(1,user.length-2);
    decoration[n]=a[n].innerHTML.split(user);
    }
    else user=a[n].innerHTML;
    oNames[n]=user+"&ahref="+a[n].href;
    nNames[n]=user.toUpperCase();
    }
    nNames=nNames.sort();
    for(x=0;x<nNames.length;x++)for(y=0;y<oNames.lengt h;y++)if(oNames[y].toUpperCase().indexOf(nNames[x])==0)
    {
    nNames[x]=oNames[y];
    no[x]=y;
    }
    for(x=0;x<nNames.length;x++)
    {
    if(decoration[no[x]]!=undefined)decoration[x]=decoration[no[x]];
    else decoration[x]=undefined;
    }
    list="";
    for(p=0;p<nNames.length;p++)
    {
    user=nNames[p].split('&ahref=');
    if(decoration[p]!=undefined)list+="<a href='"+user[1]+"'>"+decoration[p][0]+user[0]+decoration[p][1]+"</a>, ";
    else list+="<a href='"+user[1]+"'>"+user[0]+"</a>, ";
    }
    div[i].innerHTML=list.substring(0,list.length-2);
    }
    }
    </script>

    105.Add link Next to the portal
    Put this after <% BOARD HEADER %> in Admin CP->Board Wrappers->Header & Body

    <script type='text/javascript'>
    <!--
    // add link on the portal side of the submenu
    // code by ticlo/Stefan
    function addSubmenuLink(url, text, blank) {
    var e
    e = document.getElementById('submenu')
    if (e && e.nodeName == 'TABLE') {
    e.rows[0].cells[0].innerHTML += ' &middot; <a href="' + url + '"' + (blank ? ' target="_blank"' : '') + '>' + text + '</a>'
    }}
    addSubmenuLink('URL HERE', 'TEXT HERE')
    // -->
    </script>

    106.Add us to your Favorites link
    put in java script or Header&Body

    <a href=":Site Name" onDragstart="return false" onClick='window.external.AddFavorite(location.href , document.title);return false'>Add us to Your Favorites</a>

    107.Affiliate Box(marquee)

    <table align="center" border="0" width="92%" cellspacing="0" cellpadding="0" class="tableborder">

    <!--
    Scrolling Affilate Box w/ Text Area II
    Created by DjTsWiMr582/ManyGames 2-01-04
    Please visit http://s3.invisionfree.com/manygames2/index.php for more codes

    This code may not be redistributed without permission from its maker.
    This header must stay intact at all times. If you fail to comply with these rules, you will be reported and in result your board may be deleted.
    -->

    <tr>
    <td>
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
    <td class="maintitle" align="center" colspan="3">
    <font color="TITLE COLOR" size="2">
    <b>TABLE TITLE</b>
    </font>
    </td>
    </tr>
    <tr>
    <td width="70%" valign="middle" class="row4">
    <marquee scrollamount=3 onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=3"><a href="LINK URL"><img src="IMAGE URL"></a></marquee>
    </td>
    <td width="30%" class="row3" valign="middle"><center>
    <img src="YOUR BANNER IMAGE URL HERE"> <textarea rows='2' cols='20' readonly='readonly'>YOUR BANNER CODE HERE</textarea></center>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    108.Affiliate Box(scrolling)
    Place code in footer

    <table align="center" border="0" width="92%" cellspacing="0" cellpadding="0" class="tableborder">

    <!--
    Scrolling Affilate Box w/ Text Area
    Created by DjTsWiMr582/ManyGames 2-01-04
    Please visit http://s3.invisionfree.com/manygames2/index.php for more codes

    <tr>
    <td>
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
    <td class="maintitle" align="center" colspan="3">
    <font color="TITLE COLOR" size="2">
    <b>TABLE TITLE</b>
    </font>
    </td>
    </tr>
    <tr>
    <td width="70%" valign="middle" class="row4">
    <marquee scrollamount=3 onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=3"><a href="LINK URL"><img src="IMAGE URL"></a></marquee>
    </td>

    109. Arcade Hack
    Put the following code in: Admin CP > Skinning & Styles > Board Wrappers> Header and Body > Navigation

    <script>
    var aLink=new Array()
    aLink[0]='<img src="http://67.18.37.15/style_images/1/atb_search.gif" border="0" alt="" width="15" height="15" />&nbsp;<a href=http://www.geocities.com/addman_04/arcade.htm>Arcade</a>'

    var uCell = document.getElementsByTagName('TD')
    for (i=0;i<uCell.length;i++){
    if (uCell[i].align=="right" && uCell[uCell[i].innerHTML=addLink+uCell[i].innerHTML
    }}
    </script>i].innerHTML.match("act=calendar") && uCell[i].innerHTML.match("act=Help")){
    var addLink=""
    for (j=0;j<aLink.length;j++){
    addLink+=aLink[j]+" &nbsp; &nbsp;&nbsp;"
    }
    </script>

    110. Arcade Hack 2

    <script>
    if (location.href.indexOf("act=Arcade") != -1) {
    document.write('<div style="display:none">')
    }
    </script>

    <script>
    /*
    Adding NaviBar Links
    By Webworldx
    */
    var aLink=new Array()
    aLink[0]='<img src="http://69.93.183.37/822/172/upload/p266739.gif" border="0" alt="" width="15" height="15" />&nbsp;<a href="http://www.geocities.com/addman_04/arcade.htm">Arcade</a>'

    var uCell = document.getElementsByTagName('TD')
    for (i=0;i<uCell.length;i++){
    if (uCell[i].align=="right" && uCell[i].innerHTML.match("act=calendar") && uCell[i].innerHTML.match("act=Help")){
    var addLink=""
    for (j=0;j<aLink.length;j++){
    addLink+=aLink[j]+" &nbsp; &nbsp;&nbsp;"
    }

    uCell[i].innerHTML=addLink+uCell[i].innerHTML
    }}
    </script>


    111.Audio Not Replaying
    Copy and Paste into the Header & Body or the Footer

    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
    <!--

    function play_media()
    {
    OpenWindow=window.open("", "newwin", "width=500,height=300,toolbar=no,scrollbars="+scro ll+",menubar=no");


    // Window Title
    WindowTitle = "MP3 File Now Playing...";

    // URL to the audio or video file
    MediaURL = "URL OF SONG/FILE";

    // Alternative Text
    AltText = "Download my MP3 file";


    // Player Settings

    // Automatic Play: use TRUE or FALSE
    AutoPlay = "FALSE";

    // Repeat: use TRUE to repeat forever, FALSE to disable, or type in a number such as 2
    RepeatPlay = "FALSE";

    // Hide Player: use TRUE or FALSE
    PlayerHidden = "FALSE";

    // Volume: set the default volume where 1 is the lowest and 100 is the highest
    Volume = "100";


    // DO NOT EDIT BELOW THIS LINE!
    OpenWindow.document.write(unescape("%3CHTML%3E%0D% 0A%3CHEAD%3E%0D%0A%3CTITLE%3E"));
    OpenWindow.document.write(''+WindowTitle+'');
    OpenWindow.document.write(unescape("%3C/TITLE%3E%0D%0A%0D%0A%3C/HEAD%3E%0D%0A%3CBODY%20oncontextmenu%3D%22return%2 0false%22%3E%0D%0A%0D%0A%3CCENTER%3E%0D%0A%0D%0A%3 CEMBED%20SRC%3D%22"));
    OpenWindow.document.write(''+MediaURL+'');
    OpenWindow.document.write(unescape("%22%20AUTOPLAY %3D%22"));
    OpenWindow.document.write(''+AutoPlay+'');
    OpenWindow.document.write(unescape("%22%20LOOP%3D% 22"));
    OpenWindow.document.write(''+RepeatPlay+'');
    OpenWindow.document.write(unescape("%22%20HIDDEN%3 D%22"));
    OpenWindow.document.write(''+PlayerHidden+'');
    OpenWindow.document.write(unescape("%22%20VOLUME%3 D%22"));
    OpenWindow.document.write(''+Volume+'');
    OpenWindow.document.write(unescape("%22%3E%3C/EMBED%3E%0D%0A%0D%0A%3CNOEMBED%3E%0D%0A%3CA%20HREF %3D%22"));
    OpenWindow.document.write(''+MediaURL+'');
    OpenWindow.document.write(unescape("%22%3E"));
    OpenWindow.document.write(''+AltText+'');
    OpenWindow.document.write(unescape("%3C/A%3E%0D%0A%3C/NOEMBED%3E%0D%0A%0D%0A%3C/CENTER%3E%0D%0A%0D%0A%3C/BODY%3E%0D%0A%3C/HTML%3E"));

    OpenWindow.document.close()
    self.name="main"
    }
    //-->
    </SCRIPT>


    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
    <!--

    // Link Text
    LinkText = "Play my MP3 file";

    // Status Bar Text
    StatusBarText = "Plays an MP3 file in a new window."


    // DO NOT EDIT BELOW THIS LINE!
    document.write(unescape("%3CA%20HREF%3D%22javascri pt%3Aplay_media%28%29%3B%22%20onMouseOver%3D%22win dow.status%3D%27"));
    document.write(''+StatusBarText+'');
    document.write(unescape("%27%3B%20return%20true%22 %20onMouseOut%3D%22window.status%3D%27%27%3B%20ret urn%20true%22%3E"));
    document.write(''+LinkText+'');
    document.write(unescape("%3C/A%3E"));

    //-->
    </SCRIPT>

    <NOSCRIPT><a href="URL OF SONG/FILE">Download my MP3 file</a></NOSCRIPT>

    112.Automatically PM new users
    Admin CP > Board Wrappers > Footer:

    <script language="javascript" type="text/javascript">
    <!--
    /*
    Automatic Welcome PM
    Originally by MKII
    */

    appearFrom = ["Admin", 1]
    msgTitle = "TITLE HERE"
    msgContents = "MESSAGE HERE" +
    "You can use BB code if it is enabled.\n" +
    "You cannot use return, instead use the backslash and n you see at the end of these lines.\n" +
    "Make sure that each line ends with a + (except for the last one)"

    home = "http://"+location.hostname
    home += location.pathname.match(/\/[^\/]+\//) ? "/" + location.pathname.substr(1).substr(0, location.pathname.substr(1).indexOf("/") + 1) : location.pathname + "/"
    home += "index.php?"

    if(document.forms['REG'])
    document.forms['REG'].onsubmit = function()
    {
    if(!Validate())
    return false
    document.cookie = "newMember=1; expires=" + new Date("1/1/2010").toGMTString()
    return true
    }

    userLinks = document.getElementById("userlinks")
    userName = userLinks.getElementsByTagName("A")[0].innerHTML.replace(/<[^>]+>/g, "")

    if(userLinks.innerHTML.match("Logged in")&&document.cookie.match("newMember=1"))
    {
    document.cookie = "newMember=0; expires=" + new Date().toGMTString()
    document.write("<iframe src='" + home + "act=Msg&CODE=4&MODE=1&entered_name=" + escape(userName) + "&msg_title=" + escape(msgTitle) + "&Post=" + escape(msgContents) + "' style='display:none'></iframe>")
    alert("You have a new personal message from "+ appearFrom[0])
    }

    if(location.href.match(/act=Msg&CODE=0*1/))
    {
    td = document.getElementsByTagName("TD")
    for(i = 0; i < td.length; i++)
    if(td[i].innerHTML.replace(/<[^>]+>/g, "") == msgTitle)
    {
    a = td[i + 1].getElementsByTagName("A")
    a[0].href = home + "showuser=" + appearFrom[1]
    a[0].innerHTML = appearFrom[0]
    a[1].href = a[1].href.replace(/MID=\d+/, "MID=" + appearFrom[1])
    }
    }

    if(location.href.match(/MSID=\d+/))
    {
    b = document.getElementsByTagName("B")
    for(i = 0; i < b.length; i++)
    if(b[i].innerHTML == msgTitle && b[i].parentNode.className == "postdetails")
    {
    td = document.getElementsByTagName("TD")
    for(n = 0; n < td.length; n++)
    if((td[n].className == "post1") && td[n].width != "100%")
    {
    a = td[n - 2].getElementsByTagName("A")[0]
    if(a.innerHTML.replace(/<[^>]+>/g,"") != userName)
    break
    a.href = home + "showuser=" + appearFrom[1]
    a.innerHTML = appearFrom[0]
    div = td[n + 1].getElementsByTagName("DIV")
    for(x = 0; x < div.length; x++)
    if(div[x].className == "signature")
    div[x].removeNode(true)
    a = td[n + 3].getElementsByTagName("A")
    for(x = 0; x < a.length; x++)
    if(a[x].href.match(/MID=\d+/))
    a[x].href = a[x].href.replace(/MID=\d+/, "MID=" + appearFrom[1])
    td[n + 1].colSpan = "2"
    td[n].removeNode(true)
    break
    }
    break
    }
    }

    //-->
    </script>

    113.back ground Music Replaying
    admin cp > Skinning & Styles > Board Wrappers > Javascript

    <EMBED src="URL OF SONG/FILE" autostart="true" loop="true" hidden="true">
    <NOEMBED>
    <BGSOUND src="URL OF SONG/FILE">
    </NOEMBED>

    114.Banner Box(scrolling)
    <AdminCP> <Skinning & Styles> <Board Wrappers> <Footer>

    <tr>
    <td>
    <table cellpadding="3" cellspacing="1" border="0" width="100%">
    <tr>
    <td class="maintitle" align="center" colspan="3">
    <font color="indianred" size="2">
    <b>Banners</b>
    </font>
    </td>
    </tr>
    <tr>
    <td width="70%" valign="middle" class="row4">
    <marquee scrollamount=4 onMouseover="this.scrollAmount=0" onMouseout="this.scrollAmount=4"><a
    href="URL OF SITE HERE"><img src="URL OF IMAGE HERE"</a></marquee>
    </td></a>

    115.If u wanna add more banners add this at the end

    <a
    href="URL OF SITE HERE"><img src="URL OF IMAGE HERE"
    </marquee>
    </td></a>

    116.Change Banner for Specific Forums
    Admin CP->Board Wrappers->Header & Body, after <% NAVIGATION %>

    <script type='text/javascript'>
    // Banners for specific forums
    // by Stefan
    forumBanners = []

    // add banners for forums here
    // use this format
    // forumBanners['forum<forum#>'] = 'banner URL'
    forumBanners['forum#1'] = 'URL of banner 1'
    forumBanners['forum#2'] = 'URL of banner 2'

    // don't edit after this line
    e = document.getElementById('navstrip')
    bnr = null
    if (e) {
    l = e.getElementsByTagName('A')
    bnr = null
    for (n = 0; n < l.length; n++) {
    if (l[n].href.match(/[&?]showforum=(\d+)/) || l[n].href.match(/[&?]f=(\d+)/)) {
    bnr = forumBanners['forum'+RegExp.$1]
    }}
    if (bnr) {
    e = document.getElementById('logostrip')
    im = e.getElementsByTagName('img')
    if (im && im.length) {
    im[0].src = bnr
    } else {
    im = new Image()
    im.src = bnr
    e.insertBefore(im, e.firstChild)
    }}}
    </script>

    117.Change 'Inbox' text at userlinks

    Admin CP->Board Wrappers->Header & Body, directly after <% BOARD HEADER %>.

    <script type='text/javascript'>
    <!--
    // Change the Inbox text at the user links
    // code by ticlo/Stefan

    e = document.getElementById('userlinks')
    a = e.getElementsByTagName('A')
    for (i =0; i < a.length; i++) {
    if (a[i].href.indexOf('act=Msg&CODE=01') != -1) {
    s = a[i].innerHTML
    a[i].innerHTML = s.replace(/Inbox/, 'Messages')
    break
    }}
    // -->
    </script>

    118.Change Portal link text
    Admin CP->Board Wrappers->Header & Body, after <% BOARD HEADER %>

    <script type='text/javascript'>
    <!--
    // change portal link text
    // code by Stefan

    e = document.getElementById('submenu')
    if (e) {
    a = e.getElementsByTagName('A')
    for (n = 0; n < a.length; n++) {
    if (a[n].href.match('act=site')) {
    a[n].innerHTML = 'NAME HERE'
    break
    }}}
    // -->
    </script>

    119.Chat room (Link to a chat room used by other forums as well)
    ADMIN CP > SYSTEM SETTINGS > BOARD GUIDELINES

    <iframe src="http://members.shaw.ca/globalpersia/chatroom.html" height=290 width=500 scrolling=no border="0" frameborder="no" frameborder="0"> ></iframe>

    120.Code box into Textbox (make any code look like normail text for easy read & dose not strech
    the board)
    Admin CP >> Board Wrappers >> Footer.

    <script>
    /*
    Codes in Textboxes
    Created by iFusion

    http://forum.ifcode.com
    */

    var iTD = document.getElementsByTagName('TD')
    for(i=0;i<iTD.length;i++){
    if(iTD[i].id=="CODE"){
    iTD[i].innerHTML = "<TEXTAREA cols=90 rows=8>" + iTD[i].innerHTML.replace(/<BR>/gi ,"\n").replace("<!--ec1-->","").replace("<!--c2-->","") + "</TEXTAREA>"
    }
    }
    </script>

    121.custom avatar gallary
    Admin CP > Board Wrappers > Footer
    To add more galleries just copy the newGal[0] line, and increment the number e.g. in this case it would be newGal[1]


    <script>//Custom Avatar Gallery (A leaving present) - By Markup / MKII
    newGal=[]
    newGal[0]=["Misc","pic1@http://your_images.com/1.gif","pic2@http://your_images.com/2.gif","pic3@http://your_images.com/3.gif"]
    form=document.forms
    for(i=0;i<form.length;i++)
    if(form[i].elements['av_cat'])
    {
    elm=form[i].elements['av_cat']
    for(n=0;n<newGal.length;n++)
    {
    nOpt=elm.options[0].cloneNode()
    nOpt.value=newGal[n][0]
    nOpt.innerHTML=newGal[n][0]
    elm.appendChild(nOpt)
    if(location.href.match("av_gal="+unescape(newGal[n][0])))
    buildGallery(newGal[n])
    }
    form[i].onsubmit=function(){for(n=0;n<newGal.length;n++)i f(elm.value==newGal[n][0]){cat=newGal[n][0];this.action="javascriptocation='http://'+location.hostname+location.pathname+'?act=UserCP &CODE=getgallery&av_gal='+cat"}}
    break
    }
    function buildGallery(selected)
    {
    div=document.getElementsByTagName("DIV")
    for(n=0;n<div.length;n++)
    if(div[n].innerHTML.match("Avatar Gallery: "))
    div[n].innerHTML="Avatar Gallery: "+unescape(location.href.match(/av_gal=(.*)/)[1])
    table=form[i+1].getElementsByTagName("TABLE")[0]
    newTable=table.cloneNode()
    table.removeNode(true)
    form[i+1].elements['CODE'].value=25
    nRow=newTable.insertRow(-1)
    for(n=1;n<selected.length;n++)
    {
    nCell=nRow.insertCell(-1)
    nCell.align="center"
    nCell.innerHTML="<img src="+selected[n].split("@")[1]+" border=0><br><input type=radio class=radiobutton name=url_avatar value="+selected[n].split("@")[1]+">&nbsp;<b>"+selected[n].split("@")[0]+"</b>"
    if(n%5==0&&n+1<selected.length)
    nRow=newTable.insertRow(-1)
    }
    form[i+1].insertBefore(newTable,form[i+1].getElementsByTagName("DIV")[0])
    }
    </script>

    122.Day Month And Year Code
    admin cp >>> skinning and styles >>> board wrappers >>> header and body >>> and place somewhere under navigation but above form

    <html>
    <body>
    <script type="text/javascript">
    var d=new Date()
    var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thu rsday","Friday","Saturday")
    var monthname=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","A ug","Sep","Oct","Nov","Dec")
    document.write(weekday[d.getDay()] + " ")
    document.write(d.getDate() + ". ")
    document.write(monthname[d.getMonth()] + " ")
    document.write(d.getFullYear())
    </script>
    </body>
    </html>


    123.easy clock
    any where in board wrappers

    <div align="center">
    <table width="500px" id="menu" bgcolor="black" border="1px" bordercolor="gray" cellpadding="6" cellspacing="4">
    <tr>
    <td align="center" valign="middle">
    <script>
    document.write("<div style='color:white'>"+Date()+"</div>")
    </script>
    </td>
    </tr>
    </table>
    </div>

    124.Email button

    <body>
    <div align="center">
    <script language="JavaScript">
    function EmailLink(){
    window.location = "mailto:"+"?subject=I thought this link might interest you." + "&body="+document.title+" "+window.location;
    }
    document.write('<input class="select" TYPE="button" VALUE="E-mail this link to a friend" onClick="EmailLink()"></form>')
    </script>
    </div>


    125.Even Simpler Money Hack
    To use this code, go to the "Board wrappers" section in the Admin CP, then the "Footer" box.

    <script type="text/javascript">
    // Money code
    // By Gornakle of InvisionFree.com

    var sign = "$";
    var name = "Money";
    var PerPost = 10;
    var default_amount = 0;

    var MID=[];
    MID["member1"]="20"
    MID["member2"]="-30"
    MID["member3"]="120"

    // No need to edit below this line!
    td=document.getElementsByTagName("TD")
    for(i=0;i<td.length;i++) {
    if((td[i].className=="post1"||td[i].className=="post2")&&td[i].innerHTML.match("Posts: ")&&td[i].width!="100%") {
    sPost=td[i].getElementsByTagName("SPAN")[0]
    if(sPost.innerHTML.replace(",","").replace('.','') .replace(' ','').match(/Posts: (\d+)/)) Posts = parseInt(RegExp.$1)
    uname = td[i-2].innerHTML.replace(/<[^>]+>/g,"").replace(/&nbsp;/g,"")
    if(MID[uname]){ EXP = (parseInt(MID[uname]) + (Posts * PerPost))+parseInt(default_amount) }
    else{ EXP = (Posts * PerPost)+parseInt(default_amount) }
    var midR="Group: " + sPost.innerHTML.split('Group: ')[1]
    var topR=sPost.innerHTML.split('Group: ')[0]
    if(sPost.innerHTML.match('<!-- placeholder -->')) {
    NewCode = sPost.innerHTML.replace("<!-- placeholder -->", ""+name + ": " + sign + EXP + "<br><!-- placeholder -->")
    }
    else {
    NewCode = topR + midR +name + ": " + sign + EXP + "<br><!-- placeholder --><br><br>"
    }

    sPost.innerHTML = NewCode
    }}
    </script>

    126.to add money to some one

    MID["NAME HERE"]="100"

    127.to take money from some one

    MID["YourName"]="-100"

    128.Extreme RPG Hack v3.2

    This Hack has 11 races

    -Archer
    -Wizard
    -Warrior
    -Knight
    -Assassin
    -Paladin
    -Shadow Mage
    -Cleric
    -Ranger
    -Ninja
    -Samurai
    and also a "Not Playing" Option

    It has 6 statistics, namely:

    -HP
    -Intelligence
    -Strength
    -Magic
    -Defense
    -Agility

    And also has different spells/items. This RPG also comes with a set of rules for playing, something not included in the other versions . Money was not included and set to 0, though you may choose to change this if you would like. I am working on a way to add/subtract money via a mod or admin option, and plan on adding another characteristic: Elements.

    If there are any problems with the code, please wither post the problem or PM me.


    AdminCP>Skinning&Styles>BoardWrappers>Footer
    Make sure it is at the top of oyur footer

    Code -

    <style>
    .rpgmain {font-size: 12px}
    .rpgmain2 {color: 000000}
    </style>


    <script>
    /*
    RPG Hack v3.2
    Created by Webworldx & Peter - 17.11.03
    Updated for xHTML compliance by Magus

    This code may not be redistributed without express permission.
    This header must stay intact at all times. Failure to comply with the above may result in your board being deleted.
    */

    RPGHigh="2000"
    NextLevel="15"
    MoneySign="$"
    NextWeapon="60"
    NextItem="20"
    AddMoney="0"

    MoneyOn="Y"
    ItemWeapOn="Y"

    var BaseURL="http://www.webpost.net/ww/wwx/ifrpg/images"
    var StatsURL="http://www.webpost.net/ww/wwx"

    var statsImage=[];
    statsImage[0]=["HP","/hp.gif"]
    statsImage[1]=["INT","/mag.gif"]
    statsImage[2]=["STR","/str.gif"]
    statsImage[3]=["MAG","/mag.gif"]
    statsImage[4]=["DEF","/def.gif"]
    statsImage[5]=["AGL","/str.gif"]
    var theEXP = ["EXP","/exp.gif"]



    var theEXP = ["EXP","/exp.gif"]

    function getStats() {
    TheStats=[];
    stats=[];
    HP=0;INT=1;STR=2;MAG=3;DEF=4;AGL=5;Archer=1;Wizard =2;Warrior=3;Knight=
    4;Assassin=5;Paladin=6;ShadowMage=7;Cleric=8;Range r=9;Ninja=10;Samurai
    i=11;


    TheStats[HP]=[]
    TheStats[HP][Archer]=PostCount * 1.3 + 15
    TheStats[HP][Wizard]=PostCount * 1.3 + 15
    TheStats[HP][Warrior]=PostCount * 1.3 + 15
    TheStats[HP][Knight]=PostCount * 1.3 + 15
    TheStats[HP][Assassin]=PostCount * 1.3 + 15
    TheStats[HP][Paladin]=PostCount * 1.3 + 15
    TheStats[HP][ShadowMage]=PostCount * 1.3 + 15
    TheStats[HP][Cleric]=PostCount * 1.3 + 15
    TheStats[HP][Ranger]=PostCount * 1.3 + 15
    TheStats[HP][Ninja]=PostCount * 1.3 + 15
    TheStats[HP][Samuraii]=PostCount * 1.3 + 15

    TheStats[STR]=[]
    TheStats[STR][Archer]=parseInt(TheStats[HP][Archer] * 1.15)
    TheStats[STR][Wizard]=parseInt(TheStats[HP][Wizard] * .65)
    TheStats[STR][Warrior]=parseInt(TheStats[HP][Warrior] * 1.75)
    TheStats[STR][Knight]=parseInt(TheStats[HP][Knight] * 1.85)
    TheStats[STR][Assassin]=parseInt(TheStats[HP][Assassin] * 1.2)
    TheStats[STR][Paladin]=parseInt(TheStats[HP][Paladin] * .8)
    TheStats[STR][ShadowMage]=parseInt(TheStats[HP][ShadowMage] * .85)
    TheStats[STR][Cleric]=parseInt(TheStats[HP][Cleric] * .8)
    TheStats[STR][Ranger]=parseInt(TheStats[HP][Ranger] * 1.75)
    TheStats[STR][Ninja]=parseInt(TheStats[HP][Ninja] * 1.05)
    TheStats[STR][Samuraii]=parseInt(TheStats[HP][Samuraii] * 1.6)

    TheStats[MAG]=[]
    TheStats[MAG][Archer]=parseInt(TheStats[HP][Archer] * .65)
    TheStats[MAG][Wizard]=parseInt(TheStats[HP][Wizard] * 1.75)
    TheStats[MAG][Warrior]=parseInt(TheStats[HP][Warrior] * .85)
    TheStats[MAG][Knight]=parseInt(TheStats[HP][Knight] * .65)
    TheStats[MAG][Assassin]=parseInt(TheStats[HP][Assassin] * .8)
    TheStats[MAG][Paladin]=parseInt(TheStats[HP][Paladin] * 1.75)
    TheStats[MAG][ShadowMage]=parseInt(TheStats[HP][ShadowMage] * 1.85)
    TheStats[MAG][Cleric]=parseInt(TheStats[HP][Cleric] * 1.7)
    TheStats[MAG][Ranger]=parseInt(TheStats[HP][Ranger] * .8)
    TheStats[MAG][Ninja]=parseInt(TheStats[HP][Ranger] * .9)
    TheStats[MAG][Samuraii]=parseInt(TheStats[HP][Ranger] * 1.2)

    TheStats[DEF]=[]
    TheStats[DEF][Archer]=parseInt(TheStats[HP][Archer] * 1.75)
    TheStats[DEF][Wizard]=parseInt(TheStats[HP][Wizard] * .85)
    TheStats[DEF][Warrior]=parseInt(TheStats[HP][Warrior] * 1.85)
    TheStats[DEF][Knight]=parseInt(TheStats[HP][Knight] * 1.25)
    TheStats[DEF][Assassin]=parseInt(TheStats[HP][Assassin] * .9)
    TheStats[DEF][Paladin]=parseInt(TheStats[HP][Paladin] * .9)
    TheStats[DEF][ShadowMage]=parseInt(TheStats[HP][ShadowMage] * .65)
    TheStats[DEF][Cleric]=parseInt(TheStats[HP][Cleric] * 1.2)
    TheStats[DEF][Ranger]=parseInt(TheStats[HP][Ranger] * .9)
    TheStats[DEF][Ninja]=parseInt(TheStats[HP][Ninja] * 1.55)
    TheStats[DEF][Samuraii]=parseInt(TheStats[HP][Samuraii] * .95)

    TheStats[AGL]=[]
    TheStats[AGL][Archer]=parseInt(TheStats[HP][Archer] * 1.85)
    TheStats[AGL][Wizard]=parseInt(TheStats[HP][Wizard] * 1.15)
    TheStats[AGL][Warrior]=parseInt(TheStats[HP][Warrior] * 1.15)
    TheStats[AGL][Knight]=parseInt(TheStats[HP][Knight] * .85)
    TheStats[AGL][Assassin]=parseInt(TheStats[HP][Assassin] * 1.75)
    TheStats[AGL][Paladin]=parseInt(TheStats[HP][Paladin] * 1.2)
    TheStats[AGL][ShadowMage]=parseInt(TheStats[HP][ShadowMage] * 1.15)
    TheStats[AGL][Cleric]=parseInt(TheStats[HP][Cleric] * .75)
    TheStats[AGL][Ranger]=parseInt(TheStats[HP][Ranger] * 1.7)
    TheStats[AGL][Ninja]=parseInt(TheStats[HP][Ninja] * 1.6)
    TheStats[AGL][Samuraii]=parseInt(TheStats[HP][Samuraii] * 1.55)

    TheStats[INT]=[]
    TheStats[INT][Archer]=parseInt(TheStats[HP][Archer] * 1.5)
    TheStats[INT][Wizard]=parseInt(TheStats[HP][Wizard] * 1.85)
    TheStats[INT][Warrior]=parseInt(TheStats[HP][Warrior] * .65)
    TheStats[INT][Knight]=parseInt(TheStats[HP][Knight] * 1.15)
    TheStats[INT][Assassin]=parseInt(TheStats[HP][Assassin] * 1.7)
    TheStats[INT][Paladin]=parseInt(TheStats[HP][Paladin] * 1.7)
    TheStats[INT][ShadowMage]=parseInt(TheStats[HP][ShadowMage] * 1.75)
    TheStats[INT][Cleric]=parseInt(TheStats[HP][Cleric] * 1.75)
    TheStats[INT][Ranger]=parseInt(TheStats[HP][Ranger] * 1.2)
    TheStats[INT][Ninja]=parseInt(TheStats[HP][Ninja] * .95)
    TheStats[INT][Samuraii]=parseInt(TheStats[HP][Samuraii] * 1.05)

    for (i=0;i<TheStats.length;i++){
    if (ChosenRace==""){
    stats[i]=TheStats[i][1]
    } else {
    stats[i]=TheStats[i][ChosenRace]
    }}

    for (i=0;i<stats.length;i++){
    if (parseInt(stats[i]) >= parseInt(RPGHigh)) { stats[i]=RPGHigh; }
    if (parseInt(stats[i]) < 0 ) { stats[i]=0 }
    }
    return stats
    }

    var Race=[];
    Race[1] = ["1","Archer"]
    Race[2] = ["2","Wizard"]
    Race[3] = ["3","Warrior"]
    Race[4] = ["4","Knight"]
    Race[5] = ["5","Assassin"]
    Race[6] = ["6","Paladin"]
    Race[7] = ["7","ShadowMage"]
    Race[8] = ["8","Cleric"]
    Race[9] = ["9","Ranger"]
    Race[10] = ["10","Ninja"]
    Race[11] = ["11","Samuraii"]
    Race[12] = ["12","Not Playing"]

    var WPName=[ [] , [] ];
    WPName[0][1]=["Short Bow","Gloves","Elven Boots","Thick Leather Vest"]
    WPName[0][2]=["Short Staff","Wizard Cloak","Ice Wave","Fire Ball","Static Shield"]
    WPName[0][3]=["Training Sword","Light Armor","Helm","Spear"]
    WPName[0][4]=["Sword","Helm","Light Armor","Gloves"]
    WPName[0][5]=["Poison Blades","Dagger","Void","Elven Cloak"]
    WPName[0][6]=["Sword","Energy Wave","Light Armour","Medicine"]
    WPName[0][7]=["Staff","Wizard Cloak","Abyssal Flame","Shadow Storm"]
    WPName[0][8]=["Staff","Clerical Vest","Spell of Healing","Simple Medicine"]
    WPName[0][9]=["Bow","Sword","Light Armor","Elven Boots"]
    WPName[0][10]=["Katar","Ninja Star","Light Vest","Elven Boots"]
    WPName[0][11]=["Training Sword","Light Armor","Gloves","Bow"]

    WPName[1][1]=["Composite Bow","Leather Gauntlents","Stealth Boots","Brigandine"]
    WPName[1][2]=["WIzard Staff","Cloak of the Magi","Blizzard","Hail of Flame"]
    WPName[1][3]=["Death Axe","Plate Mail","Full Helm","Javelin"]
    WPName[1][4]=["Broad Sword","Brigandine","Enchanted Armor","War Hammer"]
    WPName[1][5]=["Assassin Blade","War Boomerang","Stealth Armor","Covert Gloves"]
    WPName[1][6]=["Sword of Light","Holy Flame","Platemail","Healer?s Hands"]
    WPName[1][7]=["Chaos Staff","Shadow Mail","Meteor","Dark Storm"]
    WPName[1][8]=["Clerical Staff","Robe of Wisdom","Revive Root","Healing Wind"]
    WPName[1][9]=["Ranger Bow","Haliberd of the Woods","Platemail","Boots of Haste"]
    WPName[1][10]=["Dragon Katars","Throwing Blades","Armor","Boots of Haste"]
    WPName[1][11]=["Katana","Gauntlents","Samuraii Armor","Composite Bow"]


    var WPURL=[ [] , [] ];
    WPURL[0][1]=["bow","gloves","grassboots","thickleather"]
    WPURL[0][2]=["staff","cloak","freeze","basicheal","seismicwind" ,"Poison Mists"]
    WPURL[0][3]=["wooden","lightarmour","helm","spear"]
    WPURL[0][4]=["wooden","helm","lightarmour","gloves"]
    WPURL[0][5]=["boompoison","epeemana","repel","cloak"]
    WPURL[0][6]=["steel","basicheal","lightarmour","healleaf"]
    WPURL[0][7]=["staff","cloak","basicheal","deathcurse"]
    WPURL[0][8]=["staff","cloak","basicheal","healleaf"]
    WPURL[0][9]=["bow","wooden","lightarmour","grassboots"]
    WPURL[0][10]=["katar","etoileninja","cloak","grassboots"]
    WPURL[0][11]=["wooden","lightarmour","gloves","garudabuster"]


    WPURL[1][1]=["haquebute","leathergt","jungleboots","brigand ine"]
    WPURL[1][2]=["elitestaff","cloaklight","freeze","basicheal","de athcurse"]
    WPURL[1][3]=["doomhache","immunearmour","dazzlinghelm","spfores aken"]
    WPURL[1][4]=["kora","brigandine","strongarmour","maillet"]
    WPURL[1][5]=["yatagan","fendoir","lightarmour","leathergt"]
    WPURL[1][6]=["excalibur","fireorb","immunearmour","healleaf "]
    WPURL[1][7]=["elitestaff","thickleather","fireorb","seismicwind "]
    WPURL[1][8]=["elitestaff","cloaklight","herbe","seismicwind "]
    WPURL[1][9]=["grandarc","hallebard","immunearmour","jungleboots "]
    WPURL[1][10]=["griffesdedragon","boompoison","strongarmour","jun gleboots"]
    WPURL[1][11]=["yatagan","manicle","strongarmour","haquebute"]


    var Items=[]
    Items[0]=["Fire Orb","Heal Leaf","Vial of Power","Protect Spell","Barrel","Candy","Chocolate"]
    Items[1]=["fireorb","healleaf","strincrease","lock","baril", "bonbon","chocolat"]


    var Extension=".gif"
    </script>


    <script src="http://webpost.net/ww/wwx/ifrpg/images/u_rpgv3profile.js"></script>

    <script src="http://webpost.net/ww/wwx/ifrpg/images/u_rpgv3forum.js"></script>


    129.Shoutbox in portal
    Admin CP > System Settings > IPDynamic Lite Set-up

    Go to Show Affiliates box content Raw HTML enabled
    Enter your shoutbox html code in there. (Need a shoutbox code? go to http://www.activetopics.com
    Under your html code put this

    code -

    <script language="Javascript" type="text/javascript">
    <!--
    function change(item,item2) {
    var range = document.body.createTextRange();
    range.collapse(true);
    if (location.href.indexOf("action=") != -1 ) {
    return false;
    } else {while (range.findText(item)) {
    range.text=item2;
    range.collapse(false); }}}

    change("Recommended Sites","Shoutbox");
    // -->
    </script>

    130.vBulletin 3 Style Logout
    Simply slide into your footers:


    <script>
    // vBulletin 3 Style Logout - Leave Copyright Intact Wherever Used
    // Created For Invision Free
    // Author: Zero Tolerance © Game Zone | Evolution 2004 [http://gzevolution.net]
    link=document.body.getElementsByTagName('a')
    for(a=0;a<link.length;a++){if(link[a].href.indexOf('act=Login&CODE=03')!=-1){
    link[a].outerHTML=link[a].outerHTML.replace('href','onClick="return LogOut();" href')}}
    function LogOut(){ht = document.body
    ht.style.filter = "progidXImageTransform.Microsoft.BasicImage(grayscale=1)"
    if (confirm('Are you sure you want to log out?')){return true;
    } else {ht.style.filter="";return false;}}
    </script>

    HEX Codes



    can u rate it out of 10 even if u dont realy even half of it

  2. #2
    Join Date
    Nov 2004
    Location
    HabboWeb FM Offices
    Posts
    3,019
    Tokens
    0

    Latest Awards:

    Default

    you got that off a website

  3. #3
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by .:::Cr:::.
    you got that off a website
    thats what I was thinking "/


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  4. #4
    Join Date
    Jun 2005
    Location
    USA
    Posts
    2,047
    Tokens
    0

    Latest Awards:

    Post

    Quote Originally Posted by splintercell!
    thats what I was thinking "/
    That would have took him ages :rolleyes:
    *Image Removed*

    Thank you Brad for the sig


    Signature edited by Nick- (Forum Super Moderator): Please do not have images that exceed the limit for non VIPs (700 x 150) in your signature.

  5. #5
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Id of thoght someone would have become board of copy and pasteing before it got that long "/

  6. #6
    Join Date
    Jul 2004
    Location
    Webby Forums!
    Posts
    1,879
    Tokens
    0

    Latest Awards:

    Default

    me 2 129 different scripts but half of them he just went on some other site and copied them..


    Chilimagik.net // Reviews, Band Biographies, News, Pics + Loads More!!
    [Thybag.co.uk - Vive la revolutione]

  7. #7
    Join Date
    Jul 2005
    Location
    North Wales
    Posts
    4,233
    Tokens
    1,544

    Latest Awards:

    Default

    yeh i coped some but not all

  8. #8
    Join Date
    Jun 2005
    Location
    Manchester
    Posts
    3,187
    Tokens
    0

    Latest Awards:

    Default

    I bet half of them codes will probly never be used.

  9. #9
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    Quote Originally Posted by redtom
    yeh i coped some but not all
    Can you give an exsample of one you made then, since athogh i havent looked threw em all i havent seen one without a copyright or i havent seen else where "/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •