Jump to content
MakeWebGames

Tonka

Members
  • Posts

    450
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Tonka

  1. Re: [REVIEW] Mafia Vendetta - New and Looking for Feedback regardless of where you got them, you shouldn't be taking images from other peoples games without having explicit permission from the game owner and image creator
  2. Re: Password Recovery   And that's the reason we salt our hashes :-D   i also salt my hashes for that same reason
  3. Re: Password Recovery Their is no actual function or script that exists to decode an MD5 hash, all those websites do is check a database of hashes to see if someone has already hashed that word into MD5. The best/secure option for a forgot password page is to reset them and send the user a new password.
  4. Re: [mccode all] sql backup i have this running on my server and it's works fine using passthru
  5. Re: Monitor your server from PHP Very nice a_bertrand
  6. Re: Houses Lvls Maxed he most likely has the house level mod that was posted on, try changing the level column in your house table to int 11
  7. Re: [v2] If course done? i think he wants someone to have completed a certain course before being able to see a certain page. If that is the case than what DissObey posted will work for him
  8. Re: Help with edit job rank. job.php fix is pretty simple find the edit query and put a space before the "WHERE" in the query
  9. Re: [mccode v2] Items Pic mod probably cause the code boxes aren't empty
  10. Re: Changing Whole Header when in hospital if by header you mean header image, here if($ir['jail']) { echo "[img=jail.jpg] "; } else if($ir['hospital']) { echo "[img=hospital.jpg] "; } else { echo "[img=header.jpg] "; }
  11. Tonka

    New Login pg.

    Re: New Login pg.   Not To Argue M8 But I Have A Worse Connection Then 56kbps Try 54.0mbps On Wireless And Flash Doesnt Bother It So Why You Think Itd Bother A Connection Speed Of 56kbps??? 54mbps is faster than 56kbps and just because you use a wireless router doesn't mean the speed you get from your isp is that great either most people have between 1-10mbps and than conert 1-10mbps into a easy to understand spead so in reality you have anywhere from 100kb/s to 1mb/s
  12. Re: "if location =" ... query if you take your original code [b]<u>Shops and Market</u>[/b] [url='shops.php']All Shops[/url] if($ir['location'] == 2) { print " [url='shops.php?shop=4']Geoff's Gun Shop[/url] "; } print " [url='itemmarket.php']Item Market[/url]   you are missing a "; here it is fixed [b]<u>Shops and Market</u>[/b] [url='shops.php']All Shops[/url] "; //This is the line that you missed the "; on if($ir['location'] == 2) { print " [url='shops.php?shop=4']Geoff's Gun Shop[/url] "; } print " [url='itemmarket.php']Item Market[/url]
  13. Re: [REQUEST] Users Online an ajax usersonline that does what you want http://criminalexistence.com/ceforums/index.php?topic=20908.0
  14. Re: Background image[Lite] than put it into your *.css file in the body tag
  15. Re: Mccodes lite mods both of those have been posted to the forum, just use the search feature and if you don't find anything manually search yourself by going through each page of the mods section
  16. Re: How To Protect Your Game From Hackers? he probably has a dedicated server
  17. Re: [mccode v2] Ignore User Mail sry, meant to put mail_send not mail_compose find function mail_send() { global $db,$ir,$c,$userid,$h;   and add below $select = sprintf(("SELECT `blocked` FROM `ignore` WHERE userid = %u AND blocked = %u"), $userid, $_GET['ID']); $q = $db->query($select); $r=$db->fetch_row($q); if($r['blocked']) { echo "This person has choosen to ignore mails from you. [url='mailbox.php']> Back[/url]"; $h->endpage(); exit; }
  18. Re: [mccode v2] Ignore User Mail find function mail_compose() { global $db,$ir,$c,$userid,$h;   and add below $select = sprintf(("SELECT `blocked` FROM `ignore` WHERE userid = %u AND blocked = %u"), $userid, $_GET['ID']); $q = $db->query($select); $r=$db->fetch_row($q); if($r['blocked']) { echo "This person has choosen to ignore mails from you. [url='mailbox.php']> Back[/url]"; $h->endpage(); exit; }
  19. Re: [mccode v2] Player of the week... it's a player of the week, so common sense should kick in, 7 days, that way everyone who logged in that eek actually has a fair chance
  20. Re: [mccode] Advanced Warning System event_add();
  21. Re: Cron Help : no such file or directory :S your using curl wrong, here's what should work curl http://yougame.com/cron.php or php -q /var/www/vhosts/..../subdomains/..../httpdocs/cron.php
  22. Re: [REVIEW] Anime warz   and it still doesn't have your name on it
  23. Re: Bot wep? or just go into phpmyadmin and put an itemid in the equip_primary and equip_secondary fields for weps and equip_armor for armor
  24. Re: Hospital/Jail Count stuck your cron_min.php is needed to update those numbers. so if you are using a free host there's your problem
  25. Re: [MCcode V2] Item Market Revamped zero you of all people should've been able to see the error $q = $db->query(sprintf("SELECT `imID`,`imITEM`,`imADDER`,`imPRICE`,`imCURRENCY` FROM `itemmarket` im LEFT JOIN `items` i ON i.itmid = %d WHERE imID = %u", im.imITEM, mysql_real_escape_string($_GET['ID']) ) ); if(!$db->num_rows($q))
×
×
  • Create New...