
Haunted Dawg
Members-
Posts
2,933 -
Joined
-
Last visited
Never -
Days Won
1
Content Type
Profiles
Forums
Events
Everything posted by Haunted Dawg
-
Re: Pot Of Gold $15 [mccode v2] Screenshot's would be good :)
-
Re: FIRST THOUGH! eat
-
Re: gangs organised crimes Why two topics?
-
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.
-
[$$$] For The final things I need to release my game.
Haunted Dawg replied to Joshua's topic in Paid Modifications
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? -
Re: Game Security $20 - 1 day. Your only fixing the known sql exploit's, what about html injection's?
-
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.
-
Re: Gang Tag Try.. {$tag->gangPREF}
-
Re: Code my PSD and/or XCF for $$$ $20.00
-
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);
-
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.
-
Re: Another Usersonline Only if you did make this.
-
Earn More From your game - A Must Read
Haunted Dawg replied to Optimizer's topic in General Discussion
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"? -
[Mccodes v2]In battle!, new attack system[mccodes v2]
Haunted Dawg replied to Kaien's topic in Requests & In Production
Re: [Mccodes v2]In battle!, new attack system[mccodes v2] Be expected to pay quite abit.. ;) -
Re: [mccode v2] Player Card ($8) Mod has been sent, i only got on today from thursday last week.
-
changing houses.... number four on the -help me dear lord- wish list
Haunted Dawg replied to mr_shuu's topic in Game Support
Re: changing houses.... number four on the -help me dear lord- wish list Shouldn't $shops inside the while be $shops .= ?? -
Re: [mc-codes ] 5 card draw [$5.00] Some spelling mistakes and can be abused.
-
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.
-
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 ;
-
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..
-
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.
-
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.
-
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? ;)
-
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.
-
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.