Jump to content
MakeWebGames

Z?v??

Members
  • Posts

    248
  • Joined

  • Last visited

    Never

Everything posted by Z?v??

  1. Re: [V1] FREE! ID refiller/counter Ya...It won't work for anyone without the delete query.
  2. Re: [V1] FREE! ID refiller/counter Shouldn't there be a query somewhere to delete from the free_id's table. Like after a user registers, it should delete that id from the free_id's table?
  3. Re: [v1] Updated Statistics Page Jawadali, anyone can change the DBS headers and say it's converted. If you're going to take time to convert it, then why don't you convert the whole thing? :|
  4. Re: [MC codes V1 & V2] Page Loading Time Yep, works perfectly.
  5. Re: Free Carnival Ya, very good concept. I've installed this and customized it to my likes.
  6. Re: [MC codes V1 & V2] Page Loading Time Wow. Using the one from the developertutorials.com site isn't accurate. I must've installed it wrong or something. it says This page loaded in 1184970209.6014 seconds.
  7. Re: [sB] Helper Bot Ya but that's nothing to the potential of this. I haven't bought it so I can't say too much about it. I would buy it in a heartbeat though if I had $30.00 to spend.
  8. Re: [Free] [v1] Profile Image Uploader Anyone else get errors in the uploadpic.php?
  9. Re: [TGM] Gang War Demands [TGM] I've really been thinking about buying this mod.
  10. Re: [mccode] Close page system Karma means squat. +2 dollars would be much better. :wink:
  11. Re: [site tools] Useful little function: Get_url What would the sql table for this look like. To log the page, id, username, and time?
  12. Re: [mccode] Close page system Give me +2 dollars and i'll make it work for you. :wink:
  13. Well heres a little something that needs optimized badly. I would appreciate it if someone could help me out.   $agm=$db->query("SELECT gmUSER FROM gangmanagers WHERE gmTYPE=1 && gmGANG='{$gangdata['gangID']}'"); $agm=$db->fetch_row($agm); $bgm=$db->query("SELECT gmUSER FROM gangmanagers WHERE gmTYPE=2 && gmGANG='{$gangdata['gangID']}'"); $bgm=$db->fetch_row($bgm); $cgm=$db->query("SELECT gmUSER FROM gangmanagers WHERE gmTYPE=3 && gmGANG='{$gangdata['gangID']}'"); $cgm=$db->fetch_row($cgm); $eagm=$db->query("SELECT username FROM users WHERE userid='{$agm['gmUSER']}'"); $eagm=$db->fetch_row($eagm); $fbgm=$db->query("SELECT username FROM users WHERE userid='{$bgm['gmUSER']}'"); $fbgm=$db->fetch_row($fbgm); $gcgm=$db->query("SELECT username FROM users WHERE userid='{$cgm['gmUSER']}'"); $gcgm=$db->fetch_row($gcgm); $agz=$db->query("SELECT * FROM gangmanagers WHERE gmGANG='{$gangdata['gangID']}' && gmTYPE='1'"); $bgz=$db->query("SELECT * FROM gangmanagers WHERE gmGANG='{$gangdata['gangID']}' && gmTYPE='2'"); $cgz=$db->query("SELECT * FROM gangmanagers WHERE gmGANG='{$gangdata['gangID']}' && gmTYPE='3'");
  14. Re: View User Lag? I think Hack3rmatt just said that but with a more intelligent selection of words.
  15. Re: [Free] [v1] Calculator Mod Ummmmmmm, that's v1.
  16. Re: [mccode] Pac Man Game And the point of doing that would be......
  17. Re: [Free] [V1] Guess What Cup? (Casino Game) Well since someone was too lazy to FULLY convert it to v2.0 I went ahead and did it.   <?php require "globals.php"; $money=$ir['money']; $win=$money+50; $lose=$money-20; $action=$_GET['action']; if ($action=="") { print "You Approach 3 cups on a table, A wierd old guy says guess what cup has the ball under to win $50, it will cost $20."; print "<center> Pick a Cup: </center>"; print "<center><form action=cups.php action=GET> <select name='action'> <option value='left'>Left Cup</option> <option value='center'>Center Cup</option> <option value='right'>Right Cup</option> </select> <input type=submit value=Pick></form>"; exit; } if ($action=="left") { $pickleft=rand(1,3); if ($pickleft=="2") { print "You picked left and found the ball under the cup! You won $50! <a href=cups.php>Back</a>"; $db->query("UPDATE users SET money=$win WHERE userid=$userid"); exit; } else { $db->query("UPDATE users SET money=$lose WHERE userid=$userid"); print "You picked left but didnt find the ball under the cup! Better luck next time <a href=cups.php>Back</a>"; exit; } } if ($action="center") { $pickcenter=rand(1,3); if ($pickcenter=="1") { print "You picked Center and found the ball under the cup! You won $50! <a href=cups.php>Back</a>"; $db->query("UPDATE users SET money=$win WHERE userid=$userid"); exit; } else { print "You picked Center but didnt find the ball under the cup! Better luck next time <a href=cups.php>Back</a>"; $db->query("UPDATE users SET money=$lose WHERE userid=$userid"); exit; } } if ($action="right") $pickright=rand(1,3); { if ($pickright=="3") { print "You picked Right and found the ball under the cup! You won $50! <a href=cups.php>Back</a>"; $db->query("UPDATE users SET money=$win WHERE userid=$userid"); exit; } else { print "You picked Right but didnt find the ball under the cup! Better luck next time <a href=cups.php>Back</a>"; $db->query("UPDATE users SET money=$lose WHERE userid=$userid"); exit; } } ?> <? $h->endpage(); ?>
  18. Re: [mccode] Multiple Event Deleter   if(mysql_num_rows($q)) {   I don't see $q being identified in there. Plus it's not completely converted to v2.0. Try this...   <?php include "globals.php"; print "<h3>Events</h3>"; if(!$_POST) { print "What are you supposed to delete? [url='events.php']Back[/url] "; } else { $deleted=0; $q=$db->query("SELECT * FROM events WHERE evUSER=$userid ORDER BY evTIME DESC LIMIT 10;"); if($db->num_rows($q)) { $evv="delete".$r['evID']; if($_POST[$evv]) { $event=$_POST[$evv]; if($r['evID'] == $event) { $db->query("DELETE FROM events WHERE evID=$event"); $deleted++; } } } print "$deleted Events were deleted! [url='events.php']Back[/url] "; } $h->endpage(); ?>
  19. Re: [mccode] User Verification Mod for V2 LEARN TO ****** CONVERT V1 TO V2 INSTEAD OF ASKING ON EVERY ******* FREE MOD THREAD FOR SOMEONE TO ******** CONVERT IT FOR YOU. IF YOU CAN'T DO IT THEN DONT USE THE ******* MOD!!
  20. Re: Free Donator XFER w/ LOGS! No.   $ir=mysql_fetch_array   would get changed to:   $ir=$db->fetch_row     You would also have to change the header info. <?php 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=number_format($ir['crystals']); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea();   Would need changed to:   <?php require "globals.php";     All queries would also need changed For example...   mysql_query("SELECT * FROM users WHERE userid=$id",$c);   Would need changed to:   $db->query("SELECT * FROM users WHERE userid=$id");     And finally...you would need to change all mysql_num_rows to $db->num_rows
  21. Re: [mccode] User Verification Mod for V2 It was very generous of you to post this but doesn't v2.0 come with this installed already?
  22. Re: [TGM] Russian Roulette [TGM] Well AdBux has a section in there forums title "Payment Proof" where other users actually post how much money they've earned and stuff. Like after they owe you $10 you can click the Payout link and they will send the money to you through paypal. I'll let you know if theres a catch once I go to collect my first $10 payout. :|
  23. Re: [TGM] Russian Roulette [TGM] I bought this mod back when Hatchet first made it. It's definitely a good mod.
  24. Re: Free Donator XFER w/ LOGS! I installed it on v2.0 and everything worked except when I went to send donator days to someone. It didn't give an error or anything but it didn't display the form to send the days.
  25. Re: Getting Rid of the 2.147 bil cap in MCcode int(11) to bigint(25) :wink: (Not sure if it should be quite as high as 25 but I don't think it would matter much)
×
×
  • Create New...