Tic Tac Toe, Xogame.php For Lavalair?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Tic Tac Toe, Xogame.php For Lavalair?

    hi personal, can arrange me xogame.php? please, I do not have it, I want for it in mine wap site of lavalair script

    #2
    use search its in here somewhere

    Comment


      #3
      use search its in here somewhere[/b]


      already I used, more I did not find php, I found some complements, I am only back of .php

      Comment


        #4
        yeah..

        juz search it

        Comment


          #5
          <?php
          header("Content-Type: text/vnd.wap.wml");
          $pagetitle='php3T 1.2';
          $pagebackground='lightgreen';
          $pageimage='title.gif';
          $pageimagealt=$pagetitle;

          $tblbackground='darkgreen';

          $cellbackground='lightgreen';


          $ximage='x.jpg';
          $ximagealt='x';
          $oimage='o.jpg';
          $oimagealt='o';

          $defaultdifficulty='difficulty';
          if (isset($new))
          {
          session_start();
          unset($b);
          unset($turn);
          unset($cdiff);
          session_destroy();
          }

          session_start();
          if (! isset($turn))
          {
          session_register(turn);
          $turn=1;
          session_register(;
          session_register(cdiff);
          if ($diff == 'e')
          $cdiff = 'Easy';
          elseif ($diff == 'n')
          $cdiff = 'Normal';
          elseif ($diff == 'i')
          $cdiff = 'Impossible';
          else
          $cdiff = $defaultdifficulty;
          }
          global $b;
          global $gwin;
          global $gover;

          print "<?xml version=\"1.0\" encoding=\"utf-8\"?>
          <!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.2//EN\" \"http://www.wapforum.org/DTD/wml12.dtd\">";
          print "<wml><head><meta forua=\"true\" http-equiv=\"Cache-Control\" content=\"max-age=100000\"/></head>
          <card id=\"card1\" title=\"X and O\">
          <p align=\"left\">*you are allways X
          ";






          //take input if got input
          if (isset($mv))
          $b[$mv]='x';

          checkwin();
          checkfull();


          // calculate computers move
          if ($gover <> 1 && $gwin == '' && $mv <> '')
          {
          if ($cdiff == 'Easy')
          {
          comprand();
          }
          elseif ($cdiff == 'Normal')
          {
          compmove();

          if ($cmv == '')
          {
          comprand();
          }
          }
          elseif ($cdiff == 'Impossible')
          {
          compmove();
          if ($cmv == '')
          {
          if ($b[4] == '')
          $cmv=4;
          elseif ($b[0] == '')
          $cmv=0;
          elseif ($b[2] == '')
          $cmv=2;
          elseif ($b[6] == '')
          $cmv=6;
          elseif ($b[8] == '')
          $cmv=8;
          if ($cmv == '')
          comprand();
          }

          }
          $b[$cmv] = 'o';
          }
          // **********
          checkwin();
          checkfull();



          for ($i = 0; $i <= 8; $i++)
          {
          if ($i == 0 || $i == 3 || $i == 6)

          print '';

          if ($b[$i] == 'x')
          print '[img]'.$ximage.'[/img]';
          elseif ($b[$i] == 'o')
          print '[img]'.$oimage.'[/img]';
          elseif ($gwin == '')
          print '[img]think.gif[/img]';//////////////your site name\\\\\\





          if ($i == 2 || $i == 5 || $i ==
          print '
          ';
          }





          if ($gwin == 'O' || $gwin == 'X')
          print "$gwin- win the countest.
          ";
          elseif ($gover == 1)
          print 'NULL-play again.
          ';

          print '*choose game:<select name="diff" value="n"><option value="e">easy</option><option value="n">hard</option><option value="i">again</option></select><anchor title="go">go<go href="index.php" method="post"><postfield name="diff" value="$(diff)"/><postfield name="new" value="new"/></go></anchor>
          ----------
          ';



          print 'Home";
          </p></card></wml>';//////////////YOUR SITE NAME\\\\\\\\\\\\\\

          ## functions:
          function checkfull()
          {
          global $b;
          global $gover;

          $gover = 1;
          for ($ii = 0; $ii <= 8; $ii++)
          {
          if ($b[$ii] == '')
          {
          $gover = 0;
          return;
          }
          }
          }
          ####
          function checkwin()
          {
          global $b;
          global $gwin;
          $c=1;
          while ($c <= 2)
          {
          if ($c == 1)
          $t='o';
          else
          $t='x';
          if (
          # horizontal
          ($b[0] == $t && $b[1] == $t && $b[2] == $t) ||
          ($b[3] == $t && $b[4] == $t && $b[5] == $t) ||
          ($b[6] == $t && $b[7] == $t && $b[8] == $t) ||
          # vertical
          ($b[0] == $t && $b[3] == $t && $b[6] == $t) ||
          ($b[1] == $t && $b[4] == $t && $b[7] == $t) ||
          ($b[2] == $t && $b[5] == $t && $b[8] == $t) ||
          # diagonal
          ($b[0] == $t && $b[4] == $t && $b[8] == $t) ||
          ($b[2] == $t && $b[4] == $t && $b[6] == $t))
          {
          $gwin = strtoupper($t);
          return;
          }
          $c++;
          }
          }

          function compmove()
          {
          global $cmv;
          global $b;
          for ($c = 0; $c <=1; $c++)
          {
          if ($c == 0)
          $t='o';
          else
          $t='x';

          if ($b[0] == $t && $b[1] == $t && $b[2] == '')
          $cmv = 2;
          if ($b[0] == $t && $b[1] == '' && $b[2] == $t)
          $cmv = 1;
          if ($b[0] == '' && $b[1] == $t && $b[2] == $t)
          $cmv = 0;
          if ($b[3] == $t && $b[4] == $t && $b[5] == '')
          $cmv = 5;
          if ($b[3] == $t && $b[4] == '' && $b[5] == $t)
          $cmv = 4;
          if ($b[3] == '' && $b[4] == $t && $b[5] == $t)
          $cmv = 3;

          if ($b[6] == $t && $b[7] == $t && $b[8] == '')
          $cmv = 8;
          if ($b[6] == $t && $b[7] == '' && $b[8] == $t)
          $cmv = 7;
          if ($b[6] == '' && $b[7] == $t && $b[8] == $t)
          $cmv = 6;

          if ($b[0] == $t && $b[3] == $t && $b[6] == '')
          $cmv = 6;
          if ($b[0] == $t && $b[3] == '' && $b[6] == $t)
          $cmv = 3;
          if ($b[0] == '' && $b[3] == $t && $b[6] == $t)
          $cmv = 0;

          if ($b[1] == $t && $b[4] == $t && $b[7] == '')
          $cmv = 7;
          if ($b[1] == $t && $b[4] == '' && $b[7] == $t)
          $cmv = 4;
          if ($b[1] == '' && $b[4] == $t && $b[7] == $t)
          $cmv = 1;
          if ($b[2] == $t && $b[5] == $t && $b[8] == '')
          $cmv = 8;
          if ($b[2] == $t && $b[5] == '' && $b[8] == $t)
          $cmv = 5;
          if ($b[2] == '' && $b[5] == $t && $b[8] == $t)
          $cmv = 2;


          if ($b[0] == $t && $b[4] == $t && $b[8] == '')
          $cmv = 8;
          if ($b[0] == $t && $b[4] == '' && $b[8] == $t)
          $cmv = 4;
          if ($b[0] == '' && $b[4] == $t && $b[8] == $t)
          $cmv = 0;

          if ($b[2] == $t && $b[4] == $t && $b[6] == '')
          $cmv = 6;
          if ($b[2] == $t && $b[4] == '' && $b[6] == $t)
          $cmv = 4;
          if ($b[2] == '' && $b[4] == $t && $b[6] == $t)
          $cmv = 2;
          if ($cmv <> '')
          break;
          }
          }
          function comprand()
          {
          global $b;
          global $cmv;
          srand ((double) microtime() * 1000000);
          while (! isset($cmv))
          {
          $test=rand(0, ;
          if ($b[$test] == '')
          $cmv=$test;
          }
          }
          ?>
          try this.make a folder called xo then make an index.php file with this code & upload those images given below
          Attached Files

          Comment


            #6
            File error

            where get sid(); lol
            Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
            Visit: WapMasterz Coming Back Soon!
            _______
            SCRIPTS FOR SALE BY SUBZERO
            Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
            FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
            _______
            Info & Tips
            php.net
            w3schools.com

            Comment


              #7
              debtor, was this same, plus these smilies had confused me, sorry, in knows it what to make

              Comment


                #8
                so many error in this coding..just sit back n eat ur **** if u just want to post a ****ing coding..!!

                Comment


                  #9
                  so many error in this coding..just sit back n eat ur **** if u just want to post a ****ing coding..!![/b]
                  and i dont see you sharing anything

                  Comment


                    #10
                    and i dont see you sharing anything[/b]
                    thats what we Can LEECH! hahaha

                    Comment


                      #11
                      so many error in this coding..just sit back n eat ur **** if u just want to post a ****ing coding..!![/b]
                      you should be BANNED from this forum
                      It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                      ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                      ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                      キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                      Comment


                        #12
                        owh emylee my love...i&#39;ll share only when u ask..
                        luv u darling...

                        Comment


                          #13
                          owh emylee my love...i&#39;ll share only when u ask..
                          luv u darling... [/b]
                          you will share what exactly?
                          your annoying moaning??
                          is there more??
                          It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                          ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                          ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                          キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                          Comment


                            #14
                            you should be BANNED from this forum [/b]
                            lol yeah seriously

                            Comment


                              #15
                              [/b]
                              <div align="center">~~~~~~~~~~~~~~~~~
                              THEORY is when you know something,
                              but it doesn&#39;t work.
                              PRACTICE is when something works,
                              but you don&#39;t know why.
                              PROGRAMMERS combine theory and practice:
                              Nothing works and they don&#39;t know why!
                              ~~~~~~~~~~~~~~~~~~
                              You have ONLY ONE advantage
                              over me... you can kiss
                              my ass, and I cant!
                              ~~~~~~~~~</div>

                              Comment

                              Working...
                              X