Jump to content
MakeWebGames

Isomerizer

Members
  • Posts

    1,170
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Isomerizer

  1. Re: [site tools] auto backup your site I like this mod, Daily SQL backup's and home directory on desktop. Even if i am hacked.. I can restore the site in minutes ^_^.
  2. Re: appreciate all the information It's a crazy community to join. Glad to see someone who can type English properly. Unlike many users who constantly use unwanted slang.
  3. Re: [mccode] Mining mod   I see no function on line 51..   </center>";
  4. Re: [Free] [v1] Profile Image Uploader Updated. Secured hopefully :wink:. Will stop bad files extensions now. If your using this. Update your uploadpic.php!
  5. Re: [Free] [v1] Profile Image Uploader   Ok added. I recommend Not using this until its secured.
  6. Re: Header Error help Either will or maxwill is 0 ?
  7. Re: [Free] [v1] Profile Image Uploader   Hmm yes the selected file uploaded to the profilepics directory could be harmful. The actual script itself is secure. I'm going to have to look into this, Maybe try reading the image uploaded for harmful scripts. Ferdi did show me a bit of code what was suppose to do this. But it never worked. The users would have to upload it in an image with the file types of gif, jpeg, jpg, png, bmp.  
  8. Re: Itemuse.php   Again, Im sure http://criminalexistence.com/ceforums/i ... ic=15351.0 would prevent it.
  9. Re: [mccode] Mining mod Change the max_power column to 100...?
  10. Anti Bot System Description This modification made by Isomerizer and Ferdi is one of a kind. It will stop multiple session, aka tabbed browsing. It makes use of the file system, and requires no mysql. It does require your webserver to have the GD lib enabled in php, which most webservers have enabled by default. This will stop user's / bot's from clicking to fast, Lets say 3 clicks in 2 seconds (This can be set to w/e you want), If a user / bot exceeds this, the script will activate, temporarily banning them from the game. Until they complete the image verification to prove to the game they are not a bot, when this is done, they will be returned to the game and carry on as normal. This will also help prevent spam / flood. And is a good security improvement to your game. All major games should have this. Here are a few screenshots: Mainscreen A thing for users Features Manageable Exceeding Limits Advanced Header Configuration. Reloading of Image, with Limit of 3(Default) FAQ for users(Javascript) FF and IE Tested. How to buy The default price is 30 USD, with the system, captcha and installation notes.(Convert). With installation, done by Ferdi or Isomerizer, it is an custom extra price(About 10 USD). You will need to send 50% of the total to each of the persons(Isomerizer and Ferdi). Isomerizer's paypal: [email protected] ($15) Ferdi's paypal: [email protected] ($15) Paypal Transactions Only
  11. Re: [Free] [v1] Profile Image Uploader Think this may fix that problem fbiss..   $check=mysql_query("SELECT COUNT(*) as cnt FROM users WHERE display_pic='profilepics/$fileplace'", $c); $checks=mysql_fetch_array($check); if ($checks['cnt']>0) { echo "Please use another image name [url='uploadpic.php']Back[/url]"; $h->endpage(); exit; }   Let me upload the script
  12. Re: Earn $5 now If gur cannot do it, I will.
  13. Re: Your game All of the options, Its great practise not only for coding but for community management.
  14. Free high low casino game.. Enjoy.. v1 Create highlow.php with:   <?php /*----------------------------------------------------- -- High Low (Free Source) -- Copyright held 2007-2008 Isomerizer.com -- highlow.php -----------------------------------------------------*/ session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); switch($_GET['action']) { default: highlow_index(); break; case 'bet': bet(); break; case 'bet2': bet2(); break; } if ($_GET['action']!="bet" || $_GET['action']!="bet2") { echo 'What are you doing? [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } function highlow_index() { global $ir,$c,$userid,$h; if ($_SESSION['card']!=0 || $_SESSION['bet']!=0) { $recent=$_SESSION['bet']; echo 'You are already in a game of high low. '; $h->endpage(); exit; } $max=$ir['level']*5; echo 'High LowWelcome to the casino game of High Low, There are 10 cards, 1 to 10. You must pick either lower or higher to win. [b]State your wager: [i](Your max bet is $'.$max.')[/i][/b] Bet: $ The maximum bet is your current level x $5.'; $h->endpage(); exit; } function bet() { global $ir,$c,$userid,$h; if ($ir['money']<$_POST['amount']) { echo 'Error - You dont have that much money. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_POST['amount']<=0) { echo 'Error - You cant bet under $1. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } $max=$ir['level']*5; if ($_POST['amount']>$max) { echo 'Error - Max Bet Exceeded. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_SESSION['card']==0) { $card=mt_rand(1,10); $_SESSION['card']=$card; } $card=$_SESSION['card']; $amount=mysql_real_escape_string($_POST['amount']); $_SESSION['bet']=$amount; echo 'High LowYou lay $'.$amount.' on the table The dealer reveals the card '.$card.'. Will you bet on higher or lower? Higher Lower '; $h->endpage(); exit; } function bet2() { global $ir,$c,$userid,$h; $dealercard=$_SESSION['card']; $yourcard=mt_rand(1,10); echo 'High LowYou bet '.$_POST['decide'].' The final result is: [b]Dealers Card:[/b] '.$dealercard.' [b]Your Card:[/b] '.$yourcard.' '; $prize=mysql_real_escape_string($_SESSION['bet']); $lose=$ir['money']-$prize; $win=$ir['money']+$prize; $_SESSION['bet']=0; $_SESSION['card']=0; if ($yourcard==$dealercard) { echo 'You drew with the dealer! [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_POST['decide']=="higher" && $yourcard>$dealercard) { echo 'Congratulations you won $'.$prize.' ! [url="highlow.php"]Back[/url]'; mysql_query("UPDATE users SET money=$win WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="higher" && $yourcard<$dealercard) { echo 'Sorry, You lost $'.$prize.' ! [url="highlow.php"]Back[/url]'; mysql_query("UPDATE users SET money=$lose WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="lower" && $yourcard<$dealercard) { echo 'Congratulations you won $'.$prize.' ! [url="highlow.php"]Back[/url]'; mysql_query("UPDATE users SET money=$win WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="lower" && $yourcard>$dealercard) { echo 'Sorry, you lost $'.$prize.' ! [url="highlow.php"]Back[/url]'; mysql_query("UPDATE users SET money=$lose WHERE userid=$userid", $c); $h->endpage(); exit; } } ?>   v2 Create highlow.php with:   <?php /*----------------------------------------------------- -- High Low (Free Source) -- Copyright held 2007-2008 Isomerizer.com -- highlow.php -----------------------------------------------------*/ require "globals.php"; switch($_GET['action']) { default: highlow_index(); break; case 'bet': bet(); break; case 'bet2': bet2(); break; } if ($_GET['action']!="bet" || $_GET['action']!="bet2") { echo 'What are you doing? [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } function highlow_index() { global $ir,$c,$userid,$h; if ($_SESSION['card']!=0 || $_SESSION['bet']!=0) { $recent=$_SESSION['bet']; echo 'You are already in a game of high low. '; $h->endpage(); exit; } $max=$ir['level']*5; echo 'High LowWelcome to the casino game of High Low, There are 10 cards, 1 to 10. You must pick either lower or higher to win. [b]State your wager: [i](Your max bet is $'.$max.')[/i][/b] Bet: $ The maximum bet is your current level x $5.'; $h->endpage(); exit; } function bet() { global $ir,$c,$userid,$h; if ($ir['money']<$_POST['amount']) { echo 'Error - You dont have that much money. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_POST['amount']<=0) { echo 'Error - You cant bet under $1. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } $max=$ir['level']*5; if ($_POST['amount']>$max) { echo 'Error - Max Bet Exceeded. [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_SESSION['card']==0) { $card=mt_rand(1,10); $_SESSION['card']=$card; } $card=$_SESSION['card']; $amount=$db->real_escape_string($_POST['amount']); $_SESSION['bet']=$amount; echo 'High LowYou lay $'.$amount.' on the table The dealer reveals the card '.$card.'. Will you bet on higher or lower? Higher Lower '; $h->endpage(); exit; } function bet2() { global $ir,$c,$userid,$h; $dealercard=$_SESSION['card']; $yourcard=mt_rand(1,10); echo 'High LowYou bet '.$_POST['decide'].' The final result is: [b]Dealers Card:[/b] '.$dealercard.' [b]Your Card:[/b] '.$yourcard.' '; $prize=$db->real_escape_string($_SESSION['bet']); $lose=$ir['money']-$prize; $win=$ir['money']+$prize; $_SESSION['bet']=0; $_SESSION['card']=0; if ($yourcard==$dealercard) { echo 'You drew with the dealer! [url="highlow.php"]Back[/url]'; $h->endpage(); exit; } if ($_POST['decide']=="higher" && $yourcard>$dealercard) { echo 'Congratulations you won $'.$prize.' ! [url="highlow.php"]Back[/url]'; $db->query("UPDATE users SET money=$win WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="higher" && $yourcard<$dealercard) { echo 'Sorry, You lost $'.$prize.' ! [url="highlow.php"]Back[/url]'; $db->query("UPDATE users SET money=$lose WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="lower" && $yourcard<$dealercard) { echo 'Congratulations you won $'.$prize.' ! [url="highlow.php"]Back[/url]'; $db->query("UPDATE users SET money=$win WHERE userid=$userid", $c); $h->endpage(); exit; } if ($_POST['decide']=="lower" && $yourcard>$dealercard) { echo 'Sorry, you lost $'.$prize.' ! [url="highlow.php"]Back[/url]'; $db->query("UPDATE users SET money=$lose WHERE userid=$userid", $c); $h->endpage(); exit; } } ?>   Both Versions Add to logout.php:   After <?php   ob_start();   && Before session_unset(); session_destroy(); add:   if ($_SESSION['card']!=0 || $_SESSION['bet']!=0) { $fee=$_SESSION['bet']; mysql_query("UPDATE users SET money=money-$fee WHERE userid=$sessid", $c); $_SESSION['card']=0; $_SESSION['bet']=0; }   Thanks, Can be seen fully working @ www.amazon-survival.com
  15. Isomerizer

    New game

    Re: New game ^ Loves goths < Just died from the look of younggold v Is about to play www.amazon-survival.com :wink:
  16. Re: Euro 2008 Lol @ Ferdi.. Well im hoping England will qualify. I want to get revenge back at Portugal :x They knocked us out of the last Euro & World Cup... Both penalty shoot out's. Grrrr...
  17. Re: [v1] NEW LOGIN MY FIRST [V1] Got an example or screenshot?
  18. Re: [mccode] voting Pimped Out   You probaly have not changed your mysql query's (list) to w/e voting sites your using...
  19. Re: Stats cap :S   Cpanel > PHP myadmin > Table: userstats > Edit types... Change Int to something bigger like BigInt
  20. Isomerizer

    Euro 2008

    Who's following the Euro 2008 then? Cant believe England lost to Russia :| This is how it stands for England...   Chances are slim. :( http://news.bbc.co.uk/sport1/hi/footbal ... efault.stm   Who are you supporting? :)
  21. Re: [Free] [v1] Profile Image Uploader   Yes...
  22. Re: [MCCODE]Revamped login.php[V1] Mod = Modification.   Source: Here
  23. Re: 3 Word Game country of alaska
  24. Re: Guess the next poster Me :mrgreen: I guess..... Ferdi.
  25. Re: [mccode] [TGM] Delete Gang Option [TGM] Its ashame they encourage people in web dev to use dreamweaver in college. Notepad++ > All
×
×
  • Create New...