Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. No offence, but that is just a slap up of mccode's v2 and a theme. This really make's me wonder, if they are in it for the cash or as they say, for the community. It's basic mccode v2, the explore is plain, i doubt there is any unique feature's. Deffinatly not worth $1,000. Maybe $200 will be the most i pay. No offence, but good luck trying to sell.
  2. I was not trying to have some idiotic reply, it's simply that, this modification is long time ago, thus. I do not support it in any way. How ever, if you want to post your security crap on my thread, do it your self. Please & Thank you.
  3. For those who are close to the top of the thread, Sohaib is the owner of mafia corruption, how ever, he does not interact in his game's and thus Dave is basicly Admin on majority of their game's, i myself have dave & sohaib on msn, as i previously worked for their network.
  4. About time :sleeping:
  5. http://www.php.net/manual/en/function.delete.php Try changing the case 'delete' to something else.
  6. Your more than welcome to pm me anytime concerning the JQuery and XML HTTP Request's.
  7.   Using MySQLi on a pre-existing script is a biash :P
  8. You can shorten most of those queries with the LEAST() SQL function.
  9.   There's still plenty more issue's that aren't yet fixed.
  10. And what keep's the USER entertained? The feature's the game contain's.
  11.   Please do go ahead and ask ColdBlooded if they have any history of [email protected], if not, ill have to go search through my email of thousand's of email's to show that i have a valid licence in my inbox.
  12. You'd be guaranteed around $500+ a month off just $300.
  13. Hey dave, long time no see. Well, Not to sound harsh or anything, but, ive seen better for cheaper. Base your price around the mark of $30 to $50 per single, and maybe $70 on 3 different pose's. If you can base it on that, ill be coming to you for alot of work. Btw, looks very good!
  14. i thought it was $300.00, is the $200.00 extra your payment (if so wow so that's 2/3 of the original price for you personally a bit steep don't you think?).   Yes it would be my payment, as due to my record's you can make easily $2,000 a month alone of $100. So imagine $300 that's easily $4,000 a month. So why will i not want to make profit?
  15. I do have to say, my fix was not the correct way. However, i am pulling this script from the engine of DeadlyKillah, it work's, even seanybob has tried as i have let him try and we have managed to get it fixed, and i also have to say, thank's to seany for the help on finding the exploit and directing me to a fix, anyway's. This should work. Im only providing the script, nothing more.   if(!preg_match('~http://([\w-]+\.)+[\w-]+(/[\w- ./]*)+\.(?:gif|jpg|jpeg|png|bmp)~i', $picString)) { echo 'Invalid Image!'; $h->endpage(); exit; }   Work it out your self's, and yes, it actualy does work.
  16. I never posted to gloat, i was just saying that who ever goes and throws out $2,000.00 on advertising is just throwing away their money. Why not rather give me $500 and you shall see what can be done. I can achieve those member's again, and again, and again, but, i wont do it now as the next time it shall be run on deadlykillah. Give me 2 month's to finish deadlykillah.net and you shall see.
  17. Ahh, i got to love this.. So far no one has came up with a fix. It's pretty easy really. Let's see... Go to your bbcode script and locate these 2 line's: $this->engine->cust_tag("/\[img\](.+?)\[\/img\]/",""); $this->engine->cust_tag("/\/",""); Replace those with: $this->engine->cust_tag("/\[img\](.+?)\[\/img\]/",""); $this->engine->cust_tag("/\/",""); Now locate this: function bbcode_parse($html) { return $this->engine->parse_bbcode($html); } } And change it to function bbcode_parse($html) { return $this->engine->parse_bbcode($html); } function cleanIMG($string) { if(stripos($string,'php')) { return ''; //We return it as nothing } else { return $string; } } } It is untested at this moment, but i think that is how i done it last time, remmember, havent been coding for about 5 month's now and i don't even have my program's and my old script's. But will ask some one to test it a.s.a.p
  18. you show me your website getting 15k members and 9k active for 300 bucks and ill believe you but till then i think your maybe exaggerating a little.   I know you werent around when i co owned deadlyhustle.net, go ask around, even yet, go ask mike how many member's i had online daily and hourly even 15 minute's. In 15 minute's i had around 80 online, and that was just spending $50. Don't want to believe me? Don't, but dont be suprised and ask how when i do achieve it again.
  19. $150 from scarlet.
  20. Spending $2,000.00 on advertising in the first week is just insane. I mean, seriously? Let's look at it from a different view. If your the only tester on your game, and opening it thinking there isnt any bug's and spending 2grand on advertising, to find people coming to your site and leaving due to bug's you never found. Waste of cash. When i open up DeadlyKillah, what i will be doing is leaving it open for 2 month's fix all bug's and all, at this time, donation's will be closed, when 2 month's are up, im resetting and then opening donation's aswell. Also, why waiste $2,000.00 when you can get easily 15k members in a month with less than $300? And about 9k of those 15k member's are active. You get about 2k daily active and around 200 online at any given time? So, maybe just view outside the box before you invest into advertising. Many game owner's think that going to ad site's work, but in the long run, there will alway's be a better game than your's on that ad's site, so who will the member's go to? The better site.
  21. <?php session_start(); if(get_magic_quotes_gpc() == 0) { die("Fatal error: MCCode cannot function without MagicQuotes GPC being turned on in PHP.INI."); } 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; $set=array(); $settq=$db->query("SELECT * FROM settings"); while($r=$db->fetch_row($settq)) { $set[$r['conf_name']]=$r['conf_value']; } /////Start Captcha//////// if(isset($_POST["captcha"])) if($_SESSION["captcha"]==$_POST["captcha"]){ //We dont want to print anything here as it will screw up the headers } else { die("Captcha Failed (Only input the 3 black symbols) <a href=login.php>Try Again</a></div>"); } /////End Captcha//////// if ($_POST['username'] == "" || $_POST['password'] == "") { die("<h3>{$set['game_name']} Error</h3> You did not fill in the login form! <a href=login.php>> Back</a>"); } $uq=$db->query("SELECT userid FROM users WHERE login_name='{$_POST['username']}' AND `userpass`=md5('{$_POST['password']}')"); if ($db->num_rows($uq)==0) { die("<h3>{$set['game_name']} Error</h3> Invalid username or password! <a href=login.php>> Back</a>"); } else { $_SESSION['loggedin']=1; $mem=$db->fetch_row($uq); $_SESSION['userid']=$mem['userid']; $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; $db->query("UPDATE users SET lastip_login='$IP',last_login=unix_timestamp() WHERE userid={$mem['userid']}"); if($set['validate_period'] == "login" && $set['validate_on']) { $db->query("UPDATE users SET verified=0 WHERE userid={$mem['userid']}"); } header("Location: loggedin.php"); } ?>   That should work.
  22. Query was UPDATE users SET course=1,cpercent=,money=money-1000 WHERE userid=139 It's missing the cpercent value. Try and located that query, post it here with the 20 lines above and bellow, we will be able to sort it.
  23. And i would assume "freedom city" is secured like he has requested?
×
×
  • Create New...