-
Posts
2,657 -
Joined
-
Last visited
-
Days Won
74
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
[mccode v2] CashCard. Send Cash Via Credit Card + Admin Xfer Logs
Uridium replied to Uridium's topic in Free Modifications
Re: [MOD] CashCard. Send Cash Via Credit Card + Admin Xfer Logs Quick Update..... Open up your Viewuser.php look for this line print "[Bank Xfer] and overwrite it with this one print "[[url='sendbank.php?ID={$r[']Bank Xfer[/url]] [[url='sendcredit.php?ID={$r[']CreditCard Xfer[/url]] "; This will let your users send money via their Profile page... -
[mccode v2] CashCard. Send Cash Via Credit Card + Admin Xfer Logs
Uridium replied to Uridium's topic in Free Modifications
Re: [MOD] CashCard. Send Cash Via Credit Card + Admin Xfer Logs Thanks for that halo I had two copies of the SQl on my Editor and after all that typing i copy and pasted the wrong one.. :) I'll update the above To Edit the error Sorry about that guys. -
[mccode v2] CashCard. Send Cash Via Credit Card + Admin Xfer Logs
Uridium replied to Uridium's topic in Free Modifications
Re: [MOD] CashCard. Send Cash Via Credit Card + Admin Xfer Logs Please NOTE you will need the Creditcard addition before the above mod will workk see this Post http://criminalexistence.com/ceforums/index.php?action=profile;u=4356 Creditcard script created by Extermination™ -
I found Extermination™ Creditcard addition an Awesome Addon for the game... I havent done much to this one Except give Users the abilty to Send Cash to each other Via their CreditCards. Admin and staff can also keep a close eye on all Cash sent between players with the credicard transfer logs... So here Goes.. By the way this has Been tested bymyself quite a few time to make sure its bug free.. Firstly send this SQl to your phpmyadmin.. CREATE TABLE IF NOT EXISTS `creditxferlogs` ( `crID` int(11) NOT NULL auto_increment, `crFROM` int(11) NOT NULL default '0', `crTO` int(11) NOT NULL default '0', `crAMOUNT` int(11) NOT NULL default '0', `crTIME` int(11) NOT NULL default '0', `crFROMIP` varchar(15) NOT NULL default '127.0.0.1', `crTOIP` varchar(15) NOT NULL default '127.0.0.1', PRIMARY KEY (`crID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; Now save this file as sendcredit.php <?php include "globals.php"; $_GET['ID'] = abs((int) $_GET['ID']); $_POST['money'] = abs((int) $_POST['money']); if(!((int)$_GET['ID'])) { print "Invalid User ID"; } else if($_GET['ID'] == $userid) { print "Haha, what does sending money to yourself do anyway?"; } else { if((int) $_POST['money']) { if($_POST['money'] > $ir['creditcard']) { print "Die j00 abuser."; } else { $db->query("UPDATE users SET creditcard=creditcard-{$_POST['money']} WHERE userid=$userid"); $db->query("UPDATE users SET creditcard=creditcard+{$_POST['money']} WHERE userid={$_GET['ID']}"); print "You sent \${$_POST['creditcard']} to ID {$_GET['ID']}."; event_add($_GET['ID'],"You received \${$_POST['money']} from {$ir['username']}.",$c); $it=$db->query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid={$_GET['ID']}"); $er=$db->fetch_row($it); $db->query("INSERT INTO creditxferlogs VALUES ('', $userid, {$_GET['ID']}, {$_POST['money']}, unix_timestamp(), '{$ir['lastip']}', '{$er['lastip']}')"); } } $it=$db->query("SELECT lastip FROM users WHERE userid={$_GET['ID']}"); $er=$db->fetch_row($it); if($ir['lastip'] == $er['lastip']) { print "You can't transfer to someone on the same IP. [url='index.php']> Back[/url]"; $h->endpage(); exit; } else { print "<h3> Sending Money</h3> You are sending money to ID: [b]{$_GET['ID']}[/b]. You have [b]\$".number_format($ir['creditcard'])."[/b] you can send. <form action='sendcredit.php?ID={$_GET['ID']}' method='post'> Amnt: <input type='text' name='money' /> <input type='submit' value='Send' /></form>"; print "<h3>Latest 5 Transfers</h3> <table width=75% border=2> <tr style='background:gray'> <th>Time</th> <th>User From</th> <th>User To</th> <th>Amount</th> </tr>"; $q=$db->query("SELECT cr.*,u1.username as sender, u2.username as sent FROM creditxferlogs cr LEFT JOIN users u1 ON cr.crFROM=u1.userid LEFT JOIN users u2 ON cr.crTO=u2.userid WHERE cr.crFROM=$userid ORDER BY cr.crTIME DESC LIMIT 5"); while($r=$db->fetch_row($q)) { if($r['crFROMIP'] == $r['crTOIP']) { $m="<span style='color:red;font-weight:800'>MULTI</span>"; } else { $m=""; } print "<tr> <td>" . date("F j, Y, g:i:s a",$r['crTIME']) . "</td><td>{$r['sender']} [{$r['crFROM']}] </td><td>{$r['sent']} [{$r['crTO']}] </td> <td> \${$r['crAMOUNT']}</td> </tr>"; } print "</table>"; } } $h->endpage(); ?> Place a link for that file anywhere you want usually its placed in the viewuser.php but it doesnt matter where you place it.... Now open up your staff_logs.php If you havent altered anything from the staff_logs.php before, now then i can associate the line number easily.. Online 8 or case 'cashlogs': view_cash_logs(); break; add this underneath it.. case 'credlogs': view_credit_logs(); break Now on line 22 or case 'clear8': clear_logs8(); break; add this underneath it. case 'clear9': clear_logs(); break; Find this line 41 or Delete Staff Logs <font color=red>HERE</font> Add this line underneath it Delete Credit Xfers [url='staff_logs.php?action=clear9']<font color=red>[b]HERE[/b]</font>[/url] "; Now on line 127 or ) Add this underneath it.. $db->query("TRUNCATE TABLE creditxferlogs"); print "Creditcard Transfers Deleted"; } function clear_logs9() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("Access Denide"); } } Now on line 365 or ) Add this line beneath it. function view_credit_logs() { global $db,$ir,$c,$h,$userid; print "<h3>Creditcard Xfer Logs</h3> <table width=100% cellspacing='1' class='table'> <tr style='background:gray'> <th>ID</th> <th>Time</th> <th>User From</th> <th>User To</th> <th>Multi?</th> <th>Amount</th> <th> </th> </tr>"; $q=$db->query("SELECT cr.*,u1.username as sender, u2.username as sent FROM creditxferlogs cr LEFT JOIN users u1 ON cr.crFROM=u1.userid LEFT JOIN users u2 ON cr.crTO=u2.userid ORDER BY cr.crTIME DESC"); while($r=$db->fetch_row($q)) { if($r['crFROMIP'] == $r['crTOIP']) { $m="<span style='color:red;font-weight:800'>MULTI</span>"; } else { $m=""; } print "<tr><td>{$r['crID']}</td> <td>" . date("F j, Y, g:i:s a",$r['crTIME']) . "</td><td>[url='viewuser.php?u={$r[']{$r['sender']}[/url] [{$r['crFROM']}] (IP: {$r['crFROMIP']}) </td><td>[url='viewuser.php?u={$r[']{$r['sent']}[/url] [{$r['crTO']}] (IP: {$r['crTOIP']}) </td> <td>$m</td> <td> \${$r['crAMOUNT']}</td> <td> [[url='staff_punit.php?action=fedform&XID={$r[']Jail Sender[/url]] [[url='staff_punit.php?action=fedform&XID={$r[']Jail Receiver[/url]]</td> </tr>"; } print "</table>"; stafflog_add("Viewed the Cash Xfer Logs"); And thats it for the Staff_log.php file Final Part is to open smenu.php Find >>> > Cash Xfer Logs Underneath Add > [url='staff_logs.php?action=credlogs']Creditcard Logs[/url] And thats it. EDITED MYSQL thanks to HALO :)
-
Re: [V2] Credit Card Mod [V2] Ok ive recoded the bank.php so it allows Users to deposit money from their CREDITCARD back to their Normal Bank Account.. Save this file as creditbank.php <?php include "globals.php"; print "<h3>NAME OF YOUR BANK</h3>"; if($ir['creditcard']>-1) { switch($_GET['action']) { case "deposit": deposit(); break; case "withdraw": withdraw(); break; default: index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>49999) { print "Congratulations, you started a CREDITCARD account for \$50,000! [url='creditbank.php']Start using my account[/url]"; $db->query("UPDATE users SET money=money-50000,creditcard=0 WHERE userid=$userid"); } else { print "You do not have enough money to open an account. [url='explore.php']Back to town...[/url]"; } } else { print "Open a CREDITCARD account today, just \$50,000! [url='creditbank.php?buy']> Yes, sign me up![/url]"; } } function index() { global $db, $ir,$c,$userid,$h; print "\n[b]You currently have \${$ir['creditcard']} in the bank.[/b] At the end of each day, your bank balance will go up by 2%. <table width='75%' cellspacing=1 class='table'> <tr> <td width='50%'>[b]Deposit Money[/b] It will cost you 15% of the money you deposit, rounded up. The maximum fee is \$5,000.<form action='creditbank.php?action=deposit' method='post'> Amount: <input type='text' name='deposit' value='{$ir['money']}' /> <input type='submit' value='Deposit' /></form></td> <td> [b]Withdraw Money[/b] There is no fee on withdrawals.<form action='creditbank.php?action=withdraw' method='post'> Amount: <input type='text' name='withdraw' value='{$ir['creditcard']}' /> <input type='submit' value='Withdraw' /></form></td> </tr> </table>"; } function deposit() { global $db,$ir,$c,$userid,$h; $_POST['deposit']=abs((int) $_POST['deposit']); if($_POST['deposit'] > $ir['money']) { print "You do not have enough money to deposit this amount."; } else { $fee=ceil($_POST['deposit']*15/100); if($fee > 0) { $fee=0; } $gain=$_POST['deposit']-$fee; $ir['bankmoney']+=$gain; $db->query("UPDATE users SET creditcard=creditcard+$gain, money=money-{$_POST['deposit']} where userid=$userid"); print "You hand over \${$_POST['deposit']} to be deposited, after the fee is taken (\$$fee), \$$gain is added to your account. [b]You now have \${$ir['creditcard']} in the bank.[/b] [url='creditbank.php']> Back[/url]"; } } function withdraw() { global $db,$ir,$c,$userid,$h; $_POST['withdraw']=abs((int) $_POST['withdraw']); if($_POST['withdraw'] > $ir['creditcard']) { print "The bank teller looks at you and says Bitch are you crazy you aint got that much money ."; } else { $gain=$_POST['withdraw']; $ir['creditcard']-=$gain; $db->query("UPDATE users SET creditcard=creditcard-$gain, money=money+$gain where userid=$userid"); print "You ask to withdraw $gain, the banking lady grudgingly hands it over. [b]You now have \${$ir['creditcard']} in the bank.[/b] [url='creditbank.php']> Back[/url]"; } } $h->endpage(); ?> Your members can now deposit Money from their Creditcards to the normal bank if they have other addons in the game that dont support the Creditcard Facility... JUST AND UPDATE I had the fee set wrong and was deducting money from your for Depositing any... For those that have the script above just change if($fee > 5000) { $fee=5000; } To if($fee > 0) { $fee=0; } Or redownload the above as its now fixed ,,
-
Re: [V2] Credit Card Mod [V2] This Feature is great if you only have SHOPS in your game however i have a travel agency and a mrriage page that only allows transactions Via the bank. When a user places all their bank money into their credcard account NO money is left in their bank and cannot be transferred from creditcard to bank to which means the only way my users can spend their money is via the shops and nowhere else...
-
Blow members minds with the ULTIMATE explore page
Uridium replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page heres the php script for the explore or 3d explore. Either call this file vexplore.php or explore.php Calling it vexplore will give your members a chance to revert back to your original explore.php page you will need to add a link to your explore.php page to point to this one of you choose to name this file vexplore.php <?php include "globals.php"; $tresder=(int) rand(100,999); if($ir['jail'] or $ir['hospital']) { die("This page cannot be accessed while in jail or hospital."); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <font size="3"><font color="yellow">[url="explore.php"]RETURN TO CLASSIC VIEW[/url] </head> <body> <script type="text/javascript"> var dom = (document.getElementById) ? true : false; var ns5 = (!document.all && dom || window.opera) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false; var origWidth, origHeight; // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 160; var offX= 20; // how far from mouse to show tip var offY= 12; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#ffffff"; var tipBgColor= "#000000"; var tipBorderColor= "#000000"; var tipBorderWidth= 3; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // Message Array is the use of your Picture so // where you see event on your Links that responds to the array picture code // Illusions messages[0] = new Array('images/shops.png','',"#000000"); messages[1] = new Array('images/tagent.png','',"#000000"); messages[2] = new Array('images/hof.png','',"#000000"); //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i<messages.length; i++) { theImgs[i] = new Image(); theImgs[i].src = messages[i][0]; } } // to layout image and text, 2-row table, image centered in top cell // these go in var tip in doTooltip function // startStr goes before image, midStr goes between image and text var startStr = '<table width="' + tipWidth + '"><tr><td align="center" width="100%"><img src="'; var midStr = '" border="0"></td></tr><tr><td valign="top">'; var endStr = '</td></tr></table>'; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '<span style="font-family:' + tipFontFamily + '; font-size:' + tipFontSize + '; color:' + curFontColor + ';">' + messages[num][1] + '</span>' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; } // tooltip width and height var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft; var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = mouseX-(tpWd+offX)+"px"; else tipcss.left = mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = winHt-(tpHt+offY)+"px"; else tipcss.top = mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } document.write('<div id="tipDiv" style="position:absolute; visibility:hidden; z-index:100"></div>') </script> <div> [img=SSC-campus_map2004.jpg] </div> <div> <map id="SSC-campus_map2004" name="SSC-campus_map2004"> <area shape="circle" alt="" coords="170,59,9" href="" onmouseover="doTooltip(event,0)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="185,42,10" href="" title="" /> <area shape="circle" alt="" coords="224,44,11" href="" title="" /> <area shape="circle" alt="" coords="213,84,10" href="" title="" /> <area shape="circle" alt="" coords="328,96,13" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="180,255,9" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="115,329,11" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="287,343,9" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="520,343,15" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="365,85,15" href="" onmouseover="doTooltip(event,1)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="113,220,9" href="" title="" /> <area shape="circle" alt="" coords="85,262,10" href="" title="" /> <area shape="circle" alt="" coords="116,305,10" href="" title="" /> <area shape="circle" alt="" coords="145,320,8" href="" title="" /> <area shape="circle" alt="" coords="179,327,10" href="" title="" /> <area shape="circle" alt="" coords="196,308,9" href="" title="" /> <area shape="circle" alt="" coords="186,277,9" href="" title="" /> <area shape="circle" alt="" coords="238,281,9" href="" title="" /> <area shape="circle" alt="" coords="231,309,9" href="" title="" /> <area shape="circle" alt="" coords="244,328,9" href="" title="" /> <area shape="circle" alt="" coords="297,307,11" href="" title="" /> <area shape="circle" alt="" coords="325,288,9" href="" title="" /> <area shape="circle" alt="" coords="368,256,9" href="" title="" /> <area shape="circle" alt="" coords="340,69,8" href="" title="" /> <area shape="circle" alt="" coords="297,84,10" href="" title="" /> <area shape="circle" alt="" coords="297,116,10" href="" title="" /> <area shape="circle" alt="" coords="408,83,11" href="" title="" /> <area shape="circle" alt="" coords="153,158,10" href="" title="" /> <area shape="circle" alt="" coords="182,188,12" href="" title="" /> <area shape="circle" alt="" coords="274,185,9" href="" title="" /> <area shape="circle" alt="" coords="314,172,9" href="" title="" /> <area shape="circle" alt="" coords="339,172,9" href="" title="" /> <area shape="circle" alt="" coords="391,173,11" href="" title="" /> <area shape="circle" alt="" coords="360,213,13" href="" title="" /> <area shape="circle" alt="" coords="363,315,12" href="" title="" /> <area shape="circle" alt="" coords="388,297,10" href="" onmouseover="doTooltip(event,2)" onmouseout="hideTip()" /> <area shape="circle" alt="" coords="416,312,13" href="" title="" /> <area shape="circle" alt="" coords="464,315,12" href="" title="" /> <area shape="default" nohref="nohref" alt=" " /> </map> </div> </body> </html> <?php print "<font color=yellow>[b]This is your referal link: http://{$domain}/register.php?REF=$userid <b/></font> Every signup from this link earns you two valuable crystals when they reach level 3!"; ?> You can add the Mouse over Images Manually find this code in the script above and add to it remember also that the tooltip function needs to have the array pics ID# messages[0] = new Array('images/shops.png','',"#000000"); messages[1] = new Array('images/tagent.png','',"#000000"); messages[2] = new Array('images/hof.png','',"#000000"); Image for the Above save image as SSC-campus_map2004.jpg www.nightdreamer2000.com/SSC-campus_map2004.jpg -
Blow members minds with the ULTIMATE explore page
Uridium replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page all you do it copy the source and save it as a php file with the include at the top and save the appropriate images.. Im assuming your relating to the source on the demo page which is fair for what you have quoted.. But im suggesting the steps for those that are wanting to use their own images and not the one on the demo page. -
Blow members minds with the ULTIMATE explore page
Uridium replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page Its not as simple as just putting the coding up Basically because its a plotted graph or imagemap And will only work with a picture youve selected and plotted for links to be clicked on.. example if your plotted target was the number 20 on this clock.. Then the cordinates would be 142,108,163,129 and your code would be [img=mint.png] <map id="mint" name="mint"> <area shape="rect" alt="" coords="142,108,163,129" href="somewhere.com" title="" /> <area shape="default" nohref="nohref" alt="" /> </map> -
[mccode] Explore your streets.php as an image
Uridium replied to Uridium's topic in Free Modifications
Re: Explore your streets.php as an image Thats quite true Nyna.. the basis of the above was so people didnt have to rely on Co-ords the 60x60 represent the tile grid and the 580x580 represent the over all grid.. The thesis behind the above was so people could change the 60x60 grid and create a more funky looking one... example some lines could be 60x60 some 30x30 and some 20x20. no matter how you changed the grid it would always become a square. Reason for EDIT dyslexic keyboard -
Blow members minds with the ULTIMATE explore page
Uridium replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page I'm sorry i didnt realise this was a competative sport..... I undestood this forum to be Free mods or therefore to help people make their games better. Congratulations on being the founder of what youve done but done hijack my post with your nonsence make a new one like everyone else and do it the right way. :) -
[mccode] Explore your streets.php as an image
Uridium replied to Uridium's topic in Free Modifications
Re: Explore your streets.php as an image Join all the 3 parts so they are ONE make sure you join them as they are above 1 2 3 Open up your streets.php file. and there should be two statements like this.. print " [url="streets.php><font"]>Continue Searching</font>[/url] You have [b]$turnsleft[/b] steps left "; Overwrite the Statements with your newly joined codes 1,2,3 You can change the image where it says img src='/ss200.jpg' to one of your choosing. or you can create a Transparent png img src='trans.png' and use the Line at the top of the first CODE.. to add your Back Drop Picture.. that line being this one. <span style='color: #00aa00;'></span></p><table style='width: 580px; height: 580px; border-left: solid #000000 1px; border-top: solid #000000 1px; padding: 0px; outline: 0px; margin: 0 auto 0 auto; background: url(emptystreet.png);' cellspacing='0'><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> You will see background: url(emptystreet.png); in that line change it to a picture of your choosing. Your members will now be able to click Grid Refs on the picture to explore... -
[mccode] Explore your streets.php as an image
Uridium replied to Uridium's topic in Free Modifications
Re: Explore your streets.php as an image PART 3 FINAL <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr></table></td></tr></table> "; -
[mccode] Explore your streets.php as an image
Uridium replied to Uridium's topic in Free Modifications
Re: Explore your streets.php as an image PART 2 <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> -
THIS CODE IS IN 3 PARTS AS IT EXCEEDS MAXIMUM LENGTH. PART1 print"<P ALIGN='top'> <center><font size='4'>You have [b]$turnsleft</p>[/b] steps left</font> <p class='heading'>Searching The Sreets</p> <p style='background: #DDDDDD; padding: 5px;'>[b]</p>[/b] <span style='color: #00aa00;'></span></p><table style='width: 580px; height: 580px; border-left: solid #000000 1px; border-top: solid #000000 1px; padding: 0px; outline: 0px; margin: 0 auto 0 auto; background: url(emptystreet.png);' cellspacing='0'><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=/ss200.jpg][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #000000 1px;border-bottom: dashed #000000 1px;padding: 0px; outline: 0px;'>
-
Blow members minds with the ULTIMATE explore page
Uridium replied to Uridium's topic in General Discussion
Re: Blow members minds with the ULTIMATE explore page The image can be anything you want you can create your own with layout numbers or section then plot graph the URLS to various sections.. The image we used is for demonstration purposes. -
I was so fed up with text on the explore page i decided to go one step further.. If this dont blow your members minds then nothing will.. DEMO...... http://www.nightdreamer2000.com/tester.html This is just an idea of what you can achieve in the game Move your mouse over different locations to view Descriptions.. This is an Explore script idea from myself and a good friend called Tattoo... Any feed back would be appreaciated... (been pointed out this idea has been used before on something other than Mccodes..)
-
Re: Tournaments mod For V2 ok this is my tornystaff.php file <?php /** * @author canibal * @copyright 2007 */ include "sglobals.php"; switch($_GET['action']) { case 'tornycreate': tornycreate(); break; case 'tornysub': torny_sub(); break; case 'tornyeditform': tornyeditform(); break; case 'tornyedit': tornyedit(); break; case 'tornysub': torny_esub(); break; case 'deltorny': torny_del(); break; case 'tornydelsub': torny_del_sub(); break; default: print "this script requires an action!!!"; break; } function tornycreate() { global $db,$ir,$c,$h,$userid; print" <form action='tornystaff.php?action=tornysub' method='post'> Tornament Image: <input type='text' name='tornyimg' /> Tornament Cost: <input type='text' name='tornycost' /> Tornament Active(1=yes 0=no): <input type='text' name='tornyactive' /> Tornament Country: <input type='text' name='tornycountry' /> Name of Tornament: <input type='text' name='tornyname' /> Tornament Description: <input type='text' name='tornydesc' /> Tornament currency (1=money 2=crystals 3=Coins): <input type='text' name='tornycur' /> Tornament ID (1-3): <input type='text' name='tornyid' /> <input type='submit' value='Create Tornament' /></form>"; } function torny_sub() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 0) { $p=mysql_query("INSERT INTO torny VALUES('','{$_POST['tornyimg']}','{$_POST['tornycost']}','{$_POST['tornyactive']}','{$_POST['tornycountry']}','{$_POST['tornyname']}','{$_POST['tornydesc']}','{$_POST['tornycur']}','0','0','0','','{$_POST['tornyid']}','0','0','0','0')"); print"Created {$_POST['tornyname']} Tornament!!!!!"; } else { die("ERROR!"); } } function tornyeditform() { global $db,$ir,$c,$h,$userid; print "Select the tornament you want to edit. <form action='tornystaff.php?action=tornyedit' method='post'> Tourny ID: ".torny_dropdownall($c,'torny')." <input type='submit' value='Edit Tornament' /></form>"; } function tornyedit() { global $db,$ir,$c,$h,$userid; $p=$db->query("SELECT * FROM torny WHERE tid={$_POST['tornyall']}"); while($t=$db->fetch_row($p)) { print"<form action='tornystaff.php?action=tornyesub' method='post'> Tornament Image: <input type='text' name='tornyimg' value='{$t['timg']}' /> Tornament Cost: <input type='text' name='tornycost' value='{$t['tcost']}' /> Tornament Active(1=yes 0=no): <input type='text' name='tornyactive' value='{$t['tactive']}' /> Tornament Country: <input type='text' name='tornycountry' value='{$t['tcountry']}'/> Name of Tornament: <input type='text' name='tornyname' value='{$t['ttorny']}' /> Tornament Description: <input type='text' name='tornydesc' value='{$t['tcontent']}' /> Tornament currency (1=money 2=crystals 3=Coins): <input type='text' name='tornycur' value='{$t['tcur']}' /> Tornament Entry Time (Hours): <input type='text' name='tornytime' value='{$t['entrytime']}' /> Tornament ID (1-3): <input type='text' name='tornyid' value='{$t['torny']}'/> <input type='submit' value='Edit Tornament' /></form>"; } } function torny_esub() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 0) { if($_POST['tornyimg'] == ''){die("ERROR TORNAMENT IMAGE ERROR!!!!!");} if($_POST['tornycost'] == ''){die("ERROR TORNAMENT COST ERROR!!!!!");} if($_POST['tornyactive'] == ''){die("ERROR TORNAMENT ACTIVE ERROR!!!!!");} if($_POST['tornycountry'] == ''){die("ERROR TORNAMENT COUNTRY ERROR!!!!!");} if($_POST['tornyname'] == ''){die("ERROR TORNAMENT NAME ERROR!!!!!");} if($_POST['tornydesc'] == ''){die("ERROR TORNAMENT DESC ERROR!!!!!");} if($_POST['tornycur'] == ''){die("ERROR TORNAMENT CURRENCY ERROR!!!!!");} if($_POST['tornytime'] == ''){die("ERROR TORNAMENT ENTRY TIME ERROR!!!!!");} if($_POST['tornyid'] == ''){die("ERROR TORNAMENT ID ERROR!!!!!");} else { $p=mysql_query("UPDATE torny SET timg={$_POST['tornyimg']}, tcost={$_POST['tornycost']}, tactive={$_POST['tornyactive']}, tcountry={$_POST['tornycountry']}, ttorny={$_POST['tornyname']}, tcontent={$_POST['tornydesc']}, tcur={$_POST['tornycur']}, torny={$_POST['tornyid']} WHERE tid={$_POST['torny']},'0','0','0','0')"); PRINT <<<OUT Successfully Updated {$_POST['tornyname']} Tornament!!!!!! OUT; } } else{die("ERROR!!!!!");} } function torny_del() { global $db,$ir,$c,$h,$userid; print "Select the tornament you want to Delete. <form action='tornystaff.php?action=tornydelsub' method='post'> User: ".torny_dropdown($c,'torny')." <input type='submit' value='Delete Tornament' /></form>"; } function torny_del_sub() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 0) { $p=$db->query("DELETE * FROM torny WHERE tid={$_POST['torny']}"); } } ?> Hope someone can sort this :) after a bit of script changing ive found im able to bering one up but not how i want it to be. when i put this $p=$db->query("SELECT * FROM torny WHERE tid={$_POST['tornyid']}"); i get this message.... but as soon as i change the code to this ..... $p=$db->query("SELECT * FROM torny WHERE tid=5"); im able to change ID 5 so atleast i know the database is working its just the POST script that isnt..
-
Re: [V2]Ranks Mod!!!![V2] Listen up people hear me now ;) he's given you a script that WORKS Regardless of copyright pics. And anyway i bet half of you here wont use them pics and probably make your own up.. So quit moaning and give the guy a pat on the back for Sharing his Coding.. All ive seen on this forum is someone bitching about a mod. the mods are FREE so shut up sit down and stop being an ass.. So EvolutionG weldone matey and thanks for sharing. Ignore the stupid comments on here there only pissed they never thought of it first ;)
-
Re: Tournaments mod For V2 What ive noticed from the script is that when you create/edit/delete a tourny the page instantly goes back to the game menu instead of the Staff menu. could this have something to do with the dropdown error.. the errors im getting are.. when trying to delete a tourny... Fatal error: Call to undefined function: torny_dropdown() in /home2/slavetra/public_html/tornystaff.php on line 131 When trying to Edit a Tourny QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query was SELECT * FROM torny WHERE tid= When trying to Submit a new tourny.. ERROR!
-
Re: [MOD] Member Suggestions Poster Half the Mods on this site are conversions of others scripts. I did state it would be easier using the forums to post suggestions. All ive done with this mod is made it available for those that dont want to use forums..
-
Re: [MOD] Member Suggestions Poster Everything works the same as the Bugtracker did where by staff and the postee see their own post this way you can compare similiar Suggestions with other posts without everyone jumping on the same idea....
-
This Mod was Originally the Bugtracker mod created by Oxidati0n.. All ive done is remodified the text and tables to make it into a suggestions board for your members.. Save the coding below as suggestions.php <?php /*************************** Bug Tracker (1.0) made by oxidati0n -- Designed to make sure your bug asking days are over, Your players can efficiently report them, for those buggy players - It has most hacks removed. Such as HTML block, Javascript and PHP! Requires PHP version 4.44 minimum for this code to work! Created by oxidati0n! Converted to Suggestions by Illusions.. all coding remain the rights of Oxidati0n ***************************/ include "globals.php"; $sd=$db->query("SELECT * FROM `suggestions` WHERE `sug_from` = '$userid'"); if($_GET['x'] == "add" and $db->num_rows($sd) < 7) { if($_POST['urgency'] and $_POST['description']) { //Secure the webpage. My favourite :> $_POST['description']=str_replace("/n", " ", strip_tags($_POST['description'])); $time=time(); //Insert the time log. $ip=$_SERVER['REMOTE_ADDR']; //The users IP - logged. ha ha! $nf="Pending"; //The text for startup $db->query("INSERT INTO `suggestions` (`sug_id`, `sug_posted`, `sug_from`, `sug_description`, `sug_read`, `sug_replyfrom`, `sug_status`, `sug_replytext`, `sug_urgency`, `sug_iplogged`) VALUES ('NULL', '$time', '$userid', '$_POST[description]', '0', '0', '$nf', 'N/A', '$_POST[urgency]', '$ip');") or die("<center>Your Suggestion couldn't be processed at this time. Either contact an admin or try again later. Thanks and sorry for any inconvenience caused [url='suggestions.php']Back[/url] </center>"); print "<center>Your Suggestion has been added! [url='suggestions.php']Back[/url]</center> "; $h->endpage(); exit(); } else { print "<center><h3>Submit your Suggestion</h3></center> <center><table width=60% border=2 cellspacing=1 class='table'></center> <td><font color=red>Your IP logged: ".$_SERVER['REMOTE_ADDR']."</font> Your IP is logged for our benefit and yours, to ensure the Suggestions system is not being abused! Once submitted, your Suggestion will shown as Visible to all other players and authorized staff. <hr /> NOTE: This is only to place your Suggestions Please use the Bug report for reporting other none Suggestive matters </td></tr></table> <center><form action='suggestions.php?x=add' method='post'> Idea For: <select name='urgency'><option value='Game Idea'>Game Idea</option> <option value='Forums Idea'>Forums Idea</option><option value='Layout Idea'>Layout Idea</option></select> Description (include as much detail to your suggestions as possible, It will help us and others get a better Idea of what your suggestion could become: <textarea name='description' cols=60 rows=11></textarea> <input type=submit value='Submit Your Suggestion'></form> </center>"; $h->endpage(); exit(); } } else if($ir['user_level'] > 1 and $_GET['x'] == "remove" and $_GET['report']) { $db->query("DELETE FROM `suggestions` WHERE `sug_id` = '$_GET[report]'"); print "<center>Suggestion Report Row Removed [url='suggestions.php']Back[/url]</center> "; $h->endpage(); exit(); } elseif($ir['user_level'] > 1 and $_GET['x'] == "reply" and $_GET['report']) { if($_POST['text']) { //Make sure the text is ready to go, clean and safe. $text=str_replace(array("<",">","/n"),array("","",""),$_POST['text']); $status=($_POST['status']); $db->query("UPDATE `suggestions` SET `sug_replyfrom` = '$userid', `sug_replytext` = '$text', `sug_status` = '$status' WHERE `sug_id` = '$_GET[report]'"); print "<center>Suggestion has been Edited [url='suggestions.php']Back[/url]</center> "; $h->endpage(); exit(); } else { print "<center>[b]Make a reply[/b] <form action='suggestions.php?x=reply&report=$_GET[report]' method='post'> Status: <select name='status'> <option value='Under Review'>Under Review</option> <option value='Need More Feedback'>Need More Feedback</option> <option value='Inappropriate'>Inappropriate</option> <option value='Cancelled'>Cancelled</option></select> Reply: <textarea name='text' cols=60 rows=11>Your reply here...</textarea> <input type=submit value='Submit Reply!'> </form></center>"; $h->endpage(); exit(); } } $_GET['st'] = abs((int) $_GET['st']); $st=($_GET['st']) ? $_GET['st'] : 0; print "<center><h3>Make a Suggestion</h3></center>"; $sd=$db->query("SELECT * FROM `suggestions` WHERE `sug_from` = '$userid'"); if($db->num_rows($sd) < 7) { print "<center>[url='suggestions.php?x=add'][Add a Suggestion][/url]</center> "; } print "<center>[b]You can submit several Suggestions[/b] </center>"; if(!$_GET['selectBug']) { $reports=$db->num_rows($db->query("SELECT * FROM `suggestions`")); $shown=10; //How many rows should be shown in one row $pages=(int) ($reports/$shown)+1; if($membs % $shown == 1) { $pages--; } print "<center>Pages: "; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*$shown; print "[url='suggestions.php?st=$stl']$i[/url] </center>"; } } if($ir["user_level"] > 1) { $man="<th>Manage</th>"; $cols=8; $db->query("UPDATE `suggestions` SET `sug_read` = '1' WHERE `sug_read` = '0'"); } else { $cols=7; } print " <center><table width=90% border=2 cellspacing=1 class='table'></center> <tr style='background:darkred'> <th colspan={$cols}>Viewing all reported Suggestions - </th> </tr> <tr style='background:darkred'> <th>Ref</th> <th>From</th> <th>Regards</th> <th>Suggested</th> <th>Comments</th> <th>Read</th> <th>Status</th> ".$man."</tr>"; if(!$_GET['selectBug']) { $q=$db->query("SELECT * FROM `suggestions` ORDER BY `sug_posted` DESC LIMIT $st,10"); } else { $q=$db->query("SELECT * FROM `suggestions` WHERE `sug_id` = '$_GET[selectBug]' LIMIT 1;"); } if($db->num_rows($q) == 0) { print "<tr style='background:darkred'> <td colspan={$cols}>There are no current reports been posted.</td> </tr>"; } while($r=$db->fetch_row($q)) { if($r['sug_from'] == $userid or $ir['user_level'] == 2 or $ir['user_level'] == 3) { $user_q=$db->query("SELECT * FROM `users` WHERE `userid` = '$r[sug_from]'"); $p=$db->fetch_row($user_q); if($r['sug_replyfrom'] > 0) { $user_q2=$db->query("SELECT * FROM `users` WHERE `userid` = '$r[sug_replyfrom]'"); $d=$db->fetch_row($user_q2); } $x=$r["sug_id"]; if($r['sug_read'] == 1) { $re="<font color=green>[b]Read[/b]</font>"; } else { $re="<font color=red>[b]No[/b]</font>"; } print " <tr style='background:darkred'> <td align=center>".number_format($x)."</td> <td align=center>[url='viewuser.php?u={$x}']".$p['username']."[/url] [".$p['userid']."]</td> <td align=center>".$r['sug_urgency']."</td> <td align=center>".$r['sug_description']."</td> <td align=center>"; if($r['sug_replyfrom'] > 0) { print "[b]".$r['sug_replytext']." [i]Replied from [url='viewuser.php?u=$d[userid]']$d[username][/url][/i]"; } else { print "<center>Still Under Review</center>"; } print " </td> <td align=center>".$re."</td> <td align=center>$r[sug_status]</td>"; if($cols == 8) { print " <td align=center> <font color=black>IP Logged: [b]".$r['sug_iplogged']."[/b]</font> [url='suggestions.php?x=remove&report={$x}']Remove[/url] [url='suggestions.php?x=reply&report={$x}']Make Reply[/url] [url='mailbox.php?action=compose&ID={$p[']Mail User[/url] </td>"; } print "</tr>"; } else { print "<tr style='background:darkred'><center> <td align=center>Hidden</td> <td align=center>Hidden</td> <td align=center>Hidden</td> <td align=center>Hidden</td> <td align=center>Hidden</td> <td align=center>Hidden</td> <td align=center>Hidden</td> </center></tr>"; } } print "</table></center> "; if(!$_GET['selectBug']) { print "<center>Pages: "; for($i=1;$i <= $pages;$i++) { $stl=($i-1)*$shown; print "[url='suggestions.php?st=$stl']$i[/url] </center>"; } } $h->endpage(); ?> Then open up your phpmyadmin and dump these new tables into it.. -- -- Table structure for table `suggestions` -- CREATE TABLE `suggestions` ( `sug_id` int(11) NOT NULL auto_increment, `sug_posted` varchar(255) NOT NULL, `sug_from` int(11) NOT NULL, `sug_description` longtext NOT NULL, `sug_read` tinyint(2) NOT NULL, `sug_replyfrom` int(11) NOT NULL, `sug_status` varchar(255) NOT NULL, `sug_replytext` longtext NOT NULL, `sug_urgency` varchar(255) NOT NULL, `sug_iplogged` varchar(255) NOT NULL, PRIMARY KEY (`sug_id`) ) ENGINE=MyISAM ; Your members can now submit their gaming Ideas. You could however use your forums to do this but i suuppose this one looks more creative lol Had to edit this page about 20 times due to my dyslexic keyboard...
-
Re: Honor Awards - V2 - Modified by HarryB Yep i gotta agree with Harry i can see them too. But as i mentioned above there is an error on the files in each of the folders where there is a double barrel mention of php.php on the final link bottom of all the scripts..
-
Re: Honor Awards - V2 - Modified by HarryB One thing i had to do was when i downloaded the zip file all the folders that was on it had the files from the folder From Attacks Won Awards - Star Awards folder all the files in them had reference to. print ".php[/b]']Back to Honor Awards "; just thought id point that minor mistake out