
MDK666
Members-
Posts
268 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
MDK666's Achievements
Newbie (1/14)
0
Reputation
-
i have'nt been on or around for a few years but ill go through all my files later and see if i can find the ones your looking for..
-
wow everyone done found out you lied about creating the header, and drop-down menu, illusions can also stand up for it as she knew about the drop-down menu for almost 2 years now, so you didnt recode anything all you did was rip my source and make it basic for mccodes non-modded now if you want to get into this arguement again we can cuz i can prove i coded this as i know exactly what does what, when you dont, also if you re-coded it then where did u get the javascript info from, when did u code it, how long did it take you, what exactly did u recode as your coding is my exact coding line by line. and in page one of this topic you gave credit where credit was due so dont start saying you had recoded it when u didnt do anything but rip my code and release it trying to say its yours, now see im trying to be nice or id say ur just a pirater stealing peoples work and trying to say its your own, other people might not realize you use there work but i know my work because i code alot differently then alot of people, and i know as a fact that you dont code how i do, this is also the reason i dont release my work because of people like you, taking peoples work, and releasing it stateing its yours, now if you really want i can take this to court and have the court system decide on who created it, then youll more then likely be fined, and charged for theft so its up to you.
-
im the one who made it, dandre just tried saying he coded it, but eventually gave me credit as illusions knew i created it a few years ago and well a few people have quoted what he had said saying "he coded it but changed the gangs links and added more pictures to it" so yea. thanks for the compliment it means alot to me that people like my modifications that i release to the public free
-
use this code just change the links and etc. <li class='top'>[url='#nogo5']<span class='down'>Link Name</span>[/url] <ul class='sub'> [*][url='crime.php']Crimes[/url] [*][url='job.php']Jobs[/url] [*][url='gym.php']Gym[/url] [*][url='education.php']School[/url] [*][url='newspaper.php']Newspaper[/url] [*][url='search.php']Search[/url] [*][url='forums.php']Forums[/url] [*][url='preport.php']Player Report[/url] [/list]
-
accually his header doesnt work right as his tables are all off center, your better or using mine that i had posted in my topic its on the second page, i posted my header then recoded a regular header for non-modded games for people who are just starting out and want to have this menu. as for screen resolution you can just change the table widths unless theres a different way to do it but i use 1024×768 so it shouldnt cause any problems with people using a smaller or bigger resolution as the tables arent useing the full screen.
-
if you want to charge them money or crystals to play certain games then just put a query below the code of the game in example: ///Change 100 with the amount you want to charge people per game. $db->query("UPDATE users SET money=money-100 WHERE userid=$userid"); print "<center>Welcome {$ir['username']} to the arcade. All these games are for fun and they will not give any money.</center> <center><h3>Game List</h3></center><table> <tr><td>[url='arcade.php?action=bejeweled']Bejeweled[/url]</td></tr> <tr><td>[url='arcade.php?action=blackjack']BlackJack[/url]</td> <tr><td>[url='arcade.php?action=chess']3D Chess[/url]</td></tr> <tr><td>[url='arcade.php?action=ewoks']Ewoks[/url]</td></tr> <tr><td>[url='arcade.php?action=pacman']PacMan[/url]</td></tr> <tr><td>[url='arcade.php?action=poker']Poker[/url]</td></tr> <tr><td>[url='arcade.php?action=streetfighter']Street Fighter II[/url]</td></tr> </table> [url='explore.php'][Go Back To The City][/url] "; you can do that above each link with a different price or above the whole arcade to charge them each time they play a game.
-
i think when i release the header above that i might of missed adding a table or something somewhere all ull have to really do is play with the tables then eventually itll sit right
-
lol a off-topic thread O.O no one will find out lol, um if u want you guys can move this thread i just wanted credit for my work thats all since he wanted to try and steal something ive had for almost 2 years and never released it lol.
-
The mod that will blow your mind as promised [23% complete]
MDK666 replied to Uridium's topic in Requests & In Production
how about a spell system that gets used against the gangs that have over a 200 reputation as itll be a stronger gang and itll make it more epic for the gangs to fight against the npc as only users has weapons and armor and the npc could have spells, weapons, armors and items to heal itself during the battle, itll just make the whole idea more realistic in a way -
How about my version which is 1 page with the cases added like mentioned above and giving credit to brad for adding the "if in jail or hospital" i just recoded it a little bit, add notes to keep people knowing whats what, 11 games all alphabetical. If anyone wants to add anything else let me know and ill see what i can come up with. <?php /// Created By MDK666 - June 6th, 2010 /// Jail, Hospital Addition By: Brad /// From: MWG Forums - [url]Http://makewebgames.io/[/url] /// /// *** Warning *** /// Do not remove this copyright, without authorization from the sole creator/s. /// Do not sell, re-sell, re-produce, tamper, other then in adding games or modifing the original file, /// to add more details, upgrading php version, or using it for your own creation. /// *** Warning End *** include($_SERVER['DOCUMENT_ROOT'] . '/globals.php'); /// Arcade Title. echo "<h3>Arcade</h3>"; /// Calls The Pages with this string. $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : ""; ///Each Case Is A Different Page For The Games, I Made Them As Game Names To Stay Organized. switch($_GET['action']) { case 'index':index(); break; case 'bejeweled':bejeweled(); break; case 'blackjack':blackjack(); break; case 'chess':chess(); break; case 'ewoks':ewoks(); break; case 'pacman':pacman(); break; case 'poker':poker(); break; case 'streetfighter':streetfighter(); break; default:index(); break; } ///This Is The Main Arcade Index, All Editing Should Be Done In This Function. function index() { global $ir; if($ir['jail'] != 0) ///Games Aloud In Jail { die ("You cannot access the arcade, as your in jail you only can play these 2 games. [url='arcade.php?action=bejeweled']Bejeweled[/url] [url='arcade.php?action=blackjack']BlackJack[/url] [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"); } else if($ir['hospital'] != 0) ///Games Aloud In Jail { die ("You cannot access the arcade, as your in the hospital you only can play these 2 games. [url='arcade.php?action=bejeweled']Bejeweled[/url] [url='arcade.php?action=blackjack']BlackJack[/url] [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"); } print "<center>Welcome {$ir['username']} to the arcade. All these games are for fun and they will not give any money.</center> <center><h3>Game List</h3></center><table> <tr><td>[url='arcade.php?action=bejeweled']Bejeweled[/url]</td></tr> <tr><td>[url='arcade.php?action=blackjack']BlackJack[/url]</td> <tr><td>[url='arcade.php?action=chess']3D Chess[/url]</td></tr> <tr><td>[url='arcade.php?action=ewoks']Ewoks[/url]</td></tr> <tr><td>[url='arcade.php?action=pacman']PacMan[/url]</td></tr> <tr><td>[url='arcade.php?action=poker']Poker[/url]</td></tr> <tr><td>[url='arcade.php?action=streetfighter']Street Fighter II[/url]</td></tr> </table> [url='explore.php'][Go Back To The City][/url] "; } /// Games Start Here, There Listed Alphabitical Order For Organization. function bejeweled() { global $ir; print "<center>Welcome {$ir['username']} to Bejeweled.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='499' height='365'> <param name='movie' value='http://www.freegames4all.net/swf/Bejeweled.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/Bejeweled.swf' width=499 height=365 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function blackjack() { global $ir; print "<center>Welcome {$ir['username']} to Blackjack.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20323.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20323.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function chess() { global $ir; print "<center>Welcome {$ir['username']} to 3D Chess.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/21337.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/21337.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function ewoks() { global $ir; print "<center>Welcome {$ir['username']} to Ewoks.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20295.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20295.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function pacman() { global $ir; print "<center>Welcome {$ir['username']} to Pacman.</center> <OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='470' height='470'> <PARAM name=quality value=high> <PARAM name='SRC' value='http://www.zemnetmedia.com/games/pacman/pacmangame.swf'> <EMBED src='http://www.zemnetmedia.com/games/pacman/pacmangame.swf' width='470' height='470' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash'> </EMBED></object> [b]These are the shortcut keys: <font color=red>M</font> - Turn music On/Off <font color=red>P</font> - Pause/ Unpause the game <font color=red>Q</font> - Quit the Game <font color=red>L</font> - Low quality on/ off [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function poker() { global $ir; print "<center>Welcome {$ir['username']} to Poker.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20493.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20493.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function streetfighter() { global $ir; print "<center>Welcome {$ir['username']} to Street Fighter II.</center> <object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20643.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20643.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object> [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } /// The Arcade Script Ends Here, Games Should Not Pass This Note. $h->endpage(); ?>
-
well i coded up a quick arcade for anyone who might want to use it, i have 7 games preloaded into it, you need nothing to host just create a file then add this code to it, then all done... Game List: Bejeweld Blackjack 3D Chess Starwars Shooter Packman Poker Street Fighter II Create a file called arcade.php <?php include($_SERVER['DOCUMENT_ROOT'] . '/globals.php'); echo "<h3>Arcade</h3>"; $_GET['action'] = isset($_GET['action']) && is_string($_GET['action']) ? strtolower(trim($_GET['action'])) : ""; switch($_GET['action']) { case 'index':index(); break; case 'bejeweled':bejeweled(); break; case 'blackjack':blackjack(); break; case 'chess':chess(); break; case 'ewoks':ewoks(); break; case 'pacman':pacman(); break; case 'poker':poker(); break; case 'streetfighter':streetfighter(); break; default:index(); break; } function index() { global $ir; print "<center>Welcome {$ir['username']} to the arcade. All these games are for fun and they will not give any money.</center> <center><h3>Game List</h3></center>"; print "<table> <tr><td>[url='arcade.php?action=bejeweled']Bejeweled[/url]</td></tr> <tr><td>[url='arcade.php?action=blackjack']BlackJack[/url]</td></tr> <tr><td>[url='arcade.php?action=chess']3D Chess[/url]</td></tr> <tr><td>[url='arcade.php?action=ewoks']Ewoks[/url]</td></tr> <tr><td>[url='arcade.php?action=pacman']PacMan[/url]</td></tr> <tr><td>[url='arcade.php?action=poker']Poker[/url]</td></tr> <tr><td>[url='arcade.php?action=streetfighter']Street Fighter II[/url]</td></tr> </table> [url='explore.php'][Go Back To The City][/url] "; } function bejeweled() { global $ir; print "<center>Welcome {$ir['username']} to Bejeweled.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='499' height='365'> <param name='movie' value='http://www.freegames4all.net/swf/Bejeweled.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/Bejeweled.swf' width=499 height=365 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function blackjack() { global $ir; print "<center>Welcome {$ir['username']} to Blackjack.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20323.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20323.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function chess() { global $ir; print "<center>Welcome {$ir['username']} to 3D Chess.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/21337.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/21337.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function ewoks() { global $ir; print "<center>Welcome {$ir['username']} to Ewoks.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20295.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20295.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function pacman() { global $ir; print "<center>Welcome {$ir['username']} to Pacman.</center> "; print"<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0' width='470' height='470'> <PARAM name=quality value=high> <PARAM name='SRC' value='http://www.zemnetmedia.com/games/pacman/pacmangame.swf'> <EMBED src='http://www.zemnetmedia.com/games/pacman/pacmangame.swf' width='470' height='470' quality=high pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash' type='application/x-shockwave-flash'> </EMBED></object> [b]These are the shortcut keys: <font color=red>M</font> - Turn music On/Off <font color=red>P</font> - Pause/ Unpause the game <font color=red>Q</font> - Quit the Game <font color=red>L</font> - Low quality on/ off"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function poker() { global $ir; print "<center>Welcome {$ir['username']} to Poker.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20493.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20493.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } function streetfighter() { global $ir; print "<center>Welcome {$ir['username']} to Street Fighter II.</center> "; print "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0' width='500' height='500'> <param name='movie' value='http://www.freegames4all.net/swf/20643.swf'><param name='quality' value='high'> <embed src='http://www.freegames4all.net/swf/20643.swf' width=500 height=500 align='center' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash'></embed> </object>"; print " [url='arcade.php?action=index'][Go Back To The Arcade Home][/url]"; } $h->endpage(); ?> and thats all there is i hope everyone enjoys it.
-
Well awhile ago i started creating a outpost mod, but never got around to finishing it and gave up, the mod allows you to mine for tokens which in exchange will allow you to upgrade your mine to gain more tokens per mine, buy troops for both defense and offense to attack others and steal there tokens, i never finished the option to allow a outpost to trade in there tokens for crystal or money, and i never made the table but im putting it here for people incase someone might want to finish it or even make something useful with it so here it is... <?PHP include "../globals.php"; //This Contains User Stuff print "<h3>Outposts</h3>"; if($ir['outpostOWNER']>-1) { switch($_GET['action']) { case 'outpost' : outpost_outpost(); break; case 'mines' : outpost_mines(); break; case 'shop' : outpost_shop(); break; case 'battle' : outpost_battle(); break; case 'listing' : outpost_listing(); break; case 'guide' : outpost_guide(); break; default : index(); break; } } else { if(isset($_GET['buy'])) { if($ir['money']>1000) { print "Congratulations, you bought a Outpost for \$1,000! [url='outpost.php']Start using my Outpost[/url]"; $db->query("UPDATE users SET money=money-1000,outpostOwner=0 WHERE userid=$userid"); } else { print "You do not have enough money to buy the outpost. [url='../explore.php']Back to town...[/url]"; } } else { print "Buy a outpost today, just \$1,000! [url='outpost.php?buy']> Yes, Buy a outpost![/url]"; } } function index() { print " Welcome to Outpost. If this is your first time playing the game, you should read the guide. <table border='1'><div align='left'><ul> [*][url='outpost.php?action=outpost']<u>View Outpost</u>[/url] [*][url='outpost.php?action=mines']<u>The Mines</u>[/url] [*][url='outpost.php?action=shop']<u>Outpost Shop</u>[/url] [*][url='outpost.php?action=battle']<u>Attack Outposts</u>[/url] [*][url='outpost.php?action=listing']<u>List Outposts</u>[/url] [*][url='outpost.php?action=guide']<u>Outpost Guide</u>[/url] [/list]</div></table>"; } function outpost_outpost() { print " Welcome to your outpost, {$ir['username']}. [b]<u>Outpost Information[/b]</u> <table><tr><td>[b]Size[/b]:</td><td>{$ir['outpostSIZE']}</td></tr> <tr><td>[b]Turns[/b]:</td><td>{$ir['outpostTURNS']}</td></tr> <tr><td>[b]Tokens[/b]:</td><td>{$ir['outpostTOKENS']}</td></tr> <tr><td>[b]Troops[/b]:</td><td>{$ir['outpostTROOPS']}</td></tr> <tr><td>[b]Barricades[/b]:</td><td>{$ir['outpostBARRACADES']}</td></tr> </table> [url='outpost.php']<u>[Menu]</u>[/url]"; } function outpost_mines() { global $db,$ir,$c,$h,$userid; { if(!$_GET['spend']) { print " Welcome to the mines. What are going to do? You have {$ir['outpostsize']} mines to work with. <table border='1'><div align='left'><ul> [*][url='outpost.php?action=mines&spend=upgrade']<u>Buy A Mine {$ir['outposttokens']}</u>[/url] [*][url='outpost.php?action=mines&step=mine']<u>Go Mining</u>[/url] [/list]</div></table> [url='outpost.php']<u>[Menu]</u>[/url]"; } else { if($_GET['spend'] == 'upgrade') { if($ir['crystals'] <10) { print "You don't have enough crystals!"; } else { $db->query("UPDATE users SET crystals=crystals-10 WHERE userid=$userid"); $db->query("UPDATE outposts SET outpostMINE=outpostMINE+1 WHERE outpostID=$outpostID"); print "You have paid 10 crystals to upgrade your mine."; } } } } } function outpost_shop() { print " Welcome to the Outpost Shop! Buy troops and barricades here, or even increase your outpost's size. <table border='1'><div align='left'><ul> [*][url='outpost.php?action=shop&buy=s']<u>Increase Outpost Size</u>[/url] [*][url='outpost.php?action=shop&buy=t']<u>Buy A Troop</u>[/url] [*][url='outpost.php?action=shop&buy=b']<u>Buy A Barracade</u>[/url] [*][url='outpost.php?action=shop&buy=t10']<u>Buy 10 Troops</u>[/url] [*][url='outpost.php?action=shop&buy=b10']<u>Buy 10 Barracades</u>[/url] [*][url='outpost.php?action=shop&buy=tmax']<u>Buy Max Troops</u>[/url] [*][url='outpost.php?action=shop&buy=bmax']<u>Buy Max Barracades</u>[/url] [/list]</div></table> [url='outpost.php']<u>[Menu]</u>[/url]"; } function outpost_battle() { print " Welcome to the war room. Just enter the Outpost ID and we'll be set. <table><form method='post' action='outpost.php?action=battle&action=battle'> <tr><td>Outpost ID:</td><td><input type='text' name='ID' value=''></td></tr> <tr><td>Times To Attack:</td><td><input type='text' name='times'></td></tr> <tr><td colspan='2' align='center'><input type='submit' value='Attack'></td></tr> </form></table> [url='outpost.php']<u>[Menu]</u>[/url]"; } function outpost_listing() { print " <table><tr><td width=100>[b]<u>Outpost ID</td><td width=100>[b]<u>Base Size</td> <td width=100>[b]<u>Owner</td><td width=100>[b]<u>Attack?</td></tr> <tr><td>{$ir['outpostid']}</td><td>{$ir['outpostsize']}</td> <td><a href=view.php?view='ID'>{$ir['outpostid']}</a> </td><td>- <a href=outpost.php?action=battle&oid='ID'>Attack</a></td></tr></table> [url='outpost.php']<u>[Menu]</u>[/url]"; } function outpost_guide() { print " <u>[b]Basics[/b]</u> The basic point of the game is to have the biggest outpost and to have the most tokens (Tokens are the game's currency.) Every reset, you get 5 turns. You can do whatever you need to do with those 5 turns.</p> <u>[b]Minings[/b]</u> Mining is a very good way to get money. Mining takes one turn. Every time you mine, you'll get tokens. The more mines you have, the more you'll gain. You can only have one mine per size of your outpost.</p> <u>[b]Outpost Shop[/b]</u> The base shop lets you buy more troops and barricades. The more troops you have, the more offense power your base has. The more barricades you have, the more defense power your base has.</p> <u>[b]Attacking Outposts[/b]</u> Attacking is the most important way to gain tokens. If you have more troops and defenses than the enemy you attack, you will win. Otherwise, you will lose. You can only have 10 troops and 10 barricades per outpost size, so you won't be any type of ubernewb.</p> [url='outpost.php']<u>[Main]</u>[/url]"; } $h->endpage; ?>
-
or come visit my site crimegame.info .gov, .edu, .me, .mobi. com.co, and etc. there as soo many types of domain endings its not even funny. unless you add every ending for a domain possible then it wont stop people from sending links in the mailbox and dont forget to remove https: as some people use that also
-
<?php /** * Layout made by: Shaved92bravada Idea came from another post on CE * Rest of code is just standard V2 MCcodes * Made as a free mod so it is not to be sold. */ global $db,$c,$ir, $set; $hc=$set['hospital_count']; $jc=$set['jail_count']; $ec=$ir['new_events']; $mc=$ir['new_mail']; if($ir['hospital']) { print "<table width=145 class=menu><th>Main</th><tr><td> [url='hospital.php']Hospital ($hc)[/url]</td></tr> <tr><td>[url='inventory.php']Inventory[/url]</td></tr>"; } elseif($ir['jail']) { print "<table width=145 class=menu><th>Main</th><tr><td> [url='jail.php']Jail ($jc)[/url]</td></tr> <tr><td>[url='inventory.php']Inventory[/url]</td></tr>"; } else { print "<table width=145 class=menu><th>Main</th><tr><td> [url='index.php']Home[/url]</td></tr> <tr><td>[url='streets.php']Explore Streets<font color='red'><blink>(new)</blink></font>[/url]</td></tr> <tr><td>[url='inventory.php']Inventory[/url]</td></tr>"; } if($ec > 0) { print "<tr><td>[url='events.php']Events ($ec)[/url]</td></tr>"; } else { print "<tr><td>[url='events.php']Events (0)[/url]</td></tr>"; } if($mc > 0) { print "<tr><td>[url='mailbox.php']Mailbox ($mc)<image src='mail.jpg'>[/url]</td></tr>"; } else { print "<tr><td>[url='mailbox.php']Mailbox (0)[/url]</td></tr>"; } if($ir['jail'] and !$ir['hospital']) { print "<tr><td>[url='gym.php']Jail Gym[/url]</td></tr> <tr><td>[url='hospital.php']Hospital ($hc)[/url]</td></tr>"; } else if (!$ir['hospital']) { print "<tr><td>[url='explore.php']Explore[/url]</td></tr> <tr><td>[url='gym.php']Gym[/url]</td></tr> <tr><td>[url='criminal.php']Crimes[/url]</td></tr> <tr><td>[url='job.php']Your Job[/url]</td></tr> <tr><td>[url='education.php']Local School[/url]</td></tr> <tr><td>[url='hospital.php']Hospital ($hc)[/url]</td></tr> <tr><td>[url='jail.php']Jail ($jc)[/url]</td></tr>"; } else { print "<tr><td>[url='jail.php']Jail ($jc)[/url]</td></tr>"; } print "<tr><td>[url='/forums']Forums[/url]</td></tr>"; if($ir['new_announcements']) { print "<tr><td>[url='announcements.php']Announcements ({$ir['new_announcements']})[/url]</td></tr>"; } else { print "<tr><td>[url='announcements.php']Announcements (0)[/url]</td></tr>"; } print "<tr><td>[url='newspaper.php']Newspaper[/url]</td></tr> <tr><td>[url='search.php']Search[/url]</td></tr>"; $q=$db->query("SELECT * FROM cities1 WHERE cityowner11={$ir['userid']}"); //its userid not userid1 as its pulling from the users table. if($db->num_rows($q)>0) { print "[url='cityadmin.php']City Admin Panel[/url] "; } if(!$ir['jail'] && $ir['gang']) { print "<tr><td>[url='yourgang.php']Your Gang[/url]</td></tr>"; if(!$ir['jail'] && $ir['gang']) { print "<tr><td>[url='yourgang.php']Your Gang[/url]</td></tr>"; } print "<th>[b]Personal:[/b]</th> <tr><td>[url='preferences.php']Preferences[/url]</td></tr> <tr><td>[url='preport.php']Player Report[/url]</td></tr> <tr><td>[url='breport.php']Bug Report<font color='red'><blink>(new)</blink>[/url]</td></tr> <tr><td>[url='helptutorial.php']Help Tutorial[/url]</td></tr> <tr><td>[url='gamerules.php']Game Rules[/url]</td></tr> <tr><td>[url='viewuser.php?u={$ir[']My Profile[/url]</td></tr> <tr><td>[url='logout.php']Logout[/url]</td></tr> </table>"; } ?>
-
pm me on yahoo andrew_032686 or msn [email protected] cuz im gonna test this on my local server right now and see why you keep getting these errors.