Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: money_formatter on MCCODES V2 Or this. function money_formatter($value, $currency = '$') { return $currency.number_format($value); } To call it: money_formatter($ir['money'], 'symbol');
  2. Re: Shoutbox Ban - Not Finished - Dont Post Ok, if this work's big deal. You still need a shoutbox. And if i do see my shoutbox posted up here i am going to get really pissed off. Because the shoutbox you have on your game pike. That is mine. So don't dare put it up here. And yes your one is paid for because i sold you velocity-islands.com.
  3. Re: [Review] - Killah-City.net - Please Review EH? No you got it wrong. We do not own 50/50. I used to own 100% of the game then i sold it to angelicashell and lilmama, then zero took over angelicashell's place so now lilmama & zero affect now own the game. :). I got to say tho.. he is doing a pretty good job. Altho i am constantly banned because i do not know why.
  4. Re: [mccode] 8 Lines to secure your site from known sql injections. Please explain and i might be able to tell you what it does?
  5. Re: [V2]Register page with 1 account per ip [V2] After 4 year's you 2 are still the same. PERIOD!
  6. Re: [V2]My own v2 Explore page [V2]   In other word's he is trying to say. Stop being soft shit's. Well that is in spanish tho.
  7. Re: [mccode] 8 Lines to secure your site from known sql injections. UH?
  8. Re: TwIsTeD WiShEs ! Granted, but then you sucked when more popular song's came out. I wish I WISH people would not copy mod's and re post them.
  9. Re: Error Game! You are correct, it supposed to be echo 'noob\'s are you ;)';
  10. Re: Error Game! Nope.
  11. Re: Error Game! echo 'noob's are you ;)'; PS: Who can figure out the error there?
  12. Re: [REQUEST] V2 Ingame template...(images,login,register,header) Absolute Zero Zero Affect Scarlet And some other's that just make crappy one's for $5 buck's.
  13. Re: [V2]Register page with 1 account per ip [V2] Ok, i'll take it easy on casey, since i am trying to stop my flaming and all now ;) . How ever casey, how long have i known you now for? About 3 - 4 year's? Yes i know you are crazy t's brother, and my old msn is [email protected] look it up you will find me, how ever. You are posting mod's that have been posted before. Set up a game, make something atleast decent even if it take's you 1 month to make :P , You might just earn my respect and i might just give you a +1 and not a -1. So please stop with these ridiculous post's that are already on these forum's because we do not need to clutter these forum's more than what they are, I have enough of a hard time loading part of the CE network with all the bandwith usage. Thank's.
  14. Re: Strange Ip problem isset();
  15. Re: [mccodes V2] Donation Mod. Pudda, you can clearly buy this. How ever i do not even know how to secure it. I am still learning the function's of cURL so i can understand a little bit right now. How ever, when i do figure out a patch there should be one already. Please, do not let my statement's cause you to not buy this. I've only seen it done once and it was to my game. By a former developer for paypal. He live's in the state's and goes by the name "Andrew Pietersin", I am not sure if he is actualy from united state's. But i then contacted him afterward's. He own's a couple server's and former developer for paypal back in 2003, and so far this exploit can only be done by people who know back end's and can modify header's being sent information. And no i am not talking about the $_POST or $_GET variable's. But please with all honesty no one will be able to exploit it yet unless they a former developer for paypal and know's how server's operate. Which none of them i am sure maybe 3% play RPG game's.
  16. Re: LOGH - Legend of the Green Hydra   Yeah i had noticed that. Altho if i do ever use this i would probly reply with No Beggars! lol
  17. Re: LOGH - Legend of the Green Hydra I am actualy enjoying it now. I got passed the stage of dying and i am beating everyone :)   Ugghh now i died..  
  18. Re: LOGH - Legend of the Green Hydra I was playing the game and i went minus gold. How ever i find it very nice. Could become a good game if you know what to do with it.
  19. Re: Cron Help try this maybe for both users:   $i = $db->query("SELECT inv_id,inv_userid FROM `inventory` WHERE `inv_itemid` = 18"); while($r = $dk->fetch_row($i)) { $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` * 2 ) + `bankmoney` WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` = ".$r['inv_userid); $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` + `bankmoney`) WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` <> ".$r['inv_userid']); }   Play around with the code between SET $l WHERE and figure it out maybe a little bit?
  20. Re: [mccode V2]Loan Office $5   I rest my case. People on CE can not read.
  21. Re: Cron Help   $i = $db->query("SELECT inv_id,inv_userid FROM `inventory` WHERE `inv_itemid` = 18"); while($r = $dk->fetch_row($i)) { $user = $r['inv_userid']; $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` * 2 ) + `bankmoney` WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` = ".$user); $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` + `bankmoney`) WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` <> ".$user); }   Missed a )
  22. Re: Cron Help Well basicly what you are doing is using a while function. So there for if i have 10 of the item's ill get 10x my interest rate. Here is a better sollution.   $i = $db->query("SELECT inv_id,inv_userid FROM `inventory` WHERE `inv_itemid` = 18"); while($r = $dk->fetch_row($i)) { $user = $r['inv_userid']; $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` * 2 ) + `bankmoney` WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` = ".$user); $db->query("UPDATE `users` SET `bankmoney` = `bankmoney` * (`bankpercent` + `bankmoney` WHERE (`bankmoney` > 0 AND `bankmoney` < (`bankmax` + 1) AND `daysinactive` < 2) AND `userid` <> ".$user); }   Try that and see what happen's.
  23. Re: [mccode V2]Loan Office $5 Look's like some one is going on a mod buying spree!
  24. Re: script to prevent users to register or login using proxies Majority of the "good" proxy's. They fool your $_SERVER[] array. Meaningless by putting: $_SERVER['REMOTE_ADDR']; it is basicly conecting to the proxy's IP. $_SERVER['PHP_SELF']; Also being fooled by the proxy to what ever URL you are clicking. $_SERVER['HTTP_HOST'] Normaly would be domain.com or www.domain.com Unfortunatly, we use a proxy we normaly get gproxy.net/rip?domain=hashed domain etc $_SERVER['HTTP_HOST'] then again is being fooled to being "hashed domain" Of course before it send's it. It unhashes the domain. There for fooling every $_SERVER[] command. Use a proxy. Go to a test page. And put this in your test page: var_dump($_SERVER);
  25. Re: Mod Request I can make this for $25, but that mean's resell right's go to me. Contact me on [email protected] for further information on how to claim full copy right's for your self.
×
×
  • Create New...