Jump to content
MakeWebGames

Uridium

Members
  • Posts

    2,667
  • Joined

  • Last visited

  • Days Won

    75

Everything posted by Uridium

  1. Re: I need a Project   Nice one or just use the Jailkeys mod so you can open the safe only when you have keys to do so. wow how bored am i lol
  2. Re: I need a Project Ooops my bad im that used to posting on here
  3. As ya all know i dont make mods from scratch i just kinda alter ones and try make them do things that people find useful.. but im running outta ideas to remod an already done mod so come on give me some suggestions im bored stupid here,,,
  4. Re: Searching Are there anymore of these Scripts left ? if so i would like one. I have been trying to contact Reload for days but to no avail so if anyone could help i would be greatful...
  5. Re: [MOD] UPGRADE Retrieve original Password   Yep just found that out... I tried 10 before posting and they worked fine seems if the users are very imaginative the site cant recognise it. So i guess its back to the drawing board lol
  6. Re: [V2] SafeHouse   Well like i said just putting my Penny's worth in, Seems pointless even so. I mean if your in there for protection whats the use of being in the game to begin with. Number of possibilites would be. 1= They time out after a lengh of time. 2= They are charge by the hour for being in there
  7. Re: [MOD] UPGRADE Retrieve original Password   Not sure what the Above means was enever anygood at morse code ;)
  8. Im sure members who lose passwords are fed up of having to renew them so ive slightly aletered a script made by WILL from this topic http://criminalexistence.com/ceforums/index.php?topic=4666.15 OOPS nearly forgot call this file forgot_password.php if you are using the Original from WILL and dont want to lose that then call this file retrieve_password.php but remember to change any links in the script to retrieve_password.php as well... So that you can Retrieve your original Password   <?php /*----------------------------------------------------------- -- William -- Password reset ------------------------------------------------------------*/ include "config.php"; global $_CONFIG; define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; require "global_func.php"; print "<html> <head> <title>YOUR GAME NAME Forgot Password</title> <style> body { font-family:Verdana;font-size:8pt;color: black;background: #C3C3C3; } .details { border: 2px dashed red; background: #F88;width:50%;height=120; } .details table,tr,td { font-size:10pt;border: 1px solid white; } .logo img { border: none; } a { text-decoration: none; } </style> </head> <body><center><div class=logo>[img=logo.png]</div>"; if($_GET['action'] == '') { print "<form action='forgot_password.php?action=submit' method='post'>Your Email Address <input type='text' name='email'/><input type=submit value='Retrieve Password'></form> [url='login.php']<font color=black>>back</font>[/url]"; } if($_GET['action'] == 'submit') { if(!$_POST['email']) { die("You forgot to enter your email address!"); } else { $a=$db->query("SELECT * FROM users WHERE email='{$_POST['email']}'") or die(mysql_error()); $b=mysql_fetch_array($a); if ($db->num_rows($a)==0) { print "This email address does not exist <a href=forgot_password.php>Back</a>"; exit; } //$key=randomString(10); $db->query("SELECT * FROM users WHERE userpass='{$_POST['userpass']}'") or die(mysql_error()); $to = $b['email']; $subject = "YOUR GAME NAME"; $headers = "From: YOUR GAME EMAIL"; $body = "You have requested a Retrieval of an old Password! The password is encrypted as {$b['userpass']} you will need to visit ths site to view its orginal Form [url]http://wwwmd5decryption.com[/url] insert the HASH displayed here in to the Decryption"; mail($to, $subject, $body, $headers); print " <font size=4>Your Encrypted password has been sent to your Email Address Use the link in your Email To Decrypt it"; } } ?>   This will Send out your MD5 Encrypted Password which can be Decrypted once rhey recieve the email... Change the YOURGAME to that of your games name and thats about it..
  9. Re: [V2] SafeHouse Some decent posts here just adding my pennys worth. not that it counts for anything ;) Good idea for safehouse but my oppinion would be you safe for an hour but cant enter for the rest of the day.. So you would need an Hour cron that times you out of the Safehouse and a Daycron that resets your value from 1 to zero on your tables obviously needed in the Users Table
  10. Re: The Drug Deal --- Free V2 Mod you mentioned above about adding to cron day wouldnt it be easier to leave this file as it is and call it drg_cron.php and add a new cron job for it for an day <?php include "config.php"; global $_CONFIG; if($_GET['code'] != $_CONFIG['code']) { die(""); } define("MONO_ON", 1); require "class/class_db_{$_CONFIG['driver']}.php"; $db=new database; $db->configure($_CONFIG['hostname'], $_CONFIG['username'], $_CONFIG['password'], $_CONFIG['database'], $_CONFIG['persistent']); $db->connect(); $c=$db->connection_id; //if adding to cron_day only add from here downwards $d=$db->query("SELECT * FROM drugs where drugid=1"); $t=$db->fetch_row($d); $chance6 = rand(50,100); $db->query("UPDATE drugs SET price=$chance6 WHERE drugid=1"); if ($t['lowprice'] > $chance6) { $db->query("UPDATE drugs SET lowprice=$chance6 WHERE drugid=1"); } if ($t['highprice'] < $chance6) { $db->query("UPDATE drugs SET highprice=$chance6 WHERE drugid=1"); } $d=$db->query("SELECT * FROM drugs where drugid=2"); $t=$db->fetch_row($d); $chance7 = rand(75,125); $db->query("UPDATE drugs SET price=$chance7 WHERE drugid=2"); if ($t['lowprice'] > $chance7) { $db->query("UPDATE drugs SET lowprice=$chance7 WHERE drugid=2"); } if ($t['highprice'] < $chance7) { $db->query("UPDATE drugs SET highprice=$chance7 WHERE drugid=2"); } $d=$db->query("SELECT * FROM drugs where drugid=3"); $t=$db->fetch_row($d); $chance8 = rand(100,150); $db->query("UPDATE drugs SET price=$chance8 WHERE drugid=3"); if ($t['lowprice'] > $chance8) { $db->query("UPDATE drugs SET lowprice=$chance8 WHERE drugid=3"); } if ($t['highprice'] < $chance8) { $db->query("UPDATE drugs SET highprice=$chance8 WHERE drugid=3"); } $d=$db->query("SELECT * FROM drugs where drugid=4"); $t=$db->fetch_row($d); $chance1 = rand(125,175); $db->query("UPDATE drugs SET price=$chance1 WHERE drugid=4"); if ($t['lowprice'] > $chance1) { $db->query("UPDATE drugs SET lowprice=$chance1 WHERE drugid=4"); } if ($t['highprice'] < $chance1) { $db->query("UPDATE drugs SET highprice=$chance1 WHERE drugid=4"); } $d=$db->query("SELECT * FROM drugs where drugid=5"); $t=$db->fetch_row($d); $chance2 = rand(150,200); $db->query("UPDATE drugs SET price=$chance2 WHERE drugid=5"); if ($t['lowprice'] > $chance2) { $db->query("UPDATE drugs SET lowprice=$chance2 WHERE drugid=5"); } if ($t['highprice'] < $chance2) { $db->query("UPDATE drugs SET highprice=$chance2 WHERE drugid=5"); } $d=$db->query("SELECT * FROM drugs where drugid=6"); $t=$db->fetch_row($d); $chance3 = rand(175,225); $db->query("UPDATE drugs SET price=$chance3 WHERE drugid=6"); if ($t['lowprice'] > $chance3) { $db->query("UPDATE drugs SET lowprice=$chance3 WHERE drugid=6"); } if ($t['highprice'] < $chance3) { $db->query("UPDATE drugs SET highprice=$chance3 WHERE drugid=6"); } $d=$db->query("SELECT * FROM drugs where drugid=7"); $t=$db->fetch_row($d); $chance4 = rand(200,250); $db->query("UPDATE drugs SET price=$chance4 WHERE drugid=7"); if ($t['lowprice'] > $chance4) { $db->query("UPDATE drugs SET lowprice=$chance4 WHERE drugid=7"); } if ($t['highprice'] < $chance4) { $db->query("UPDATE drugs SET highprice=$chance4 WHERE drugid=7"); } $d=$db->query("SELECT * FROM drugs where drugid=8"); $t=$db->fetch_row($d); $chance5 = rand(225,275); $db->query("UPDATE drugs SET price=$chance5 WHERE drugid=8"); if ($t['lowprice'] > $chance5) { $db->query("UPDATE drugs SET lowprice=$chance5 WHERE drugid=8"); } if ($t['highprice'] < $chance5) { $db->query("UPDATE drugs SET highprice=$chance5 WHERE drugid=8"); } ?>
  11. Re: Small Mod :) Nice one POG Deffo be using this mod might be small but makes a BIG difference :) +10 from me
  12. Re: [V2] Ignore User Mail [V2] Fixed TONKAS copy of the Ignore.. Took me a while to find the problem but it seems you had extra ' in the word You can't Ignore so for those using TONKAS script just find the word CAN'T and change it to Cannot You should have a working copy now
  13. Re: [V2] Ignore User Mail [V2]   ORIGINAL POST WIITHOUT THE EDITS   <?php /*----------------------------------------------------- -- Ignore User For MC Code V2 -- Free Mod -- [url]http://www.squangle.org[/url] -- By Illusions -- Edited to work properly by Tonka -- ignore.php -----------------------------------------------------*/ include "globals.php"; switch($_GET['action']) { case 'ignoreform': ignore_form(); break; case 'ignoresub': ignore_submit(); break; case 'unignore': unignore(); break; default; index(); break; } function index() { global $db,$ir,$c,$userid,$h; print "<h3>Mailbanning a user</h3> [url='ignore.php?action=ignoreform']Add User To Be Ignored[/url] <table width='85%' cellspacing='1' class='table'> <th>User ID</th> <th>username</th> <th>Remove?</th> <th>Status</th>"; $sql = sprintf(("SELECT `id`, `blocked` FROM `ignore` WHERE userid = %u"), $userid); $q = $db->query($sql); while($r=$db->fetch_row($q)) { $select = sprintf(("SELECT `username`, `laston` FROM `users` WHERE userid = %u"), $r['blocked']); $u2 = $db->query($select); $u=$db->fetch_row($u2); $username = $u['username']; $id = $r['id']; if($u['laston'] >= time()-15*60) { $on="<font color=green>[b]Online[/b]</font>"; } else { $on="<font color=red>[b]Offline[/b]</font>"; } echo '<tr><td>'; echo sprintf("%u", $r['blocked']); echo '</td><td>'; echo $username; echo '</td><td>'; echo "[url='ignore.php?action=unignore&id=$id']Remove[/url]"; echo '</td><td>'; echo $on; echo "</td></tr>"; } print "</table>"; } function ignore_form() { print "<h3>Ignore Mail From A Specified User</h3> The user will not be able to send you ingame mail. <form action='ignore.php?action=ignoresub' method='post'> ID of person to ignore: <input type='text' name='blid' /> <input type='submit' value='Ignore Future Mail' /></form>"; } function ignore_submit() { global $db,$ir,$c,$h,$userid; if($_POST['blid'] == "") { print "You did not enter a userid. [url='ignore']Back[/url]"; } else if ($_POST['blid'] == $userid) { print "You can't ignore yourself"; } else { $insert = sprintf("INSERT INTO `ignore` (`id`, `userid`, `blocked`) VALUES ('NULL', '%u', '%u')", $userid, mysql_real_escape_string($_POST['blid'])); $db->query($insert); print "Users Mail will be Ignored. [url='mailbox.php']Return to Mail Box[/url]"; } } function unignore() { global $db,$userid; $delete = sprintf(("DELETE FROM `ignore` WHERE id=%u AND userid=%u"), mysql_real_escape_string($_GET['id']), $userid); $db->query($delete); print "User un-ignored."; } $h->endpage(); ?>
  14. Re: [V2] Ignore User Mail [V2]   Ive sent the Orig to your FTP try that one JD
  15. Re: [V2] Ignore User Mail [V2]     ON line 87 where the PRINT statment is remove the " or quotation mark
  16. Re: {MOD} UPGRADED upload pics add pics to shops, Items, Inventory for those not being able to view the pics once uploaded ive corrected the problem with the uploaditmpic.php above so use that from the first post.. also fixed able to edit pics and pic name that was also having errors on the staff panel. added ability to view pics in shops and in your inventory...
  17. Re: [V2] Youtube Mod [V2]   Thanks Anyone else want to say I'm working for Youtube? Actually my post should have said but seeing as your not working for them the mods great Stupid dyslexic keyboard
  18. Re: [V2] Ignore User Mail [V2]   Jamboy which part are you having problems with are you getting an error is everyone else being put on ignore ? ya if i put one person on ignore, it will then put every othr player in the game on my ignore list there is no error Myself and tonka looked and checked the script on your site everything is working normally as it should be,,,
  19. Re: [V2] Youtube Mod [V2] Extermination if your working for youtube tell em to quit messing with my password lol But seeing as yout now working for them the mods great :) +100
  20. Re: [V2] Ignore User Mail [V2]   Jamboy which part are you having problems with are you getting an error is everyone else being put on ignore ?
  21. Re: {MOD} Upload Item Pics Via admin panel + Create Description..   My original post didnt have that Edition it was introduced later. My origiinal post was.....   if(empty($_FILES['imagefile']))   Under the function at top of page and..   /*Update DB*/ mysql_query( sprintf("UPDATE `items` SET `itmpic` = '%s' WHERE `itmpicname` = %u", mysql_real_escape_string($picture), $userid)); }   Near the bottom of page Hope that helps
  22. Re: {MOD} Upload Item Pics Via admin panel + Create Description.. PART 2 this will display the pics youve upload and let you give a description Original Script by script was by TwiztedFake Open up staff_items.php Find: Code: Armor Defense: <input type='text' name='armor' value='0' /><hr /> After add: Code: [b]Item Pics[/b] <input type='text' name='itmpic' value='' /><hr />   Find:   $m=$db->query("INSERT INTO items VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor)"); Replace with:   $m=$db->query("INSERT INTO items VALUES('',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor,'{$_POST['itmpic']}')");   Scroll down a bit on same file find Find: Code: Armor Defense: <input type='text' name='armor' value='{$itemi['armor']}' /><hr /> After Add: Code: [b]Item Pics[/b] <input type='text' name='itmpic' value='{$itemi['itmpic']}' /><hr />   Find: Code: $m=$db->query("INSERT INTO items VALUES('{$_POST['itmid']}',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor)");   And Overwrite with this   $m=$db->query("INSERT INTO items VALUES('{$_POST['itmid']}',{$_POST['itmtype']},'$itmname','$itmdesc',{$_POST['itmbuyprice']},{$_POST['itmsellprice']},$itmbuy, '{$_POST['effect1on']}', '$efx1', '{$_POST['effect2on']}', '$efx2', '{$_POST['effect3on']}', '$efx3', $weapon, $armor, '{$_POST['itmpic']}')");   Now open up iteminfo.php find   print "<table width=75% class='table' cellspacing='1'><tr style='background: gray;'><th colspan=2>[b]Looking up info on {$id['itmname']}[/b]</th></tr><tr bgcolor=#dfdfdf><td colspan=2>The [b]{$id['itmname']}[/b] is a/an {$id['itmtypename']} Item - [b]{$id['itmdesc']}[/b]</th><tr style='background: gray;'><th colspan=2>Item Info</th></tr><tr style='background:gray'><th>Item Buy Price</th><th>Item Sell Price</th></tr><tr><td>";   Overwrite the entire TWO lines with this one   if($id['itmpic']) { $itmpic = "<tr style='background: gray;'><td colspan='2' style='text-align: center;'>[img=itmpics/".$id[]</td></tr>"; } print "<table width=75% class='table' cellspacing='1'><tr style='background: gray;'><th colspan=2>[b]Looking up info on {$id['itmname']}[/b]</th></tr>$itmpic[b]{$r['itmdesc']}[/b]<tr bgcolor=#dfdfdf><td colspan=2><center>The [b]{$id['itmname']}</center>[/b]</th><tr style='background: gray;'><th colspan=2>Item Info</th></tr><tr style='background:gray'><th>Item Buy Price</th><th>Item Sell Price</th></tr><tr><td>";   so the line below the above should just be if($id['itmbuyprice']) And thats it you should be good top go....
  23. Sorry TONKA ive had to remove your part of the script there was errors. UPDATE >> YOU CAN NOW VIEW YOUR UPLOADED PICS IN THE SHOPS AND NOW IN YOUR INVENTORY Create a folder on your FTP called itmpics this is where you Images will be stored,,, The first script will allow you to upload Item Pics to your server so they can be used when you add pics to the INFO page. this UPLOAD script was by Isomerizer found here http://criminalexistence.com/ceforums/index.php?topic=10319.0 The second script which was for adding pics to the INFO page will allow you to Add a Description to your picture when youve uploaded it UIsing the script above the ITMPICS script was by TwiztedFake and can be found here http://criminalexistence.com/ceforums/index.php?topic=18505.0 First of all the easy part.. This will probably be in two section.. ALTER TABLE `items` ADD `itmpic` VARCHAR( 255 ) NOT NULL ; For the UPLOAD ITEM PIC Create a file called uploaditmpic.php << NEWER VERSION NOW KEEPS TRACKS OF PICS AND DESCRIPTION <?php /*----------------------------------------------------- -- Isomerizer -- Copyright held 2007-2008 © Isomerizer.com -- uploadpic.php -----------------------------------------------------*/ require("sglobals.php"); if(empty($_FILES['imagefile'])) { echo ' Upload an Item Image: <form name="imageuploader" method="post" action="'.$_SERVER['PHP_SELF'].'" enctype="multipart/form-data"> [i]Path of Image:[/i] <input type="file" name="imagefile" /> <input type="submit" name="Submit" value="Upload Image" /> </form> (Max 10000 file bytes , Must be file extention gif, jpg, jpeg, png, bmp....) (Images are resized to 150 x 150) '; } else { //Edit below for max fb size of the pic $maxsize = 1000000; /*Basic security procedures*/ if(!$_SERVER['REQUEST_METHOD'] == "POST" || !isset($_SERVER['HTTP_USER_AGENT'])){ echo 'Hack Attempt!'; $h->endpage(); exit; } $headerinject = array("Content-Type:", "MIME-Version:", "Content-Transfer-Encoding:", "bcc:", "cc:"); foreach($_POST as $k => $v){ foreach($headerinject as $v2){ if(strpos($v, $v2) !== false){ logBadRequest(); header("HTTP/1.0 403 Forbidden"); exit; } } } /*What extensions can be used?*/ $valid = array('image/gif', 'image/png', 'image/pjpeg','image/jpeg', 'image/jpg'); /*If the extension isnt allowed...*/ if(!in_array($_FILES['imagefile']['type'], $valid)) { $type = strrchr($_FILES['imagefile']['name'], '.'); echo 'This file type '.$type.' is not allowed. [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } /*Check image size*/ if ($_FILES['imagefile']['size'] > $maxsize) { echo 'Image to large [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } $check = ''.$_FILES['imagefile']['tmp_name'].''; /*Check for .exe files*/ if (is_executable($check) || !is_file($check)) { echo 'The file '.$_FILES['imagefile']['name'].' seems to be harmful to the server [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; @unlink($check); $h->endpage(); exit; } /*Now to create the correct image using php*/ if ($_FILES['imagefile']['type']=="image/jpeg") { $create = @ImageCreateFromJPEG(''.$_FILES['imagefile']['tmp_name'].''); $image = @Imagejpeg($create, 'itmpics/'.$_FILES['imagefile']['name'].''); } if ($_FILES['imagefile']['type']=="image/png") { $create = @ImageCreateFromPNG(''.$_FILES['imagefile']['tmp_name'].''); $image = @Imagepng($create, 'itmpics/'.$_FILES['imagefile']['name'].''); } if ($_FILES['imagefile']['type']=="image/jpg") { $create = @ImageCreateFromJPEG(''.$_FILES['imagefile']['tmp_name'].''); $image = @Imagejpeg($create, 'itmpics/'.$_FILES['imagefile']['name'].''); } if ($_FILES['imagefile']['type']=="image/gif") { $create = @ImageCreateFromGIF(''.$_FILES['imagefile']['tmp_name'].''); $image = @Imagegif($create, 'itmpics/'.$_FILES['imagefile']['name'].''); } if ($_FILES['imagefile']['type']=="image/pjpeg") { $create = @ImageCreateFromJPEG(''.$_FILES['imagefile']['tmp_name'].''); $image = @Imagejpeg($create, 'itmpics/'.$_FILES['imagefile']['name'].''); } /*Destroy the php image*/ @unlink(''.$_FILES['imagefile']['tmp_name'].''); @ImageDestroy($create); /*If php could not create the image*/ if (!$create) { echo 'The image you are trying to upload seems to be corrupt please try again! [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } $path = 'itmpics/'; $pic = $_FILES['imagefile']['name']; $picture = $path.$pic; $oldpic = $ir['display_pic']; /*Check to see if its already uploaded*/ if ($picture == $oldpic) { echo ' Image already uploaded![url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } /*Delete previous image to save space*/ $delete = @unlink($oldpic); if ($delete) { echo 'Previous image deleted from system... '; } if (!$delete) { echo 'No Previous image to be deleted... '; } $dataa = $_FILES['imagefile']['size']; $datab = $_FILES['imagefile']['type']; $datad = $_FILES['imagefile']['name']; /*Information for user*/ echo 'Old Image Location: '.$oldpic.' New Image Location: '.$picture.' Image Uploaded <u>Info:</u> Image Name: '.$datad.' Image Size: '.$dataa.' bytes Type: '.$datab.' [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; /*Check DB*/ $check = mysql_query( sprintf("SELECT COUNT(*) as cnt FROM `items` WHERE `itmpic` = '%s'", mysql_real_escape_string($picture))); $checks = mysql_fetch_array($check); if ($checks['cnt'] > 0) { echo 'Please use another image name [url="'.$_SERVER['PHP_SELF'].'"]Back[/url]'; $h->endpage(); exit; } /*Update DB*/ mysql_query( sprintf("UPDATE `items` SET `itmpic` = '%s' WHERE `itmpic` = %u", mysql_real_escape_string($picture), $userid)); } $h->endpage(); exit; ?> Now open smenu.php and Add this line to the Items Section > Upload Item Pic Thats it for ISOMERIZERS edit The next part if for displaying the Images so i'll post this one first and do the next on another post.. DO THE POST BELOW BEFORE THIS PART ADDING PICS TO SHOPS... open SHOPS.php and find this line print "\n<tr style='background: gray;'><th colspan=5>{$lt}</th></tr>"; ) under it overwrite with this line print "\n<tr><td>{$r['itmname']}</td><td>[img=itmpics/{$r[]</td><td>\${$r['itmbuyprice']}</td><td>\${$r['itmsellprice']}</td><td><form action='itembuy.php?ID={$r['itmid']}' method='post'>Qty: <input type='text' name='qty' value='1' /><input type='submit' value='Buy' /></form></td></tr>"; now open INVENTORY.PHP << DEPENDING ON IF YOU HAVENT CHANGE THE INVENTORY SCRIPT find <td class=\"h\">Total Sell Value</td> Under it add <td class=\"h\">Item Pic</td> now find print "$".($i['itmsellprice']*$i['inv_qty']); and under it add this line print"</td><td>[img=itmpics/{$i[]";
  24. Re: [ADDON] Oxidations Youtube script   Dont get me wrong OXI im not discracing your script im just pointing out that with youtube now making downloads harder the script didnt work. because of it.
  25. Re: My forgot password. [v2] & [v1] If anyone is still having probs with this script as i did :) No offence killah change if(file_exist("config.php")) to if(file_exists("config.php")) thats it all done :)
×
×
  • Create New...