Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: Pot Of Gold $15 [mccode v2] Screenshot's would be good :)
  2. Re: FIRST THOUGH! eat
  3. Re: gangs organised crimes Why two topics?
  4. Re: How Would I do this? They both the same. With SkyFuse's way you can not display the generated number. With your's you can.
  5. Re: [$$$] For The final things I need to release my game.   Boards? Do you mean forums yes?. I think he mean's the one click attack mod?
  6. Re: Game Security   $20 - 1 day. Your only fixing the known sql exploit's, what about html injection's?
  7. Re: Gang Tag Use this.   $tag = mysql_query('SELECT `gangPREF` AS `tag` FROM `gangs` WHERE `gangID` = '.$ir['gang'); $tag = mysql_fetch_assoc($tag); $tag = $tag['tag'];   Then print out $tag.
  8. Re: Gang Tag Try.. {$tag->gangPREF}
  9. Re: Code my PSD and/or XCF for $$$ $20.00
  10. Re: Database class for PHP 5+ and MySQL (Help) What you could do with your..   public function doEscape($Var) { if (get_magic_quotes_gpc()) { $Var = stripslashes($Var); } return mysql_real_escape_string($Var, $this->Connect); }   .. function is build onto it and make it more reliable such as..   public function doEscape($Var, $Type = 0) { return ($Type == 1) ? abs(intval($Var)) : mysql_real_escape_string($Var, $this->Connect); }   For cleaning numbers:   $db = new Database('localhost','username','password','database'); $db->doEscape($input, TRUE);   for cleaning texts.. $db = new Database('localhost','username','password','database'); $db->doEscape($input);   or   $db = new Database('localhost','username','password','database'); $db->doEscape($input, FALSE);
  11. Re: FlameSpark - Test us now in BETA! "FlameSpark_init is not defined" firebug report's. As far as that, it's still simple. I will check it out from time to time.
  12. Re: Another Usersonline Only if you did make this.
  13. Re: Earn More From your game - A Must Read   I need no access to any of you server/files. I will give you a bunch of codes upon which you add them to where I say. Allowing you to check for anything malicious incase you don't trust me. Alrernativly you can give me access to cpanel and I'll add everything myself - but I don't see many wanting to do this No game changes your users won't really see any difference And Optimis, I live on online earnings from my own sites/ these type of schemes where I take 50% cut. At the of the day 50% of something is better than 100% of nothing. Believe that's the saying :) Care to show an example of these "bunch of codes"?
  14. Re: [Mccodes v2]In battle!, new attack system[mccodes v2] Be expected to pay quite abit.. ;)
  15. Re: [mccode v2] Player Card ($8)   Mod has been sent, i only got on today from thursday last week.
  16. Re: changing houses.... number four on the -help me dear lord- wish list   Shouldn't $shops inside the while be $shops .= ??
  17. Re: [mc-codes ] 5 card draw [$5.00] Some spelling mistakes and can be abused.
  18. Re: [mccode v2] Player Card ($8)   And you never stated the colours you would like as asked in the first post on here, dev-forum & cronwerk's.
  19. Re: Level System   He stated in first post. Try adding or die(mysql_error()); to the end of your query's but remmember to remove the ;
  20. Re: Level System   function check_level() { global $ir; $row = mysql_query('SELECT `level`,`exp` FROM `users` WHERE `userid` = '.$ir['userid']); $row = mysql_fetch_assoc($row); $lev = mysql_query('SELECT `level`,`exp` FROM `levels` WHERE `level` = '.$row['level']); $lev = mysql_fetch_assoc($lev); if($row['exp'] >= $lev['exp']) { mysql_query('UPDATE `users` SET `level` = `level` + 1 WHERE `userid` = '.$ir['userid']); } }   Maybe..
  21. Re: Criminal-District   Wether or not i provide a DMCA it is against co.cc to imitate another website and if any report's are filed the site shall be shut down.
  22. Re: Criminal-District   hmmm it would be fun to see the legal arguements used. "abusing name taking" that one would be a simple "EPIC FAIL", domain was free to register, so he or his host did registered it. What would google say if i went and got google.co.cc and used it for my own will? Sure "Abusing name taking" is not the right word, but i can contact .co.cc or his/her host for breaking their term's of service's.
  23. Re: [V2] Saved Events   Yes, to an extent.   How many people do not use javascript now a day's?   As far as my testing goes, my javascript has not been broken through, and who say's using other lib's aint easy? ;)
  24. Re: Criminal-District Take your website down or purchase a domain or i will be forced to contact your host & .co.cc due to abusing name taking. criminaldistrict.com owned and operated under kronicgaming.com who is a legal gaming industry and shall take legal acion.
  25. Re: [Mccodes v2] DatatBase quiestion Buying 2 hosting plan's on the exact same server and joining them then using an count and if and a php code to connect to db 2.
×
×
  • Create New...