
John99
Members-
Posts
491 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by John99
-
Re: [Any Mccodes] Mailbox UPDATE! This can be used anythink using tables ..
-
Re: [mccode v2] Preferences When i click on a link in mainmenu it keeps going back to ajaxprefs.php Good ;) As that is what it is meant to do, the demo account can only navigate to mods that are being shown, and this one being the only one on there, that is the only place you can go :P Lol :p
-
Re: [mccode v2] Preferences When i click on a link in mainmenu it keeps going back to ajaxprefs.php
-
Re: [Any Mccodes] Mailbox UPDATE! Well i didnt no you had it! and i didnt steal your idea i made it my self for C.E members :) and thanks.
-
Re: [Any Mccodes] Mailbox UPDATE! New! Has also been working on v2 here: http://deadly-planet.net/mailbox.php If you can't get it to work on v2 hit me up on msn
-
This is a mailbox update can be used any were in game but i just done it for mailbox.php i only done it on mccodes v1 basic mailbox.php So here is the image of what it will look like the colors!: Here we go Open mailbox.php Find function mail_inbox() look for while($r=mysql_fetch_array($q)) { Before that add: $i = 1; Now find while($r=mysql_fetch_array($q)) { again After that add: // Set row color $bgcolor = " bgcolor=\"gray\""; // Display alternate color for rows //if ($i % 2 <> 0) { if ($i % 2 == 0) { $bgcolor = " bgcolor=\"silver\""; } Now find: $fm=urlencode($r['mail_text']); print "</td>\n<td>{$r['mail_subject']}</td></tr> After that there should be <tr> And replace with <tr $bgcolor> Now find: [url='preport.php?ID={$r[']Report[/url]</td><td>{$r['mail_text']}</td></tr>"; Colors can be changed by editing $bgcolor = " bgcolor=\"gray\""; Gray and the other color silver! After that add: $i ++; Now your done! Save the file! Any problems or using a diffrent mailbox system hit me up on MSN: [email protected] CrazY-T
-
[All Versions] Mailing list, for games under development.
John99 replied to 03laceys's topic in Free Modifications
Re: [All Versions] Mailing list, for games under development. Oh yeah i didn't look propley lol and i just typed v in there so make it so people have to have an valid email :D other wise people can flood ur mailing list table :P -
[All Versions] Mailing list, for games under development.
John99 replied to 03laceys's topic in Free Modifications
Re: [All Versions] Mailing list, for games under development. Why not add there users id there :) -
Re: [mccode v2] Annoucements Upgrade! No Problem :D
-
Re: [Any Mccodes] Digital Clock .. Anywebsite Shaved92bravada code the code using [ code] [ /code] But no space between [
-
[mccode] Updated friends, black list & preferences
John99 replied to 03laceys's topic in Free Modifications
Re: [mccode] Updated friends, black list & preferences I aint sure Why.. -
Re: [Any Mccodes] Digital Clock .. Anywebsite WTF, NEW UPDATE Here this one works i tested it :) <style> <!-- .styling{ background-color:black; color:lime; font: bold 15px MS Sans Serif; padding: 3px; } --> </style> <span id="digitalclock" class="styling"></span> <script> <!-- /***************************************** * LCD Clock script- by Javascriptkit.com * Featured on/available at [url]http://www.dynamicdrive.com/[/url] * This notice must stay intact for use *****************************************/ var alternate=0 var standardbrowser=!document.all&&!document.getElementById if (standardbrowser) document.write('<form name="tick"><input type="text" name="tock" size="6"></form>') function show(){ if (!standardbrowser) var clockobj=document.getElementById? document.getElementById("digitalclock") : document.all.digitalclock var Digital=new Date() var hours=Digital.getHours() var minutes=Digital.getMinutes() var dn="AM" if (hours==12) dn="PM" if (hours>12){ dn="PM" hours=hours-12 } if (hours==0) hours=12 if (hours.toString().length==1) hours="0"+hours if (minutes<=9) minutes="0"+minutes if (standardbrowser){ if (alternate==0) document.tick.tock.value=hours+" : "+minutes+" "+dn else document.tick.tock.value=hours+" "+minutes+" "+dn } else{ if (alternate==0) clockobj.innerHTML=hours+"<font color='lime'> : </font>"+minutes+" "+"<sup style='font-size:1px'>"+dn+"</sup>" else clockobj.innerHTML=hours+"<font color='black'> : </font>"+minutes+" "+"<sup style='font-size:1px'>"+dn+"</sup>" } alternate=(alternate==0)? 1 : 0 setTimeout("show()",1000) } window.onload=show //--> </script>
-
Re: [Any Mccodes] Digital Clock .. Anywebsite Update Here try this and images working 2 :p Sorry <table> <td bgcolor="black" height="45"> [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dgc.gif] [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dgc.gif] [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dg8.gif] [img=http://www.ricocheting.com/js/images/clock1/dgpm.gif] </td></table> <script type="text/javascript"><!-- start // created: 2000-2004 ricocheting.com // [url]http://www.ricocheting.com/js/[/url] dg0 = new Image();dg0.src = "dg0.gif"; dg1 = new Image();dg1.src = "dg1.gif"; dg2 = new Image();dg2.src = "dg2.gif"; dg3 = new Image();dg3.src = "dg3.gif"; dg4 = new Image();dg4.src = "dg4.gif"; dg5 = new Image();dg5.src = "dg5.gif"; dg6 = new Image();dg6.src = "dg6.gif"; dg7 = new Image();dg7.src = "dg7.gif"; dg8 = new Image();dg8.src = "dg8.gif"; dg9 = new Image();dg9.src = "dg9.gif"; dgam= new Image();dgam.src= "dgam.gif"; dgpm= new Image();dgpm.src= "dgpm.gif"; dgc = new Image();dgc.src = "dgc.gif"; function dotime(){ theTime=setTimeout('dotime()',1000); d = new Date(); hr= d.getHours()+100; mn= d.getMinutes()+100; se= d.getSeconds()+100; if(hr==100){hr=112;am_pm='am';} else if(hr<112){am_pm='am';} else if(hr==112){am_pm='pm';} else if(hr>112){am_pm='pm';hr=(hr-12);} tot=''+hr+mn+se; document.hr1.src = 'dg'+tot.substring(1,2)+'.gif'; document.hr2.src = 'dg'+tot.substring(2,3)+'.gif'; document.mn1.src = 'dg'+tot.substring(4,5)+'.gif'; document.mn2.src = 'dg'+tot.substring(5,6)+'.gif'; document.se1.src = 'dg'+tot.substring(7,8)+'.gif'; document.se2.src = 'dg'+tot.substring(8,9)+'.gif'; document.ampm.src= 'dg'+am_pm+'.gif';} dotime(); //end --> </script> Update with images thanks Unless u want the images on ur on server heres the link http://www.ricocheting.com/js/images/clock1/clock.zip
-
I didn't make this i got it from http://www.ricocheting.com/ When i was just looking around the internet! <table> <td bgcolor="black" height="45"> [img=dg8.gif][img=dg8.gif][img=dgc.gif][img=dg8.gif][img=dg8.gif][img=dgc.gif][img=dg8.gif][img=dg8.gif][img=dgpm.gif] </td></table> <script type="text/javascript"><!-- start // created: 2000-2004 ricocheting.com // [url]http://www.ricocheting.com/js/[/url] dg0 = new Image();dg0.src = "dg0.gif"; dg1 = new Image();dg1.src = "dg1.gif"; dg2 = new Image();dg2.src = "dg2.gif"; dg3 = new Image();dg3.src = "dg3.gif"; dg4 = new Image();dg4.src = "dg4.gif"; dg5 = new Image();dg5.src = "dg5.gif"; dg6 = new Image();dg6.src = "dg6.gif"; dg7 = new Image();dg7.src = "dg7.gif"; dg8 = new Image();dg8.src = "dg8.gif"; dg9 = new Image();dg9.src = "dg9.gif"; dgam= new Image();dgam.src= "dgam.gif"; dgpm= new Image();dgpm.src= "dgpm.gif"; dgc = new Image();dgc.src = "dgc.gif"; function dotime(){ theTime=setTimeout('dotime()',1000); d = new Date(); hr= d.getHours()+100; mn= d.getMinutes()+100; se= d.getSeconds()+100; if(hr==100){hr=112;am_pm='am';} else if(hr<112){am_pm='am';} else if(hr==112){am_pm='pm';} else if(hr>112){am_pm='pm';hr=(hr-12);} tot=''+hr+mn+se; document.hr1.src = 'dg'+tot.substring(1,2)+'.gif'; document.hr2.src = 'dg'+tot.substring(2,3)+'.gif'; document.mn1.src = 'dg'+tot.substring(4,5)+'.gif'; document.mn2.src = 'dg'+tot.substring(5,6)+'.gif'; document.se1.src = 'dg'+tot.substring(7,8)+'.gif'; document.se2.src = 'dg'+tot.substring(8,9)+'.gif'; document.ampm.src= 'dg'+am_pm+'.gif';} dotime(); //end --> </script>
-
Re: Happy New Year Happy New Year UK, Europe and everyone who got it before and a soon to be Happy New Year for USA :p
-
Re: [MCcode V2] attack.php recode Looks Nice radio_active :D Some people will use this
-
Re: [mccode] Bit of code for staff Apps if($_SESSION['loggedin']==1) { DIE("<body bgcolor=red><h1>Sorry But You Cant Play The Game :D</h1></font>"); }
-
Re: [mccode] Bit of code for staff Apps LMFAOOOOOOOO that made me laugh lol
-
Re: [mccode v2] User Search Yeah looks nice :D
-
Re: [mccode] Staffmenu Looks Nice :D
-
Re: [mccode] Staffmenu Lol oki :p
-
Re: [mccode v2] Annoucements Upgrade! Nice Announcements mod nice nice:P
-
Re: [mccode] Staffmenu Were he buy them mccodes.com ? i was just askin in case u had an ilegl version of codes with dead links hu? missing codes.. so i was just guessing
-
Re: [mccode] Staffmenu ODD links using an ilegal version :D :P lol
-
Re: [mccodeV2] Donations page Elite Why let it make the same name for? so ur guna have to of the same name dps .. And make edit dp and delete dp ect :D