-
Posts
2,667 -
Joined
-
Last visited
-
Days Won
75
Content Type
Profiles
Forums
Events
Everything posted by Uridium
-
This MOD was a Joint Effort between myself and Tonka Its been tried and tested before being Posted on here so it should work fine........ This Menu System will let you Craeet your own game links via the Admin panel without the Hassle of updating scripts every 5 minutes you simply Add a link and give it a name and click Submit and its then available for everyone to vie either in the mainmenu or the Explore.. Pages. SQLS CREATE TABLE IF NOT EXISTS `menu` ( `menuID` int(11) NOT NULL auto_increment, `menuTITLE` varchar(255) NOT NULL default '', `menuPATH` varchar(255) NOT NULL default '', `menuLOCK` int(11) NOT NULL default '0', PRIMARY KEY (`menuID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ; INSERT INTO `menu` (`menuID`, `menuTITLE`, `menuPATH`, `menuLOCK`) VALUES (1, 'Home', 'index.php', '0'), (2, 'Inventory', 'inventory.php', '0'), (3, 'Mailbox', 'mailbox.php', '0'), (4, 'Events', 'events.php', '0'), (5, 'Explore', 'explore.php', '0'); We have started you off with the Basic links but you can Alter them later if you want to. call this file staff_menumaker.php <?php //* V2 Menu Maker //* Joint Effort between ILLUSIONS and TONKA //* Free for to those Members of Criminal Existance Forums //* All we ask is that you keep this Notice intact //* BELOW CODES FOR smenu.php //* > [url='staff_menumaker.php?action=newmenu']Add Menu Link[/url] //* > [url='staff_menumaker.php?action=editmenu']Edit Menu Link[/url] *// include "sglobals.php"; //This contains user stuffs switch($_GET['action']) { case 'newmenu': new_menu_form(); break; case 'newmenusub': new_menu_submit(); break; case 'editmenu': edit_menu_begin(); break; case 'editmenuform': edit_menu_form(); break; case 'editmenusub': edit_menu_sub(); break; default: print "Error: This script requires an action."; break; } function htmlspcl($in) { return str_replace("'", "'", htmlspecialchars($in)); } function new_menu_form() { global $db,$ir, $c; if($ir['user_level'] != 2) { die("403"); } print "Adding a new Menu. <form action='staff_menumaker.php?action=newmenusub' method='post'> Menu ID: <input type='text' name='menuID' /> Menu Title: <input type='text' name='menuTITLE' /> Menu Path <input type='text' name='menuPATH' /> <input type='submit' value='Create New Menu' /></form>"; } function new_menu_submit() { global $db,$ir,$c,$menuID; if($ir['user_level'] != 2) { die("403"); } if(!isset($_POST['menuID']) || !isset($_POST['menuTITLE']) || !isset($_POST['menuPATH'])) { print "You missed one or more of the required fields. Please go back and try again. [url='staff_menumaker.php?action=newmenu']> Back[/url]"; $h->endpage(); exit; } $db->query("INSERT INTO menu (menuID, menuTITLE, menuPATH) VALUES( '{$_POST['menuID']}', '{$_POST['menuTITLE']}', '{$_POST['menuPATH']}')"); //$i=mysql_insert_menuid($c); print " <font size=3>Successfully Created Menu {$_POST['menuTITLE']}</font>"; stafflog_add("Created Menu {$_POST['menuTITLE']} "); } function edit_menu_begin() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } print "<h3>Editing Menu</h3> <form action='staff_menumaker.php?action=editmenuform' method='post'> Menu: ".menu_dropdown($c,'menu')." <input type='submit' value='Edit Menu' /></form> OR enter a Menu ID to edit: <form action='staff_menumaker.php?action=editmenuform' method='post'> Menu: <input type='text' name='menu' value='0' /> <input type='submit' value='Edit Menu' /></form>"; } function edit_menu_form() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } $q = $db->query("SELECT * FROM menu WHERE menuID='{$_POST['menu']}'"); $r = $db->fetch_row($q); print "<h3>Menu Editing System</h3> <form action='staff_menumaker.php?action=editmenusub' method='post'> Menu ID: <input type='text' name='menuID' value='{$r['menuID']}' /> Menu Title: <input type='text' name='menuTITLE' value='{$r['menuTITLE']}' /> Menu Path: <input type='text' name='menuPATH' value='{$r['menuPATH']}' /> <input type='submit' value='Edit Menu' /></form>"; } function edit_menu_sub() { global $db,$ir,$c,$h,$userid; if($ir['user_level'] != 2) { die("403"); } $go=0; if(!isset($_POST['menuID'])) { $go=1; } if(!isset($_POST['menuTITLE'])) { $go=1; } if(!isset($_POST['menuPATH'])) { $go=1; } if($go) { print "You did not fully fill out the form."; $_POST['menu']=$_POST['menuID']; edit_menu_form(); } $u=$db->query("SELECT * FROM menu WHERE menuTITLE='{$_POST['menuTITLE']}' and menuID='{$_POST['menuID']}'"); if($db->num_rows($u) != 0) { print "That Menu Name is already in use please choose another."; print " [url='staff_menumaker.php?action=editmenu']> Back[/url]"; $h->endpage(); exit; } $oq=$db->query("SELECT * FROM menu WHERE menuID={$_POST['menuID']}"); $rm=$db->fetch_row($oq); $db->query("UPDATE menu SET menuTITLE='{$_POST['menuTITLE']}', menuPATH='{$_POST['menuPATH']}' WHERE menuID={$_POST['menuID']}"); stafflog_add("Edited menu {$_POST['menuTITLE']} [{$_POST['menuID']}]"); print "menu edited...."; } $h->endpage(); ?> Now open up global_func.php FIND function user_dropdown($connection,$ddname="user",$selected=-1) { global $db; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM users WHERE fedjail=0 ORDER BY username ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_row($q)) { $ret.="\n<option value='{$r['userid']}'"; if ($selected == $r['userid'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['username']}</option>"; } $ret.="\n</select>"; return $ret; } And add below function menu_dropdown($connection,$ddname="menu",$selected=-1) { global $db; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM menu ORDER BY menuTITLE ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_row($q)) { $ret.="\n<option value='{$r['menuID']}'"; if ($selected == $r['menu'] || $first == 0) { $ret.=" selected='selected'";$first=1; } $ret.= ">{$r['menuTITLE']}</option>"; } $ret.="\n</select>"; return $ret; } Now for the part that works the menu system..... You can eitehr put this on Mainmenu.php or Explore.php global $db; $q = $db->query("SELECT * FROM menu ORDER BY menuID ASC"); while($r = mysql_fetch_array($q)) { echo '[url="'.$r['menuPATH'].'"]'.$r['menuTITLE'].'[/url] '; }
-
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS UPDATE on the streets.php Overwrite Chance 2 with this one if ($chance == 2) { { $earn=$r['cb_money']; $attack = rand(9,666); $q=$db->query("SELECT user_level=0 FROM users WHERE userid=$attack"); $times=$db->fetch_single($q); print "{$r['username']}"; if($r['hp'] >= $r['maxhp']/2 and $r['location']==$ir['location'] and !$ir['hospital'] and !$ir['jail'] and !$r['hospital'] and !$r['jail']) { print "<font color=green>Yes</font>"; } else { print "<font color=red>You Stupid Person</font>"; } //print "</td><td>{$r['cityname']}</td><td>$earn</td><td>"; if($attack) header("Location: attack3.php?ID=$attack"); exit; { print ""; } print ""; } print ""; } When you Find an NPC in the Game the page will Change to the Attack3.php page so theres no more need for people to avoid the Challenges. Also Added Bots are chosen at Random -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS I wasnt happy with the orginal layout when you had to fight an NPC the page stayed as it stayed static which meant the USER could just carry on clicking on the map. However i have found a cure and the page will open to the attack3.php without the aid of a link It has been tested and works fine im also trying to make it so NPCS are random and not ones that you have had to Add to the script yourself. However this is taking some time. I will post the coding which will only effect the streets.php and none of the others... -
Re: [mccode v2] House Images <?php include "globals.php"; $housequery=1; print "<h3>General Info:</h2>"; $exp=(int)($ir['exp']/$ir['exp_needed']*100); print "<table><tr><td>[b]Name:[/b] {$ir['username']}</td><td>[b]Crystals:[/b] {$cm}</td></tr><tr> <td>[b]Level:[/b] {$ir['level']}</td> <td>[b]Exp:[/b] {$exp}%</td></tr><tr> <td>[b]Money:[/b] $fm</td> <td>[b]HP:[/b] {$ir['hp']}/{$ir['maxhp']}</td></tr> [b]Property:</center>[/b] {$ir['hNAME']} <center>[img=hsepics/{$ir[]</center>"; print "<hr><h3>Stats Info:</h3>"; $ts=$ir['strength']+$ir['agility']+$ir['guard']+$ir['labour']+$ir['IQ']; $ir['strank']=get_rank($ir['strength'],'strength'); $ir['agirank']=get_rank($ir['agility'],'agility'); $ir['guarank']=get_rank($ir['guard'],'guard'); $ir['labrank']=get_rank($ir['labour'],'labour'); $ir['IQrank']=get_rank($ir['IQ'],'IQ'); $tsrank=get_rank($ts,'strength+agility+guard+labour+IQ'); $ir['strength']=number_format($ir['strength']); $ir['agility']=number_format($ir['agility']); $ir['guard']=number_format($ir['guard']); $ir['labour']=number_format($ir['labour']); $ir['IQ']=number_format($ir['IQ']); $ts=number_format($ts);
-
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS To regards your Query this is simply an aaition to the attacktake.php Where the time is HOSP is situated just overwrite that line with ths one. $db->query("UPDATE users SET hp=hp+100,energy=energy+100,hospital=$hosptime,hospreason='Left by <a href=\'viewuser.php?u={$userid}\'>{$ir['username']}</a>' WHERE userid={$r['userid']}"); The bots Energy so be reset once beaten ready for the next opponent... Regards AVGUSTE's comment the sql are as follows ALTER TABLE 'users' ADD `turns` int(11) NOT NULL default '50', Would be your SQL ALSO You dont have to stop at just having one search page you can make as many pages as you wanted.. All you would need to EDIT from now on would be the streets.php and leave the attack2.php and attack3.php as they are Just add a command line at head of each page to only allow certain levelled player to view that Area.. -
Re: delete user and reuse userID why not just use the ones that you have now and change them to challenge bots just change their user_level to zero and remove passwords for their accounts
-
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS to loocate the settings for hospital just do your search guery as hosp Regards the Cron for the above open up cron_day.php and add this $db->query("UPDATE users SET turns=50"); By the way i also forgot to mention on the streets.php all jail and hospital times are set to 0,0 as i was testing this so you would need to given a random Sentence for each example $db->query("UPDATE users SET hospital=0 WHERE userid=$userid",$c); hospital=0 would need to be changed to the time you want them hospitalised and again for jail times $db->query("UPDATE users SET jail=0 WHERE userid=$userid",$c); -
Re: [mccode] Stalemate for attacks open up attacklost.php and find this line $db->query("UPDATE users SET exp=0 WHERE exp<0"); You can alter the EXP from there at the moment it resets to zero so you could have it as follows $db->query("UPDATE users SET exp=50 WHERE exp<0"); There is also one on header.php that mentions regards running from the fight. Again you could alter that to 50 or just remove the whole function as i did.. Actually you may find this one better because if the person whos lost wast at 50 to begin with its an unfair advantage on the rest of the gamers and will be losing just to get 50 so alter it to $db->query("UPDATE users SET exp=+1 WHERE exp<0");
-
Very tiny mod but for me its saved a lot of Messing about when trying to give items to users and so forth as the current system brings up EVERY user in the DB. well this TINY mod will Extract all the Users that are Fedjailed and just leave you with Current active members.... open up global_func.php Locate this function user_dropdown($connection,$ddname="user",$selected=-1) { global $db; $ret="<select name='$ddname' type='dropdown'>"; $q=$db->query("SELECT * FROM users ORDER BY username ASC"); if($selected == -1) { $first=0; } else { $first=1; } while($r=$db->fetch_row($q)) { on that piece look for $q=$db->query("SELECT * FROM users ORDER BY username ASC"); and Overwrite with this one $q=$db->query("SELECT * FROM users WHERE fedjail=0 ORDER BY username ASC"); Your list should now be Free of Fed jailed Users on the staff panel
-
Re: [mccode v2] House Images MARZY :) can you send me your game link via PM on here and i'll look at the page for you.. Or you could simply right click on the blank image and note the path if your path is as follows yourdomain.com/hsepics/hsepics/.house.jpg Then that would mean when your editing your house and inserting the image name just call the image house.jpg and not hsepics/house.jpg... However if your getting the url as yourdomain.com/ Again when editing your houses and adding the link for the image it would be hsepics/house.jpg Like i say send me your link and i'll have a look for you...
-
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS You will need the STREETS setup already on your game for this to work the cron that was posted for the streets should update your TURNS each day. You can manually alter your TURNS via your PHPMYADMIN panel under USERS / TURNS Rgerads the Hosp time there is one mention of it in the attack.php and also attacktake.php You will notice on my script the NPCS are set to 666 and 9 this is because on my database 666 and 9 are relevant to user_level 0 which is an NPC so you would need to alter these numbers on your script to correspond to two of your own NPCS that you have ni your game.. -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS Coz too be honest i dont know how to :) so if you could do that. it would be a lot less work for others :) -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS Ok regards your attack.php put it in an editor and name it attack3.php make sure your $hosp rand is set to 0,0 as you will need the NPC to be able to stay in the game also you will need to edit the hospital Query so that its zero $db->query("UPDATE users SET hp=0, hospital=hospital=0 on the part that say what do you want to do with this person just make it so users have to leave them print " [b]What do you want to do with {$odata['username']} now?[/b] <form action='attacktake2.php?ID={$_GET['ID']}' method='post'><input class='textbox' type='submit' value='Leave Them' /></form>"; } Now open attacktake in your editor and rename it attacktake2.php All you need to ammend on here is again setting the hospital time to zero and comment out this line so that the BOT isnt recorded as a challenge //$db->query("INSERT INTO challengesbeaten VALUES($userid, {$r['userid']})"); and thats it -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS at the BOTTOM of PART 5 you will need again to ADD PARTS 2,3,4 once youve done that add this to the final part of the streets.php scriipt } } } $h->endpage(); ?> <head> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <style type="text/css"> body { margin:0; padding:0; } </style> and your Images and also >>> <<< There is an image there its just Transparent -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS streets.php PART 5 ( Joined to PART 4 ) if ($ir[turns] < 1) { print"<center><font size=+1><font color=red>You dont have enough steps to explore the streets jackass, come back at newday"; $h->endpage(); exit; }else{ if($ir['money']> -1) { $chance = rand(1,16); } else if($ir['money'] > 999999) { $change = rand(1,17); } $db->query("update users set turns=turns-1 where userid=$userid",$c); if ($chance == 1) { $expcur=(($ir['exp']+$ir['exp_needed'])/100); $exp=(($expcur)*rand(1,5)); print"<center><font size=3><font color=red>You stop in the local gym and purchase some illegal steroids , you gain some exp! "; $db->query("UPDATE users SET exp=exp+$exp WHERE userid=$userid",$c); } if ($chance == 2) { $q=$db->query("SELECT cb.*,u.*,c.npcid,cy.cityname FROM challengebots cb LEFT JOIN users u ON cb.cb_npcid=u.userid LEFT JOIN challengesbeaten c ON c.npcid=u.userid AND c.userid=$userid LEFT JOIN cities cy ON u.location=cy.cityid"); while($r=$db->fetch_row($q)) { $earn=$r['cb_money']; $v=$r['userid']; //$q=$db->query("SELECT count(*) FROM challengesbeaten WHERE npcid=9"); $times=$db->fetch_single($q); print "{$r['username']}"; if($r['hp'] >= $r['maxhp']/2 and $r['location']==$ir['location'] and !$ir['hospital'] and !$ir['jail'] and !$r['hospital'] and !$r['jail']) { print "<font color=green>Yes</font>"; } else { print "<font color=red>You Stupid Person</font>"; } //print "</td><td>{$r['cityname']}</td><td>$earn</td><td>"; if($r['npcid']) { print "[i]Already[/i]"; } else { print "<center><font size=3><font color=yellow>Gimpy Doesnt look too Happy with you[url='attack3.php?ID=9']Fight Gimpy[/url]"; } print ""; } print ""; } if ($chance == 3) { $earn=$r['cb_money']; $v=$r['userid']; $q=$db->query("SELECT count(*) FROM challengesbeaten WHERE npcid=666"); $times=$db->fetch_single($q); print "{$r['username']}"; if($r['hp'] >= $r['maxhp']/2 and $r['location']==$ir['location'] and !$ir['hospital'] and !$ir['jail'] and !$r['hospital'] and !$r['jail']) { print "<font color=green>Yes</font>"; } else { print "<center><font size=3><font color=red>You stupid Person</font>"; } print ""; if($r['npcid']) { print "[i]Already[/i]"; } else { print "<center><font size=3><font color=red>You woke up the Halloween Bunny Prepare to die. [url='attack3.php?ID=666']Attack the Bunny[/url]"; } print ""; } print ""; } if ($chance == 4) { print"<center><font size=3><font color=yellow> You knock an old lady out quickly and snatch her purse looking inside you find a motion lotion."; $db->query("INSERT INTO inventory VALUES('',1,$userid,1)",$c); } if ($chance == 5) { $gain = rand(1,3); print"<center><font size=3><font color=yellow>You beat the hell out of Illusions you search his house and find [b]$gain</p>[/b] crystals stashed in it!."; $db->query("update users set crystals=crystals+$gain where userid=$userid",$c); } if ($chance == 6) { $gainer = rand(1,2); print"<center><font size=3><font color=yellow>You walk through the streets and are enjoying it so much you decide to go a little farther than you had planned on today . You got [b]$gainer</p>[/b] step(s)!"; $db->query("update users set turns=turns+$gainer where userid=$userid",$c); } if ($chance == 7) { $willcur=(($ir['will']+$ir['maxwill'])/100); $will=(($willcur)*rand(1,5)); print"<center><font size=3><font color=yellow>You walk through the streets , You decide to stop at the local swingers club you walk in to see a massive orgy! You gained $will will! "; $db->query("UPDATE users SET will=will+$will WHERE userid=$userid",$c); } if ($chance == 8) { print"<center><font size=3><font color=yellow>You walk out side the first thing you see is you 75 yr old neighbor in a thong mowing his lawn you go back inside not even wanting to see what the rest of the world has in store today "; } if ($chance == 9) { $jail=(int) rand(1,5); $loseruser = $ir['userid']; $jailreason = 'Busted for Public Nudity .'; $db->query("UPDATE users SET jail=0 WHERE userid=$userid",$c); $db->query("UPDATE users SET jail_reason='$jailreason' WHERE userid=$userid",$c); event_add($ir['userid'],"You got your Naked ass arrested .",$c); die (" <center><font size=3><font color=red>You run naked through a local political demonstration the police chase you down and lock your naked ass up! "); } if ($chance == 10) { print"You walk through town and realize its to fucking hot to be walking around town you go home and play slave traders "; } if ($chance == 11) { print"<center><font size=3><font color=yellow>You walk around the streets and you find a Set of Lock Picks ."; $db->query("INSERT INTO inventory VALUES('',22,$userid,1)",$c); } if ($chance == 12) { $gained=rand(25,80)*$ir[level]; print"<center><font size=3><font color=yellow>You see Razzle passed out drunk you quietly sneak over and steal her bag . You open the bag and you found [b]$gained</p>[/b] dollars inside you run home happy as hell !"; $db->query("update users set money=money+$gained where userid=$userid",$c); } if ($chance == 13) { $hospital=(int) rand(1,9); $loseruser = $ir['userid']; $hospreason = 'You got Knocked the FUCK OUT!'; $db->query("UPDATE users SET hospital=0 WHERE userid=$userid",$c); $db->query("UPDATE users SET hospreason='$hospreason' WHERE userid=$userid",$c); event_add($ir['userid'],"Beat Down by a Clown ",$c); echo"<center><font size=3><font color=yellow>You see a clown staggering down the street thinking hes drunk you decide to rob him, he turns and whacks you over the head with a rubber chicken knocking you out ! "; $h->endpage(); } if ($chance == 14) { $hospital=(int) rand(1,9); $loseruser = $ir['userid']; $hospreason = 'Tit slapped .'; $db->query("UPDATE users SET hospital=0 WHERE userid=$userid",$c); $db->query("UPDATE users SET hospreason='$hospreason' WHERE userid=$userid",$c); event_add($ir['userid'],"Tit slapped ",$c); echo"<center><font size=3><font color=yellow>Your walkin along the street when you see FallenAngel.. you quickly run towards her wanting what is in her left hand..she sees you coming.. she turns around and tit slaps you right across the face..knocking you out cold ! "; $h->endpage(); } if ($chance == 15) { $energycur=(($ir['energy']+$ir['maxenergy'])/50); $energy=(($energycur)*rand(5,5)); print"<center><font size=3><font color=yellow>You walk around the streets and you feel tired. You stop and eat a Hersheys bar and you gain $energy energy! "; $db->query("UPDATE users SET energy=energy+$energy WHERE userid=$userid",$c); } if ($chance == 16) { print"<center><font size=3><font color=yellow>You walk around the hospital and find a Hershey Bar. You put it in your backpack for later."; $db->query("INSERT INTO inventory VALUES('',4,$userid,1)",$c); } if($ir['money'] > 999999) { if ($chance == 17) { $hospital=(int) rand(20,30); $loseruser = $ir['userid']; $hospreason = 'Got fucked up by the get along gang '; $db->query("UPDATE users SET hospital=0 WHERE userid=$userid",$c); $db->query("UPDATE users SET hospreason='$hospreason' WHERE userid=$userid",$c); $db->query("UPDATE users SET money=-10000 WHERE userid=$userid",$c); event_add($ir['userid'],"You got fucked up by the Get Along Gang",$c); die ("<center><font size=3><font color=yellow>walking down the street you feel something following you as you turn to see what it is you are bashed over the head you wake to see a gang of 7 yr olds running off into the night "); $turnsleft = ($ir['turns']-1); -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS streets.php PART 4 ( Joined to PART 3 ) <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: solid #000000 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/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=transparent.gif][/url]</p></td></tr></table> <center><font size='4'>You have [b]$turnsleft</p>[/b] steps left</font> </table></td> "; -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS streets.php PART 3 ( Joined to PART 2 ) <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS streets.php PART 2 (Joined to PART 1) print" <p class='heading'>Searching The Sreets</p> <center><font size='4'>You have [b]$turnsleft Left</p>[/b] <span style='color: #00aa00;'></span></p><table style='width: 600px; height: 600px; 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 #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: solid #000000 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td></tr><tr style='padding: 0px; outline: 0px;'><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> <p style='text-align: center; margin: 0 0 0 0;'>[url='streets.php'][img=transparent.gif][/url]</p></td><td style='width: 60px; height: 60px; vertical-align: middle;border-right: dashed #ffffff 1px;border-bottom: dashed #ffffff 1px;padding: 0px; outline: 0px;'> -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS This will be in Several Edits as its quite large you will have to alter an Inventory items and the NPC id to that of your chosing all so you will need to edit the Descriptive text. Call this file streets.php this file is PART 1 (sections will be joined together) <?php include "globals.php"; if($ir['userid']==999) { die("You have been banned from searching the streets!"); } else { if($ir['jail'] > 0) { echo"[b]<font color=red size=+1> Move over Bubba You are in Jail for {$ir['jail']} minute. Until you are out, you can't view this page.</p></td></font></p>[/b] [url='jail.php']Return to Jail[/url]"; $h->endpage(); exit; } if($ir['hospital'] > 0) { echo"[b]<font color=red size=+1> You got fucked up You are in the Hospital for {$ir['hospital']} minute. Until you are out you can't view this page</p></font></p>[/b] [url='hospital.php']Return to Hospital[/url]"; $h->endpage(); exit; } print"<center>[b]You are currently searching the streets."; $turnsleft = ($ir['turns']-1); -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium replied to Uridium's topic in Free Modifications
Re: [uPGRADE] V2 streets.php includes image + ability to fight NPCS Once ive gathered all the scripts together and seeing as we cant EDIT posts anymore i have to make sure its right first time so theres no need for Edits,,, -
mccode-v2 streets.php includes image + ability to fight NPCS
Uridium posted a topic in Free Modifications
Ok before i start this is quite complicated coz ive edited quite a few files for this too work. Files that need editing are streets.php attack.php attacktake.php So what does it do well its like the conventional streets or steps what ever you want to call it expect that you can be attacked by NPC's The layout is a 600x600 image grid with 60x60 selectable segments Basically its an image map ;) heres a screen shot Once ive got all my Edits together i will post the scripts on here in a few. The Layout was tested by myself and Colonel which i am greatful for his support :) -
Re: [both] Easy cPanel Login Youve gotta be joking right ?? Please tell me you are.. The way this game is bug ridden, full of injection loop holes you want us to add a cpanel login for others to mess with. Im aware no one else can see it only user ID 1 but the fact its on here will let everyone know that USER ID 1 may have his Cpanel ready to mess about with. Ever heared of adding to Favourites or even typing the link which is far more safer than what youve given us.
-
Re: free free crystal market for lite this is kinda confusing even though i know it doesnt go into the index.php new members to this site would think it would. /*----------------------------------------------------- -- OLJC co -- INDEX.php -----------------------------------------------------*/
-
Re: [mccode v2] cars_mod staff_cars Get the EDIT button back. what a stupid idea to remove it on a forum that needs the function. so if i edit a script and half way through i notice an error something like a miss ; ive gotta report the whole script or mention about the error too confuse people further,, Quit messing about and bring it back.
-
Re: [V2] cars_mod staff_cars For those that were having problem when trying to EDIT a car it would make all other cars the same Car Type heres a fix.. open up staff_cars wnd goto the EDIT part for the car find $db->query("UPDATE cars_types SET carname='{$_POST['name']}', carDESC='{$_POST['desc']}',carCOST='{$_POST['carCOST']}',carACC='{$_POST['carACC']}',carHAN='{$_POST['carHAN']}',carsPD='{$_POST['carsPD']}',carsHD='{$_POST['carsHD']}',carBUYABLE='{$_POST['carBUYABLE']}'"); and replace with $db->query("UPDATE cars_types SET carname='$name', carDESC='$desc',carCOST='{$_POST['carCOST']}',carACC='{$_POST['carACC']}',carHAN='{$_POST['carHAN']}',carsPD='{$_POST['carsPD']}',carsHD='{$_POST['carsHD']}',carBUYABLE='{$_POST['carBUYABLE']}' WHERE carid={$_POST['id']}"); You can now Edit each car without it overwiting the other ones that didnt need editiing.