Jump to content
MakeWebGames

iseeyou94056

Members
  • Posts

    691
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iseeyou94056

  1. Re: [Free] MySQL Control Panel thanks this is great
  2. Re: My Newist Discovery dude what the hell u got the from kyle
  3. Re: Counting (nr game) 1807
  4. Re: Simple Random Pics im not sure i never seen anything like it and thanks
  5. all this is is something that show some random pics just for a little add on make a file called randpic.php in it put <?php include "globals.php"; echo "<h3>Random Pics</h3>"; $rand=(int) (rand(1,25)); if ($rand==1) { echo "[img=http://i272.photobucket.com/albums/jj198/EricCartman007/sp706_Lil_Crime_Stoppers.jpg]";} if ($rand==2) { echo "[img=http://www.hahastop.com/pictures/Cat_Ice_Cream.jpg]";} if ($rand==3) { echo "[img=http://www.hahastop.com/pictures/Baby_Finger.jpg]";} if ($rand==4) { echo "[img=http://www.boredatuni.com/pictures/425.jpg]";} if ($rand==5) { echo "[img=http://mmamania.com/wp-content/uploads/2007/07/ufc76_tickets.jpg]";} if ($rand==6) { echo "[img=http://usversusthem.files.wordpress.com/2007/12/chuck-liddell.png]";} if ($rand==7) { echo "[img=http://img356.imageshack.us/img356/6766/hellopossums1yc.jpg]";} if ($rand==8) { echo "[img=http://icanhascheezburger.files.wordpress.com/2008/01/funny-pictures-kitten-hug.jpg]";} if ($rand==9) { echo "[img=http://i164.photobucket.com/albums/u2/rabbidturtleracing/poop-1.jpg]";} if ($rand==10) { echo "[img=http://www.massivelatte.com/images/no_fart.jpg]";} if ($rand==11) { echo "[img=http://i165.photobucket.com/albums/u47/he8er74/NASTY.jpg]";} if ($rand==12) { echo "[img=http://version11.files.wordpress.com/2007/08/6735ek3.gif]";} if ($rand==13) { echo "[img=http://www.artoftaste.no/img/0054/040854.jpg]";} if ($rand==14) { echo "[img=http://www.thirdwayblog.com/wp-content/uploads/2007/05/axe-spray-1.jpg]";} if ($rand==15) { echo "[img=http://www.spencersundell.com/blog/wp-content/uploads/2007/06/nostrileyedancer.gif]";} if ($rand==16) { echo "[img=http://www.mtv.com/onair/rob_and_big/assets/images/flipbooks/cast/jason_campbell/DSC_0007.jpg]";} if ($rand==17) { echo "[img=http://www.devilsgun.com/misc/6.jpg]";} if ($rand==18) { echo "[img=http://www.extremefunnyhumor.com/pics/funny_monkey.jpg]";} if ($rand==19) { echo "[img=http://www.extremefunnyhumor.com/pics/funny_monkey.jpg]";} if ($rand==20) { echo "[img=http://www.midwestrocklobster.com/ugly/ugly3_lg.gif]";} if ($rand==21) { echo "[img=http://images.amazon.com/images/G/01/dvd/family-guy-5-big.jpg]";} if ($rand==22) { echo "[img=http://www.endkampf.de/wordpress/wp-content/img/fry.jpg]";} if ($rand==23) { echo "[img=http://www.maximumfun.org/blog/uploaded_images/aqua-teen-hunger-force-780491.jpg]";} if ($rand==24) { echo "[img=http://www.nietoairbrush.com/catalog/images/tupac.jpg]";} if ($rand==25) { echo "[img=http://allthingschill.com/img/biggie.jpg]";} echo " Refresh To See Different Pics Some Pics May Repeat"; $h->endpage(); ?> and add this to explore [url='randpic.php']Random Pics[/url] and you are done please if you dont like it dont be rude
  6. Re: [mccode] Advanced Warning System lol its >?-The Corpse-?< there is nothing wrong with it i had it on v1 and v2 it works great
  7. Re: [$5]Gang Status another copy was sold danny has not danny if you are gona buy pm me please
  8. Re: Upgrade Users Online nice little mod
  9. Re: Clean up cron great this is useful
  10. Re: Add a Radio to your site [Free mod] v 0.01 great mod
  11. Re: Search For Gang thanks :p
  12. Re: Search For Gang after you get it on your game tell me what you think please
  13. Re: [v2] Family's [$30] if i get the money i will get it its great
  14. Re: Search For Gang Never mind i fixed it it should be working for you now
  15. Re: Advanced Usersonline session_start(); is not needed for v2 just so you know jimmytubbs
  16. Re: Basic marraige   looks like someone else is using my game name just in a different way :p
  17. Re: Search For Gang   i have tested it on 3 sites no one else got it can i have more info on the prob? and if anyone else has this prob please post the fix if you are able to fix it
  18. Re: Search For Gang yes it is but a lot of people could not get it to work and where bugging me to do it on msn so i did it
  19. Re: Search For Gang fixed sorry
  20. First open search and in it add [url='searchgan.php']Search Gang[/url] then make a file called searchgan.php and in it put <?php /*----------------------------------------------------- ///made by iseeyou94056 -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i:s a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); print "<h3>Search Gang</h3> <table border='0' width='45%'><tr bgcolor='steelblue'><th width='50%'>Search Gang</th></tr><tr><td> <form action='searchgang.php' method='get'> <input type='text' name='name' /> <input type='submit' value='Search' /></td></tr></table>"; $h->endpage(); ?> then make a file called searchgang.php in it put <?php /*----------------------------------------------------- //made by iseeyou94056 -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i:s a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); if(!$_GET['name']) { print "Invalid use of file"; } else { $q=mysql_query("SELECT g.*,u.* FROM gangs g LEFT JOIN users u ON g.gangPRESIDENT=u.userid WHERE gangNAME LIKE ('%{$_GET['name']}%')",$c); $gq=mysql_query("SELECT g.* FROM gangs g WHERE gangNAME LIKE ('%{$_GET['name']}%')",$c); print mysql_num_rows($q)." gangs found. <table><tr><th>Gang Name</th><th>Gang Respect</th><th>Gang Image</th></tr>"; while($r=mysql_fetch_array($q)) { while($gangdata=mysql_fetch_array($gq)) { print "<tr><td>[url='gangs.php?action=view&ID={$gangdata[']{$gangdata['gangNAME']}[/url]</td><td>{$gangdata['gangRESPECT']}</td><td>";if($gangdata['gangPIC']) { print "[img={$gangdata[]"; } else { print "[img=defaultgangpic.jpg]"; } print "</td></tr>"; } } print "</table>"; } $h->endpage(); ?> and you are done if you dont have the gang pic mod just take out the image spot and replace it with something else if someone wants me to do it tell me and i will any problems post here
  21. Re: [v1]Dragon Tent[$20] looks just like battle tent
  22. Re: Free service not saying you will but thats what they all say
  23. Re: bbcode help if you are talking about to have bbcode show in mailbox then ya look in paid mods i got one on there for sale
  24. Re: [v1]Virus Mod[v1] there was one little problem it is fixed now
  25. Re: V2 cars mod no it was not a free mod but sooo many ppl have it tho and got it free
×
×
  • Create New...