Jump to content
MakeWebGames

rulerofzu

Members
  • Posts

    2,464
  • Joined

  • Last visited

  • Days Won

    8

Everything posted by rulerofzu

  1. Removed........................................
  2. Well sorry but not going to do it for you. If you wish to pay for it to be done ill charge $50.
  3. Looks fairly simple if you look at their API sample script. <?phpdefine('SECRET', 'd9bee051cfe5613c6a2ddb513ad52fd9'); define('CREDIT_TYPE_CHARGEBACK', 2); $ipsWhitelist = array( '174.36.92.186', '174.36.96.66', '174.36.92.187', '174.36.92.192', '174.37.14.28' ); $userId = isset($_GET['uid']) ? $_GET['uid'] : null; $credits = isset($_GET['currency']) ? $_GET['currency'] : null; $type = isset($_GET['type']) ? $_GET['type'] : null; $refId = isset($_GET['ref']) ? $_GET['ref'] : null; $signature = isset($_GET['sig']) ? $_GET['sig'] : null; $result = false; if (!empty($userId) && !empty($credits) && isset($type) && !empty($refId) && !empty($signature)) { $signatureParams = array( 'uid' => $userId, 'currency' => $credits, 'type' => $type, 'ref' => $refId ); $signatureCalculated = generateSignature($signatureParams, SECRET); // check if IP is in whitelist and if signature matches if (in_array($_SERVER['REMOTE_ADDR'], $ipsWhitelist) && ($signature == $signatureCalculated)) { $result = true; if ($type == CREDIT_TYPE_CHARGEBACK) { // Deduct credits from user // This is optional, but we recommend this type of crediting to be implemented as well // Note that currency amount sent for chargeback is negative, e.g. -5, so be caferul about the sign // Don’t deduct negative number, otherwise user will get credits instead of losing them } else { // Give credits to user } } } if ($result) { echo 'OK'; } function generateSignature($params, $secret) { $str = ''; foreach ($params as $k=>$v) { $str .= "$k=$v"; } $str .= $secret; return md5($str); }
  4. Now I thought most game sales was pretty bad but this is shocking. Fully conditioned? as in the usual free/paid mods available here anything extra unique? BTW as far as I know McCodes latest version is not 100% fully secure. Users? Income? Url? Seen as you have not posted any of that info makes me think its probably not very good. Has no players. Nothing unique. Bad design and its not worth more than perhaps the domain registration cost and thats depending on if the domain is worth having.
  5. The $40 licence was for upgrades from v2.0.x to Redux. Its my understanding that its the upgrade you cannot sell. You could of course sell your original 2.0.x licence and still use the 2.5.x licence.
  6. This should have been buried doesnt really need any further involvement nice to have you back though Jordan.
  7. Ive seen macros bypass a lot of captcha systems purely due to the speed execution difference between the macro and the captcha script. Not saying this is the case here but ive seen it with the default mccodes version and a few other versions.
  8. Aging Dave...you getting on a bit Dave? lol
  9. Edit as its no longer relevant.
  10. I would say go for clans.
  11. Congrats on the update Alain. The patch is a very quick way to update.
  12. rulerofzu

    Wamp Server

    Go with install of apache,mysql (or better mariadb for example) and php. Much better in my opinion and gives you more control on what is installed and configured.
  13. rulerofzu

    Meteor

    Yeah thanks very much for posting this. Very interesting really enjoyed the screencast some interesting concepts there.
  14. Yeah I would start with the engine beginning with the scripts starting with the letter A and move all through the engine.... If they didnt secure that they didnt secure anything else either.
  15. Would also be good if it showed why you was there. For example Killed by a Rat
  16. No im talking to the person sitting next to you with this t-shirt on [ATTACH=CONFIG]333[/ATTACH]
  17. I use captcha for registration, gym use and crime use and anywhere else in my game(s) where a bot/macro could be used to give a player an unfair advantage. Its not foolproof but it does stop the majority of players making those that do get around it stand out.
  18. Sounds cool I could use something like this. Ill take a freebie...charge CB though lol :P
  19. Once an idiot always an idiot eh bobby. Call it a day and move along to the next engine. How many is it now you have tried found it too difficult so tried another. Really you should give it up now. As your chances of even making a half ass game is really very slim
  20. Do you know what /* means?
  21. Post your code for one of your crons and what you have set in your hosting control panel.
  22. Ask them. If not then you have two options. Move to a host that will. For example w3theory.com members of the forum highly recommended. Or convert to timestamps instead.
  23. Hahaha noob. So rather than answer the questions you would rather be stuck with it until someone helps you which they cant as from what I can tell you have a different engine. Is this because GRPG is actually a paid for engine and you didnt pay for it ;)
  24. Yes I did say that earlier it was not in the cron... And no people cannot use rollover.php as clearly you do not place crons in the wwwroot so its accessible from the web!!!! Your really not making any sense and cant really see how you can expect help.
  25. What version where did you get it from ? I have grpg and its not got the code you state and the cron of which there is only 1 vs your 3 is called rollover
×
×
  • Create New...