-
Posts
2,667 -
Joined
-
Last visited
-
Days Won
75
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
Re: Strip Club Nice Mod Dj although i dont us this type of thing i uploaded the script and its nice to see i dont have to alter anything worked well 1st attempt. :)
-
A Donator Pack System all Mccoders will want....
Uridium replied to Uridium's topic in General Discussion
Re: A Donator Pack System all Mccoders will want.... At 51 files i dont thnk people would want to see that many files to copy and paste... QUICK NOTE In my rush to get these files sorted i left my URL in the footer.inc.tpl file just add your own url to it sorry about that -
A Donator Pack System all Mccoders will want....
Uridium replied to Uridium's topic in General Discussion
Re: A Donator Pack System all Mccoders will want.... You will need to have GPIX installed from tufat.com before this Mod will work.. its Free once you have the gpix installed or what ever you have named it on your site then.. Download this templates.zip file Unpack it and send all the files from it to your templates/ folder on your FTP only send the files and NOT the folder... <<< ZIP REMOVED >> -
A Donator Pack System all Mccoders will want....
Uridium replied to Uridium's topic in General Discussion
Re: A Donator Pack System all Mccoders will want.... you can download the file at tufat.com its called Gpix but that version is setup for Adverts so download the Gpix and i will Upload the files ive altered for the Donator Packs to work,,,, And regards the Explore page i have seen it running and helped to make it run on various sites. I'll be the first to admit my coding is just remnents of other peoples but i dont take nothing from them and if i use them i make sure i Comment the person in question to who developed it.. in my posts.. The Idea behind this Post was because the Payment system for Donator Packs was boring as hell. And the new system here will give Staff more control over the game rather than trying to find Mis payments from members And errors that may occur ina transaction.. Once you download the Gpix and set it up you will understand why my idea to convert this was a decent one -
I was on my travels on the net from the comfort of my chair. When i came across a Pixel site Created by Alex Tew not saying the name of the site but it gave me an idea if people buy Pixels why cant i implement the same idea for Game players to buy Donator Packs. So i did and here it is. << LINK REMOVED TOO MUCH NEGATIVE FEEDBACK TO BOTHER CONTINUING >> The script itself is from another site that is GPL all ive done is recoded it so it works for buying Donator Packs instead of advertising Pixels.. What does it do ? Your game members simply look for the Donator pack they want to buy on the site, When theyve found one they simply create or upload an image to say thats their spot, when they have filled in the Necessary details. and payment has been received Their status becomes active and you send out the correct Donator pack to the user... The users are informed of Expirey 5 days before the Donator Pack Runs out and they can just refresh their payment on the link sent to them. ( Admins are also sent an email of expiry and any updates ) Admin Features ? From the Admin panel you can add new types of donator packs that you are selling in the game increase prices of any donator packs that are sold. Users can pay by offline method, Paypal, 2dcheckout, Authorise.net Creditcard, Egold and many more.. You can choose to make a Donator pack Pending until you receive payment then activate it when your ready. Ive created a site to view and Its FREE payment option so you can test its features...... Ive Disabled the SIGNUP function so at the minute its a free for all..
-
Re: Tournaments mod For V2 After a lot of editing on this script Iv'e finally got it working.. <?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 'tornyesub': 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' /> Tornament Name: <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 Time: <input type='text' name='entrytime' /> 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['entrytime']}','{$_POST['tornyid']}','0','0','0','0')"); print"<font size='4'>Created {$_POST['tornyname']} Tornament</font>"; } 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=mysql_query("SELECT * FROM torny WHERE tid={$_POST['torny']}"); 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='entrytime' 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['entrytime'] == ''){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']}, entrytime={$_POST['entrytime']} WHERE tid={$_POST['torny']},'0','0','0','0')"); PRINT <<<OUT <font size='4'>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_dropdownall($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=mysql_query("DELETE FROM torny WHERE tid={$_POST['torny']}"); PRINT <<<OUT <font size='4'>Successfully Deleted Tournament ID {$_POST['torny']} </font> OUT; } } ?> As this workd from the sglobals you will need to add 3 links to your smenu those being.. [url='tornystaff.php?action=tornycreate']Create Tournament[/url] [url='tornystaff.php?action=tornyeditform']Edit Tournament[/url] [url='tornystaff.php?action=deltorny']Delete Tournament[/url] As HALO Pointed out above there were two mentions of tournysub ive ammended these and also added the Missing SQL for the Tournament start time...
-
Re: Tournaments mod For V2 This Script wont beat me ;) Ive managed to be able to Create Tournaments and Delete tournamnets from the script. Still having issuse with Editing tournaments When i click on the Edit Tournament i just get a blank page.. However if i enter the tournament ID in manullaly i am able to Edit that way but the drop down for the Edit isnt working... Any help would be appreciated on this..
-
[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 Imagine a grid 10x10 with clickable blocks thats your screen shot :) -
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 This can be done a number of ways an imagemap generator is the easiest if you dont have one you can use Microsoft Paint..... Microsoft Paint has Co-Ords on the bottom Right of screen.. so for a box shape choose a point on your picture and note down the Co-ords on the right. The move down and across right with your mouse to another point on the picture and note that number down... That will Create a full grid with 4 Co-ords.... -
[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 if you have done everything step by step it should work go back over what you have done to make sure you havent missed anything..... -
[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;'>