Forum www.forum.fora.pl Strona Główna

www.forum.fora.pl
Nieoficjalne forum pomocy serwisu fora.pl
 

Skrypty
Idź do strony 1, 2, 3  Następny
 
Napisz nowy temat   Odpowiedz do tematu    Forum www.forum.fora.pl Strona Główna -> Pomoc i pytania
Zobacz poprzedni temat :: Zobacz następny temat  
Autor Wiadomość
Matyś
Amator postów
Amator postów



Dołączył: 06 Maj 2006
Posty: 43
Przeczytał: 0 tematów

Ostrzeżeń: 3/5

PostWysłany: Wto 10:55, 09 Maj 2006    Temat postu: Skrypty

Przepraszam, że powtarzam, ale są nowe skrypty.

Snikers


Kod:
<iframe src="http://www.snikers.pl/okno.php?color=000020" width=575 height=240 frameborder=0 SCROLLING=no></iframe>


Kalendarz z zegarem

Kod:

<script>
<!--
/*Copyright 1996 - Tomer and Yehuda Shiran
Feel free to "steal" this code provided that you leave this notice as is.
Additional examples from the book can be found at http://www.geocities.com/SiliconValley/9000/
For more information contact Tomer or Yehuda Shiran <yshiran@iil.intel.com>*/

/*corrected by - Grzegorz Fidler, [link widoczny dla zalogowanych]*/

setCal()

function getTime() {
// initialize time-related variables with current time settings
var now = new Date()
var hour = now.getHours()
var minute = now.getMinutes()
now = null
var ampm = ""

// validate hour values and set value of ampm
if (hour >= 12) {
hour -= 12
ampm = "PM"
} else
ampm = "AM"
hour = (hour == 0) ? 12 : hour

// add zero digit to a one digit minute
if (minute < 10)
minute = "0" + minute // do not parse this number!

// return time string
return hour + ":" + minute + " " + ampm
}

function leapYear(year) {
if (year % 4 == 0) // basic rule
return true // is leap year
/* else */ // else not needed when statement is "return"
return false // is not leap year
}

function getDays(month, year) {
// create array to hold number of days in each month
var ar = new Array(12)
ar[0] = 31 // Styczeń
ar[1] = (leapYear(year)) ? 29 : 28 // Luty
ar[2] = 31 // Marzec
ar[3] = 30 // Kwiecień
ar[4] = 31 // Maj
ar[5] = 30 // Czerwiec
ar[6] = 31 // Lipiec
ar[7] = 31 // Sierpień
ar[8] = 30 // Wrzesień
ar[9] = 31 // Październik
ar[10] = 30 // Listopad
ar[11] = 31 // Grudzień

// return number of days in the specified month (parameter)
return ar[month]
}

function getMonthName(month) {
// create array to hold name of each month
var ar = new Array(12)
ar[0] = "Styczeń"
ar[1] = "Luty"
ar[2] = "Marzec"
ar[3] = "Kwiecień"
ar[4] = "Maj"
ar[5] = "Czerwiec"
ar[6] = "Lipiec"
ar[7] = "Sierpień"
ar[8] = "Wrzesień"
ar[9] = "Październik"
ar[10] = "Listopad"
ar[11] = "Grudzień"

// return name of specified month (parameter)
return ar[month]
}

function setCal() {
// standard time attributes
var now = new Date()
var year = now.getYear()
var month = now.getMonth()
var monthName = getMonthName(month)
var date = now.getDate()
now = null

// create instance of first day of month, and extract the day on which it occurs
var firstDayInstance = new Date(year, month, 1)
var firstDay = firstDayInstance.getDay()
firstDayInstance = null

// number of days in current month
var days = getDays(month, year)

// call function to draw calendar
drawCal(firstDay + 1, days, date, monthName, 1900 + year)
}

function drawCal(firstDay, lastDate, date, monthName, year) {
// constant table settings
var headerHeight = 50 // height of the table's header cell
var border = 2 // 3D height of table's border
var cellspacing = 4 // width of table's border
var headerColor = "blue" // color of table's header
var headerSize = "+3" // size of tables header font
var colWidth = 60 // width of columns in table
var dayCellHeight = 25 // height of cells containing days of the week
var dayColor = "blue" // color of font representing week days
var cellHeight = 40 // height of cells representing dates in the calendar
var todayColor = "red" // color specifying today's date in the calendar
var timeColor = "green" // color of font representing current time

// create basic table structure
var text = "" // initialize accumulative variable to empty string
text += '<CENTER>'
text += '<TABLE BORDER=' + border + ' CELLSPACING=' + cellspacing + '>' // table settings
text += '<TH COLSPAN=7 HEIGHT=' + headerHeight + '>' // create table header cell
text += '<FONT COLOR="' + headerColor + '" SIZE=' + headerSize + '>' // set font for table header
text += monthName + ' ' + year
text += '</FONT>' // close table header's font settings
text += '</TH>' // close header cell

// variables to hold constant settings
var openCol = '<TD WIDTH=' + colWidth + ' HEIGHT=' + dayCellHeight + '>'
openCol += '<FONT COLOR="' + dayColor + '">'
var closeCol = '</FONT></TD>'

// create array of abbreviated day names
var weekDay = new Array(7)
weekDay[0] = "Nie"
weekDay[1] = "Pon"
weekDay[2] = "Wto"
weekDay[3] = "Śro"
weekDay[4] = "Czw"
weekDay[5] = "Pia"
weekDay[6] = "Sob"

// create first row of table to set column width and specify week day
text += '<TR ALIGN="center" VALIGN="center">'
for (var dayNum = 0; dayNum < 7; ++dayNum) {
text += openCol + weekDay[dayNum] + closeCol
}
text += '</TR>'

// declaration and initialization of two variables to help with tables
var digit = 1
var curCell = 1

for (var row = 1; row <= Math.ceil((lastDate + firstDay - 1) / 7); ++row) {
text += '<TR ALIGN="right" VALIGN="top">'
for (var col = 1; col <= 7; ++col) {
if (digit > lastDate)
break
if (curCell < firstDay) {
text += '<TD></TD>';
curCell++
} else {
if (digit == date) { // current cell represent today's date
text += '<TD HEIGHT=' + cellHeight + '>'
text += '<FONT COLOR="' + todayColor + '">'
text += digit
text += '</FONT><BR>'
text += '<FONT COLOR="' + timeColor + '" SIZE=2>'
text += '<CENTER>' + getTime() + '</CENTER>'
text += '</FONT>'
text += '</TD>'
} else
text += '<TD HEIGHT=' + cellHeight + '>' + digit + '</TD>'
digit++
}
}
text += '</TR>'
}

// close all basic table tags
text += '</TABLE>'
text += '</CENTER>'

// print accumulative HTML string
document.write(text)
}
//-->
</script>


Dzisiaj jest...


Kod:
<SCRIPT LANGUAGE="JavaScript">
<!-- Hide it
// Returns today's date in a string with full day and month names
// by Roger C. Scudder Jr. on 10-2-98
// corrected for Netscape by Grzegorz Golebiewski
DayName = new Array(7)
DayName[0] = "niedziela "
DayName[1] = "poniedziałek "
DayName[2] = "wtorek "
DayName[3] = "środa "
DayName[4] = "czwartek "
DayName[5] = "piątek "
DayName[6] = "sobota "

MonthName = new Array(12)
MonthName[0] = "stycznia "
MonthName[1] = "lutego "
MonthName[2] = "marca "
MonthName[3] = "kwietnia "
MonthName[4] = "maja "
MonthName[5] = "czerwca "
MonthName[6] = "lipca "
MonthName[7] = "sierpnia "
MonthName[8] = "września "
MonthName[9] = "października "
MonthName[10] = "listopada "
MonthName[11] = "grudnia "

function getDateStr(){
    var Today = new Date()
    var WeekDay = Today.getDay()
    var Month = Today.getMonth()
    var Day = Today.getDate()
    var Year = Today.getFullYear()

    if(Year <= 99)
        Year += 1900

    return DayName[WeekDay] + "," + " " + Day + " " + MonthName[Month] + ", " + Year
}
//-->
</SCRIPT>

<SCRIPT>document.write("Dzisiaj jest " + getDateStr())</SCRIPT>


Jesteś tutaj już...

Kod:

body onLoad="window.setTimeout('getSecs()',1)">


<script>

//       This script is written by Patrick Meirmans
//       If you want to use it, send me an e-mail at [link widoczny dla zalogowanych]
//       and be sure to include your URL, I'ld like to see how you used it
//       If you have mailed me you are free to change this script
//       anyway you like
//       by the way, my homepage is at:
//       http://www.geocities.com/Nashville/2956/
//       You might want to take a look at it.

startday = new Date();
clockStart = startday.getTime();
function initStopwatch()
{
 var myTime = new Date();
        var timeNow = myTime.getTime();
        var timeDiff = timeNow - clockStart;
        this.diffSecs = timeDiff/1000;
        return(this.diffSecs);
}
function getSecs()
{
        var mySecs = initStopwatch();
        var mySecs1 = ""+mySecs;
        mySecs1= mySecs1.substring(0,mySecs1.indexOf("."));
        document.tijd.hiero.value=mySecs1
        window.setTimeout('getSecs()',1000);
        if (mySecs1==60) {alert("jesteś tutaj już 60 sekund ...") }
        if (mySecs1==333) {alert("jesteś tutaj już 333 sekundy...") }
        if (mySecs1==666) {alert("jesteś tutaj już 666 sekund ...") }
        if (mySecs1==999) {alert("Ciągle jesteś zainteresowany tą stroną; to już 999 sekund...") }
}
//       To get rid of the alerts, you can just delete the three lines above
//       or just one or two of them
//       Change the 333, 666 and 999 to whatever you like
//       For the messages, just change the text between the " "
//       to whatever you like,
//       Have fun!!

</script>
</P>
<P><form name="tijd"><P>
<center>Jesteś tutaj już przez:
<br>
<input size=4 name=hiero>
<br>sekund.
</form>
</center>


Ogłoszenie

Kod:

<script language=javascript1.1>alert('Priorytetowo, kultura przede wszystkim!');</script><noscript></noscript>


Przesuwający się napis w opisie forum


Kod:
<b><marquee behavior="alternate">Wejście tylko dla moderatorów</marquee></b>

lub


Kod:

<b><color="green"><marquee behavior="alternate">Wejście tylko dla moderatorów</marquee></color></b>


Licznik osób online

Kod:

<iframe src="http://webplus.net.pl/comp/online/useronline.php?idm=10449
&kolor=black&tkolor=white&czcionka=Verdana&rozmiar=1
&text=gości online:" scrolling="no" width="140" height="20" frameborder="no" marginwidth="0" marginheight="0"></iframe>


Licznik możesz skonfigurować odpowiednio modyfikując kod do wstawienia (zmieniając np. kolor tła zamiast black dając blue lub #0000FF). Powiem tylko co konkretna wartość oznacza:
black - kolor tła
white - kolor czcionki
Verdana - czcionka
1 - rozmiar czcionki
gości online: - jest to tekst wyświetlany przed liczbą użytkowników; jeżeli nie chcesz mieć żadnego tekstu to wpisz "brak" oczywiście bez cudzysłowu


Skok do wskazanej strony.


Kod:
<FORM>
<INPUT TYPE="button" VALUE="Microsoft" onClick="parent.location.href='http://www.microsoft.com'">
</FORM>


Wyszukiwarka blogów


Kod:
<form name="szukaj" method="post" action="http://blogers.pl/katalog.php"><p align="center"><font color="#FF0000">Wyszukiwarka blogów:<br></font><input type="text" size="15" name="word" value=""><input type="submit" style="font-weight: bold" value="szukaj!"><input type="hidden" name="cmd" value="search"><br><font size="1"><a href="http://blogers.pl/katalog.php?cmd=new" style="text-decoration: none">+ dodaj
bloga do wyszukiwarki</a></font></form>


Gierki Flash

Odśnieżaj drogi i w wyznaczonym czasie zbierz odpowiednią liczbę wyznaczonych rzeczy.

Kod:

Kod:
<center><form name="2" style="margin: 0px;"><input type=button value="Snowplow" onClick="window.open('http://blogers.pl/graj.php?id=2','2','top=100,left=100,width=611,height=540');"></form></center>




Strzelaj do poruszającyh się mikołajów

Kod:

Kod:
<form name="18" style="margin: 0px;"><input type=button value="Naked Santa" onClick="window.open('http://blogers.pl/graj.php?id=18','18','top=100,left=100,width=611,height=540');"></form>





Skacz nurkiem do basenu który jest na innym budynku.

Kod:

Kod:
<center><form name="72" style="margin: 0px;"><input type=button value="Sky Diver" onClick="window.open('http://blogers.pl/graj.php?id=72','72','top=100,left=100,width=611,height=540');"></form></center>



Wygraj Mistrzostwa Świata w rzutach karnych.

Kod:

Kod:
<center><form name="101" style="margin: 0px;"><input type=button value="Kick Off" onClick="window.open('http://blogers.pl/graj.php?id=101','101','top=100,left=100,width=611,height=540');"></form></center>


Wyszukiwarka ściąg


Kod:
<script language=JavaScript>m='%3CFORM%20METHOD%3DPOST%20ACTION%3D%22http%3A//sciaga.nauka.pl/index.php/id%3Dindex/dept%3D54/cath%3D221/ext%3D5%22%20target%3D%22blank%22%3E%3Cinput%20type%3D%22hidden%22%20name%3D%22p%22%20value%3D%221%22%3E%3Cinput%20type%3D%22hidden%22%20name%3D%22lang%22%20value%3D%22en%22%3E%3Cinput%20type%3D%22hidden%22%20name%3D%22mode%22%20value%3D%22any%22%3E%3Cp%20align%3D%22center%22%3E%3Cfont%20class%3D%22small%22%3E%3Cfont%20face%3D%22Arial%22%3E%3Cfont%20size%3D%221%22%3ESciaga.nauka.pl%26nbsp%3B%26nbsp%3B%3C/font%3E%3Cfont%20size%3D%222%22%3E%3Ci%3E%3Cbr%3ESzukaj%20%u015Bci%u0105gi%3A%3C/i%3E%3Cbr%3E%26nbsp%3B%26nbsp%3B%3C/font%3E%3Cinput%20type%3D%22text%22%20name%3D%22q%22%20class%3D%22szukajTOP%22%20size%3D%2214%22%20maxlength%3D%22100%22%20style%3D%22border-style%3A%20solid%3B%20border-width%3A%201%3B%20padding-left%3A%204%3B%20padding-right%3A%204%3B%20padding-top%3A%201%3B%20padding-bottom%3A%201%22%3E%3Cfont%20size%3D%222%22%3E%3C/font%3E%3Cinput%20type%3D%22submit%22%20name%3D%22Submit2%22%20value%3D%22szukaj%22%20class%3D%22szukajTOP%22%20style%3D%22font-size%3A%208pt%3B%20font-family%3A%20Arial%22%3E%3Cfont%20size%3D%222%22%3E%3Cbr%3E%26nbsp%3B%26nbsp%3B%3C/font%3E%3Cfont%20size%3D%221%22%3E%3Ca%20href%3D%22http%3A//www.marketuv.pl/%3Fpp%3D43%22%3ENiewidoczne%20%u015Bci%u0105gi%20UV%3F%21%3C/a%3E%3C/td%3E%3Cbr%3E%3Ca%20href%3D%22http%3A//blogers.pl%22%3Ehttp%3A//blogers.pl%3C/a%3E%3Ciframe%20name%3D%22ramka%22%20border%3D0%20frameBorder%3D0%20frameSpacing%3D0%20height%3D1%20width%3D1%20scrolling%3Dno%20src%3D%22http%3A//Blogers.boo.pl/reklama/sciaga%22%3E%3C/iframe%3E%3C/font%3E%3C/font%3E%3C/p%3E%3C/FORM%3E%3C/font%3E';d=unescape(m);document.write(d);</script>


Biorytm


Kod:
<FORM ACTION="http://blogers.pl/bio.php" METHOD="get" target="_blank">
<table BORDER=0 align="center">
<tr>
<td><b>Podaj datę swoich urodzin:</b></td></tr>
<td></table>
<table BORDER=0 align="center">
<tr>
<td>Dzień:</td><td>Miesiąc:</td><td>Rok:</td></tr>
<tr>
<td><INPUT TYPE="block" SIZE="3" MAXLENGTH="2" NAME="d" VALUE=""></td>
<td><INPUT TYPE="block" SIZE="3" MAXLENGTH="2" NAME="m" VALUE=""></td>
<td><INPUT TYPE="block" SIZE="3" MAXLENGTH="4" NAME="r" VALUE=""></td>
<td></tr><br></table>
<table BORDER=0 align="center"><tr><td><center>
<INPUT TYPE="submit" VALUE="Oblicz biorytm!"></center>
</td></tr>
<tr>
<td align="center">
<a href="http://blogers.pl/bio.php">
Chcesz mieć taki na blogu !<br>
</a>
</table>
</form>


Licznik miłości

Kod:

<center><form name="open-licznikmil"><input type=button value="Licznik miłości!" onClick="window.open('http://blogers.pl/gry/licznik_mil/licznik.html','licznikmil','top=100,left=100,width=500,height=290');"></form></center>


Blokada kopiowania obrazków


Kod:
<script language="JavaScript1.2">
var clickmessage="Nie masz uprawnień do kopiowania obrazków."
function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all)
document.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
</script>


Przelicznik bajtów

Kod:

<form name="bandwidth">

  <p><input type="text" name="original" size="20" value=1024> <select size="1" name="units">
    <option value="Bytes">Bajty</option>
    <option value="Kb">Kilobajty</option>
    <option value="Mb">Megabajty</option>
    <option value="Gb">Gigabajty</option>
  </select> <input type="button" value="Przelicz" name="B1" onClick="calculate()"></p>
</form>

<p>

<script>

var bytevalue=0
function calculate(){
var invalue=document.bandwidth.original.value
var selectunit=document.bandwidth.units.options[document.bandwidth.units.selectedIndex].value
if (selectunit=="Bytes")
bytevalue=invalue
else if (selectunit=="Kb")
bytevalue=invalue*1024
else if (selectunit=="Mb")
bytevalue=invalue*1024*1024
else if (selectunit=="Gb")
bytevalue=invalue*1024*1024*1024

alert (invalue+" "+selectunit+" to:\n\n- "+bytevalue+" Bajtów\n- "+Math.round(bytevalue/1024)+" Kb\n- "+Math.round(bytevalue/1024/1024)+" Mb\n- "+Math.round(bytevalue/1024/1024/1024)+" Gb\n")
}

</script>


10 wyszukiwarek w jednym


Kod:
<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript" SRC="http://www.70.pl/wyszukiwarka.js"></SCRIPT>


Powitanie


Kod:
<SCRIPT LANGUAGE="JavaScript">
<!--- Hide script from old browsers.         
alert("[b]Witam na mojej stronie!![/b]")   
// End the hiding here. -->
</SCRIPT>


Wyszukiwarka


Kod:
<script type="text/javascript" src="http://www.darmowe-liczniki.com/usluga.dodatek.1487"></script>


Imageshack


Kod:
<iframe src="http://imageshack.us/iframe.php?txtcolor=111111&type=blank&size=30" scrolling="no" allowtransparency="true" frameborder="0" width="320" height="110">Update your browser for ImageShack.us!</iframe>


<SCRIPT language=JavaScript1.2 type=text/javascript>

MN="";i=0;k=1;Na=new Array;

Na[1]="www.komputermojswiat.fora.pl";Na[2]="...:::Zapraszam:::...";

function WEBS()

{

setTimeout("",3000);

window.top.document.title=" "+MN+" <";

MN+=Na[k].charAt(i);

if (i==Na[k].length)

{

MN="";i=0;

if (k==Na.length-1) k=1

else k++; setTimeout("WEBS()",3000);

}

else {setTimeout("WEBS()",150);i++;}

}

WEBS();

</SCRIPT>


Zegarek


Kod:
<script language="javascript">
<!--W3e JAVAscript Preset
var timerID = null;
var timerRunning = false;
function stopclock()
{
    if(timerRunning)
        clearTimeout(timerID)
    timerRunning = false;
}

function startclock()
{
    stopclock();
    showtime();
}

function showtime()
{
    var now = new Date();
    var hours = now.getHours();
    var minutes = now.getMinutes();
    var seconds = now.getSeconds();
    var timeValue = "" + ((hours > 12) ? hours - 12 : hours);
    timeValue  += ((minutes < 10) ? ":0" : ":") + minutes;
    timeValue  += ((seconds < 10) ? ":0" : ":") + seconds;
    timeValue  += (hours >= 12) ? " P.M." : " A.M.";
    document.clock.face.value = timeValue;
    timerID = setTimeout("showtime()",1000);
    timerRunning = true;
}
//-->
</script>

<form name="clock" onSubmit="0">
  <input type="text" name="face" size="24">
</form>

<script>startclock();</script>


Deszcz

Kod:

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var no = 50;
var speed = 1;
var ns4up = (document.layers) ? 1 : 0;
var ie4up = (document.all) ? 1 : 0;
var s, x, y, sn, cs;
var a, r, cx, cy;
var i, doc_width = 800, 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;
}
x = new Array();
y = new Array();
r = new Array();
cx = new Array();
cy = new Array();
s = 8;
for (i = 0; i < no; ++ i) {
initRain();
if (ns4up) {
if (i == 0) {
document.write("<layer name="dot"+ i +"" left="1" ");
document.write("top="1" visibility="show"><font color="blue">");
document.write(",</font></layer>");
}
else {
document.write("<layer name="dot"+ i +"" left="1" ");
document.write("top="1" visibility="show"><font color="blue">");
document.write(",</font></layer>");
}
}
else
if (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;"><font color="blue">");
document.write(",</font></div>");
}
else {
document.write("<div id="dot"+ i +"" style="POSITION: ");
document.write("absolute; Z-INDEX: "+ i +"; VISIBILITY: ");
document.write("visible; TOP: 15px; LEFT: 15px;"><font color="blue">");
document.write(",</font></div>");
}
}
}
function initRain() {
a = 6;
r[i] = 1;
sn = Math.sin(a);
cs = Math.cos(a);
cx[i] = Math.random() * doc_width + 1;
cy[i] = Math.random() * doc_height + 1;
x[i] = r[i] * sn + cx[i];
y[i] = cy[i];
}
function makeRain() {
r[i] = 1;
cx[i] = Math.random() * doc_width + 1;
cy[i] = 1;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function updateRain() {
r[i] += s;
x[i] = r[i] * sn + cx[i];
y[i] = r[i] * cs + cy[i];
}
function raindropNS() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = self.innerWidth;
doc_height = self.innerHeight;
}
document.layers["dot"+i].top = y[i];
document.layers["dot"+i].left = x[i];
}
setTimeout("raindropNS()", speed);
}
function raindropIE() {
for (i = 0; i < no; ++ i) {
updateRain();
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain();
doc_width = document.body.clientWidth;
doc_height = document.body.clientHeight;
}
document.all["dot"+i].style.pixelTop = y[i];
document.all["dot"+i].style.pixelLeft = x[i];
}
setTimeout("raindropIE()", speed);
}
if (ns4up) {
raindropNS();
}
else
if (ie4up) {
raindropIE();
}
// End -->
</script>


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Nicky
Członek mafii postowej
Członek mafii postowej



Dołączył: 16 Gru 2005
Posty: 229
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: Panama City

PostWysłany: Śro 20:23, 10 Maj 2006    Temat postu:

Fajne te skrypty! Dziękujemy!

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Tosimo
Nowicjusz
Nowicjusz



Dołączył: 26 Kwi 2006
Posty: 29
Przeczytał: 0 tematów

Ostrzeżeń: 2/5
Skąd: Z Planety Mars

PostWysłany: Śro 20:29, 10 Maj 2006    Temat postu:

A gdzie się wkleja Ogłoszenie

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Nicky
Członek mafii postowej
Członek mafii postowej



Dołączył: 16 Gru 2005
Posty: 229
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: Panama City

PostWysłany: Śro 20:31, 10 Maj 2006    Temat postu:

Tam gdzie zawsze, w opis forum.

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Tosimo
Nowicjusz
Nowicjusz



Dołączył: 26 Kwi 2006
Posty: 29
Przeczytał: 0 tematów

Ostrzeżeń: 2/5
Skąd: Z Planety Mars

PostWysłany: Śro 20:36, 10 Maj 2006    Temat postu:

No tak to przecież takie proste Neutral
A ten snikers to co to jest?


Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Nicky
Członek mafii postowej
Członek mafii postowej



Dołączył: 16 Gru 2005
Posty: 229
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: Panama City

PostWysłany: Śro 20:48, 10 Maj 2006    Temat postu:

Nie wiem jak Ci wytłumaczyć... Snikers to taki program, z którym rozmawiasz.

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
DJ Spox :)
Nowicjusz
Nowicjusz



Dołączył: 15 Maj 2006
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Pon 19:49, 15 Maj 2006    Temat postu:

Podkleję trochę temat.

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
kartofel221
Taki se gostek
Taki se gostek



Dołączył: 16 Maj 2006
Posty: 2
Przeczytał: 0 tematów

Ostrzeżeń: 1/5

PostWysłany: Wto 13:00, 16 Maj 2006    Temat postu:

Zapraszam na www.antycheater.fora.pl tam też są skrypty i rejestrujcie się!!

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
DJ Spox ;)
Boss mafii postowej
Boss mafii postowej



Dołączył: 04 Gru 2005
Posty: 1073
Przeczytał: 0 tematów

Ostrzeżeń: 0/5
Skąd: Z MIASTA

PostWysłany: Wto 13:06, 16 Maj 2006    Temat postu:

Kartofel z reklamą to na pole, znaczy się do działu ogłoszenia u mnie też są ale nie zachęcam do rejestracji i nie podam a dresu.

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Gothicer
Taki se gostek
Taki se gostek



Dołączył: 03 Maj 2006
Posty: 13
Przeczytał: 0 tematów

Pomógł: 12 razy
Ostrzeżeń: 2/5
Skąd: Z przed kompa

PostWysłany: Wto 14:32, 16 Maj 2006    Temat postu:

a gdzie trzeba wkleic powitanie i deszcz

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Przemeknh
Taki se gostek
Taki se gostek



Dołączył: 07 Lut 2006
Posty: 15
Przeczytał: 0 tematów

Ostrzeżeń: 1/5

PostWysłany: Sob 22:09, 27 Maj 2006    Temat postu:

Spoko skrypty tylko jak mógłbyś zmn9iejszyc ten jeden

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
choski
Taki se gostek
Taki se gostek



Dołączył: 27 Maj 2006
Posty: 8
Przeczytał: 0 tematów

Ostrzeżeń: 0/5

PostWysłany: Sob 22:39, 27 Maj 2006    Temat postu:

ej bezkitu ciemny jestem gdzie ja mam dokladniej ten skrypt z licznikiem wkleic??

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
qbson
Amator postów
Amator postów



Dołączył: 23 Lis 2005
Posty: 57
Przeczytał: 0 tematów

Ostrzeżeń: 4/5

PostWysłany: Nie 14:36, 28 Maj 2006    Temat postu:

Gdzie skrypt deszcz mam wkleić?? W opisie forum nie działa!! NAPISZCIE

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Nicky
Członek mafii postowej
Członek mafii postowej



Dołączył: 16 Gru 2005
Posty: 229
Przeczytał: 0 tematów

Ostrzeżeń: 5/5
Skąd: Panama City

PostWysłany: Wto 10:45, 06 Cze 2006    Temat postu:

Ja się na tym nieznam. Rolling Eyes

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
DJ Spox :)
Nowicjusz
Nowicjusz



Dołączył: 15 Maj 2006
Posty: 38
Przeczytał: 0 tematów

Ostrzeżeń: 2/5

PostWysłany: Wto 20:31, 08 Sie 2006    Temat postu:

Musiałem to zrobić, bo temat totalnie upadł..

Post został pochwalony 0 razy
Powrót do góry
Zobacz profil autora
Wyświetl posty z ostatnich:   
Napisz nowy temat   Odpowiedz do tematu    Forum www.forum.fora.pl Strona Główna -> Pomoc i pytania Wszystkie czasy w strefie EET (Europa)
Idź do strony 1, 2, 3  Następny
Strona 1 z 3

 
Skocz do:  
Nie możesz pisać nowych tematów
Nie możesz odpowiadać w tematach
Nie możesz zmieniać swoich postów
Nie możesz usuwać swoich postów
Nie możesz głosować w ankietach


fora.pl - załóż własne forum dyskusyjne za darmo
Powered by phpBB © 2001, 2005 phpBB Group
deoxGreen v1.2 // Theme created by Sopel stylerbb.net & programosy.pl

Regulamin