HaYLaZ
03-15-2006, 10:00 PM
Hello Friends ı will give you some BBcodes you can use them in your forum easly.
Rainbow text effect
Name:rainbow text effect
tag:rainbow
Replacement:<script language="JavaScript">
<!-- Hide the script from old browsers --
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D";
hex[15]="E"; hex[16]="F";
function ToHex(x){ // Changes a int to hex (in the range 0 to 255)
var high=x/16;
var s=high+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
high=parseInt(s,10); //3
var left=hex[high+1]; // left part of the hex-value
var low=x-high*16; // calculate the rest of the values
s=low+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
low=parseInt(s,10); //3
var right=hex[low+1]; // right part of the hex-value
var string=left+""+right; // add the high and low together
return string;
}
function fadeout(text){
text=text.substring(3,text.length-4);
// gets rid of the HTML-comment-tags
color_d1=255; // any value in 'begin' 0 to 255
mul=color_d1/text.length;
var j=1;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3));
// some other things you can try>>
// "=255-mul*i" to fade out, "=mul*i" to fade in,
// or try "255*Math.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
color_d3=mul*(text.length-i);
color_h3=ToHex(color_d3);
j = i;
if (text.substring(i,i+1) == '&')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == ';') { break; }
}
if (j == text.length) { j = i; }
}
if (text.substring(i,i+1) == '<')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == '>') { break; }
}
if (j == text.length) { j = i; }
}
document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"'>"+
text.substring(i,j+1)+'</FONT>');
i = j;
}
}
// --End Hiding Here -->
</script>
<script language="JavaScript"><!--
{fadeout("-->{param}<!__");}
//--></script>
Example:your text
Description:What you want
Use Option:No
Button image:images/editor/rainbow.gif
using:your text
https://vborg.vbsupport.ru/external/2006/03/7.jpg
Search in search engines
Name:Search in search engines
Tag:search
Replacement:<b>Search {param} in search engines</b>:<br><br>
<a href='http://www.google.com/search?q={param}'>Search in Google</a><br><br>
<a href='http://search.yahoo.com/search?p={param}'>Search in Yahoo</a><br><Br>
<a href='http://search.msn.com/results.aspx?q={param}'>Search in MSN </a><br><Br>
<a href='http://search.aol.com/aolcom/search?query={param}'>Search in AOL</a><br><Br>
<a href='http://webk.ask.com/web?q={param}'>Search in Ask Jeeves </a><br><Br>
<a href='http://www.altavista.com/web/results?itag=ody&q={param}'>Search in Altavista</a><br>
Example:
Description:Searchs your keywords in search engines
Use Option:No
Button image:images/editor/search.gif
using:search word
https://vborg.vbsupport.ru/external/2006/03/8.jpg
Yahoo Online Status
Name:Yahoo Online Status
Tag:yahoo
Replacement:<a href="http://edit.yahoo.com/config/send_webmesg?.target={content}&.src=pg"><img border=0 src="http://opi.yahoo.com/online?u={content}&m=g&t={option}"></a>
Example:youryahooname
Description:Shows yahoo messenger status
Use Option:No
Button image:images/editor/yahoo.gif
using:your yahoo adress
https://vborg.vbsupport.ru/external/2006/03/9.jpg
Warning BBcode
Name:Warning BBcode
tag:warn
Replacement:<div class="ruleswrap">Warning from {option}:<center><b>{param}</b></center></div>
Example:This is a warning!
Description:makes warning to a user
Use option:Yes
Button image:images/editor/warn.gif
using:warning text
https://vborg.vbsupport.ru/external/2006/03/10.jpg
Download
name=Download
tag=download
replacement:<center><img src="images/document.gif"><b>{option}:</b> <a href="{param}">{param}<a/></b></center>
Example:your download link
description:File download BBcode
Use option:Yes
Button image:images/editor/download.gif
using:download link
you can change rar to what you want to download zip,media ect
note:upload document.gif in zip file to images folder
https://vborg.vbsupport.ru/external/2006/03/11.jpg
Paypal Account
name:Paypal Account
tag=paypal
Replacement:<a href='https://www.paypal.com/xclick/business={option}&no_note=1&tax=0&item_name={param}'><img src='https://www.paypal.com/en_US/i/btn/x-click-but21.gif' alt='{param}' border='0' /></a>
Example:Paypal Donation
Description:Makes paypal donation
Use option:yes
Button image:images/editor/paypal.gif
using:donation
https://vborg.vbsupport.ru/external/2007/03/27.jpg
Background Color
name:Background Color
tag:background
Replacement:<div style="width: 100%; background-color:{option}">{param}</div>
Example:your text
Description:Adds background color to your text
Use option:yes
Button image:images/editor/bgcolor.gif
using:text
you can change the color red,yellow etc
https://vborg.vbsupport.ru/external/2006/03/12.jpg
NOTE:upload all files in zip to images/editor folder
dont forget to click install :D
Rainbow text effect
Name:rainbow text effect
tag:rainbow
Replacement:<script language="JavaScript">
<!-- Hide the script from old browsers --
function MakeArray(n){
this.length=n;
for(var i=1; i<=n; i++) this[i]=i-1;
return this
}
hex=new MakeArray(16);
hex[11]="A"; hex[12]="B"; hex[13]="C"; hex[14]="D";
hex[15]="E"; hex[16]="F";
function ToHex(x){ // Changes a int to hex (in the range 0 to 255)
var high=x/16;
var s=high+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
high=parseInt(s,10); //3
var left=hex[high+1]; // left part of the hex-value
var low=x-high*16; // calculate the rest of the values
s=low+""; //1
s=s.substring(0,2); //2 the combination of these = trunc funct.
low=parseInt(s,10); //3
var right=hex[low+1]; // right part of the hex-value
var string=left+""+right; // add the high and low together
return string;
}
function fadeout(text){
text=text.substring(3,text.length-4);
// gets rid of the HTML-comment-tags
color_d1=255; // any value in 'begin' 0 to 255
mul=color_d1/text.length;
var j=1;
for(i=0;i<text.length;i++){
color_d1=255*Math.sin(i/(text.length/3));
// some other things you can try>>
// "=255-mul*i" to fade out, "=mul*i" to fade in,
// or try "255*Math.sin(i/(text.length/3))"
color_h1=ToHex(color_d1);
color_d2=mul*i;
color_h2=ToHex(color_d2);
color_d3=mul*(text.length-i);
color_h3=ToHex(color_d3);
j = i;
if (text.substring(i,i+1) == '&')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == ';') { break; }
}
if (j == text.length) { j = i; }
}
if (text.substring(i,i+1) == '<')
{
for (j = i+1; j < text.length; j++)
{
if (text.substring(j,j+1) == '>') { break; }
}
if (j == text.length) { j = i; }
}
document.write("<FONT COLOR='#"+color_h3+color_h1+color_h2+"'>"+
text.substring(i,j+1)+'</FONT>');
i = j;
}
}
// --End Hiding Here -->
</script>
<script language="JavaScript"><!--
{fadeout("-->{param}<!__");}
//--></script>
Example:your text
Description:What you want
Use Option:No
Button image:images/editor/rainbow.gif
using:your text
https://vborg.vbsupport.ru/external/2006/03/7.jpg
Search in search engines
Name:Search in search engines
Tag:search
Replacement:<b>Search {param} in search engines</b>:<br><br>
<a href='http://www.google.com/search?q={param}'>Search in Google</a><br><br>
<a href='http://search.yahoo.com/search?p={param}'>Search in Yahoo</a><br><Br>
<a href='http://search.msn.com/results.aspx?q={param}'>Search in MSN </a><br><Br>
<a href='http://search.aol.com/aolcom/search?query={param}'>Search in AOL</a><br><Br>
<a href='http://webk.ask.com/web?q={param}'>Search in Ask Jeeves </a><br><Br>
<a href='http://www.altavista.com/web/results?itag=ody&q={param}'>Search in Altavista</a><br>
Example:
Description:Searchs your keywords in search engines
Use Option:No
Button image:images/editor/search.gif
using:search word
https://vborg.vbsupport.ru/external/2006/03/8.jpg
Yahoo Online Status
Name:Yahoo Online Status
Tag:yahoo
Replacement:<a href="http://edit.yahoo.com/config/send_webmesg?.target={content}&.src=pg"><img border=0 src="http://opi.yahoo.com/online?u={content}&m=g&t={option}"></a>
Example:youryahooname
Description:Shows yahoo messenger status
Use Option:No
Button image:images/editor/yahoo.gif
using:your yahoo adress
https://vborg.vbsupport.ru/external/2006/03/9.jpg
Warning BBcode
Name:Warning BBcode
tag:warn
Replacement:<div class="ruleswrap">Warning from {option}:<center><b>{param}</b></center></div>
Example:This is a warning!
Description:makes warning to a user
Use option:Yes
Button image:images/editor/warn.gif
using:warning text
https://vborg.vbsupport.ru/external/2006/03/10.jpg
Download
name=Download
tag=download
replacement:<center><img src="images/document.gif"><b>{option}:</b> <a href="{param}">{param}<a/></b></center>
Example:your download link
description:File download BBcode
Use option:Yes
Button image:images/editor/download.gif
using:download link
you can change rar to what you want to download zip,media ect
note:upload document.gif in zip file to images folder
https://vborg.vbsupport.ru/external/2006/03/11.jpg
Paypal Account
name:Paypal Account
tag=paypal
Replacement:<a href='https://www.paypal.com/xclick/business={option}&no_note=1&tax=0&item_name={param}'><img src='https://www.paypal.com/en_US/i/btn/x-click-but21.gif' alt='{param}' border='0' /></a>
Example:Paypal Donation
Description:Makes paypal donation
Use option:yes
Button image:images/editor/paypal.gif
using:donation
https://vborg.vbsupport.ru/external/2007/03/27.jpg
Background Color
name:Background Color
tag:background
Replacement:<div style="width: 100%; background-color:{option}">{param}</div>
Example:your text
Description:Adds background color to your text
Use option:yes
Button image:images/editor/bgcolor.gif
using:text
you can change the color red,yellow etc
https://vborg.vbsupport.ru/external/2006/03/12.jpg
NOTE:upload all files in zip to images/editor folder
dont forget to click install :D