Online Bot

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

    Online Bot

    help me how to make an online bot at lavalair to maintain have online on my site thanks

    #2
    PHP Code:
    $botid 18;// change this to your bot user id
    $ran rand(1,4);
    if(
    $ran==1){
    $rplace "Online List";
    }else if(
    $ran==2){
    $rplace "Home";
    }else if(
    $ran==3){
    $rplace "Forums";
    }else if(
    $ran==4){
    $sql "SELECT userid FROM ibwf_online ORDER BY RAND()  LIMIT 1";
    $items mysql_query($sql);
    while (
    $item mysql_fetch_array($items))
    {
    $whonick getnick_uid($item[0]);
    }
    $rplace "Viewing $whonick`s Profile";
    }

    $rob mysql_query("INSERT INTO ibwf_online SET userid='".$botid."', actvtime='".$tm."', place='".$rplace."'");
    if(!
    $rob){
    mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace."' WHERE userid='".$botid."'");

    Comment


      #3
      Originally posted by something else View Post
      PHP Code:
      $botid 18;// change this to your bot user id
      $ran rand(1,4);
      if(
      $ran==1){
      $rplace "Online List";
      }else if(
      $ran==2){
      $rplace "Home";
      }else if(
      $ran==3){
      $rplace "Forums";
      }else if(
      $ran==4){
      $sql "SELECT userid FROM ibwf_online ORDER BY RAND()  LIMIT 1";
      $items mysql_query($sql);
      while (
      $item mysql_fetch_array($items))
      {
      $whonick getnick_uid($item[0]);
      }
      $rplace "Viewing $whonick`s Profile";
      }

      $rob mysql_query("INSERT INTO ibwf_online SET userid='".$botid."', actvtime='".$tm."', place='".$rplace."'");
      if(!
      $rob){
      mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace."' WHERE userid='".$botid."'");

      thanks where can i insert that?

      Comment


        #4
        in your core.php in the function addonline()

        Comment


          #5
          thank you but its not working please help

          Comment


            #6
            $tm = time();

            Comment


              #7
              this just for 1 bot id right? how about if i want to put 5 bot id?

              Comment


                #8
                I will make this work for my script lol
                Other words Rebuilt the idea and place 20 Bots lmao
                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


                  #9
                  re

                  in my old script mobilzonez i implemented this on the index page

                  PHP Code:
                      $brws explode(" ",$HTTP_USER_AGENT);
                  $ubr $brws[0];
                  $uip getip();
                  $uid "2";//guest
                  $HTTP_USER_AGENT mysql_escape_string($HTTP_USER_AGENT);
                  $HTTP_USER_AGENT getenv("HTTP_USER_AGENT");
                  $agent $_SERVER['HTTP_USER_AGENT'];
                  $ip$_SERVER["REMOTE_ADDR"];
                  $jul "1308828763";
                  $uip getip();
                  $index $index[0];

                  $rampagetime time() + (addhours());
                  addvisitor();
                   
                  $res=mysql_query("INSERT INTO ibwf_online SET activetime='".$jul."',  userid='".$uid."', brows='".$agent."', ip='".$ip."'");
                  addonline($uid,"Guest On Index Page","index.php","$agent","$ip"); 

                  or a better version of the code is this

                  PHP Code:
                  <?php
                  $indiatime 
                  time() + (10.5 60 60);
                  $agent=$_SERVER["HTTP_USER_AGENT"];
                  $tm=time();
                  if (
                  strpos($agent'Firefox') || strpos($agent'MSIE') || strpos($agent'Safari') || strpos($agent'Googlebot')){
                       
                  $flag 1;
                  }
                  if(
                  strpos($agent'Mobi') || strpos($agent'mobi') || substr_count($agent'Nokia') || substr_count($agent'Sony')){
                      
                  $flag=0;
                  }
                  if(
                  $flag==1){ 
                  header("Content-type: text/html");

                  else {
                  header("Content-type: application/vnd.wap.xhtml+xml");


                  header("Cache-Control: no-store, no-cache, must-revalidate");
                  $blah=mysql_connect("localhost","ibwf_forum","user");
                  //$blah=mysql_connect("localhost","root","");
                  if($blah){
                  $blah1=mysql_select_db("ibwf_forum");
                  }
                  if(!
                  $blah1){
                      echo 
                  "Couldn't connect to database.";
                      exit();
                  }

                  //////////////////////////////
                  echo("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
                  echo 
                  "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD XHTML Mobile 1.0//EN\""" \"http://www.wapforum.org/DTD/xhtml-mobile10.dtd\">";

                  $HTTP_USER_AGENT=$_SERVER["HTTP_USER_AGENT"];
                  $REMOTE_ADDR=$_SERVER["REMOTE_ADDR"];
                  $flag=0;
                  if(
                  substr_count($agent"Googlebot")){
                  $idn=27;
                  }
                  else if(
                  substr_count($agent"Yahoo")){
                      
                  $idn=29;// user id in dbase
                  }
                  else if(
                  substr_count($agent"msnbot")){
                      
                  $idn=83;
                  }
                  else{
                      
                  $flag=1;
                  }
                  if(
                  $flag==0){
                      
                  getbrip($idn);
                  addonline($idn,"Crawling forums list","");
                  }
                  Last edited by ozziemale31; 28.05.12, 13:24.









                  Dont Ask Me Dumb Questions.Or you'l get a Dumb Answer..
                  Want A Profesional Logo or Theme For Your wap site Pm Me.If I Have The Time Ill Make It For Free

                  Comment


                    #10
                    I think c0de sh0wn by s0mething else is m0re easy to understand. . Perhaps s0me0ne can update to 5 bot id? Or Can we just add an0ther bot id? $botid=18; $botid=19;

                    Comment


                      #11
                      re

                      Originally posted by sharil View Post
                      I think c0de sh0wn by s0mething else is m0re easy to understand. . Perhaps s0me0ne can update to 5 bot id? Or Can we just add an0ther bot id? $botid=18; $botid=19;
                      PHP Code:
                      //the actual code for the bots are here make user ids ie googlebot ,yahoobot etc idn=27 is the position of the userid on the dbase easy peasy 
                      $HTTP_USER_AGENT=$_SERVER["HTTP_USER_AGENT"];
                      $REMOTE_ADDR=$_SERVER["REMOTE_ADDR"];
                      $flag=0;
                      if(
                      substr_count($agent"Googlebot")){
                      $idn=27;
                      }
                      else if(
                      substr_count($agent"Yahoo")){
                          
                      $idn=29;// user id in dbase
                      }
                      else if(
                      substr_count($agent"msnbot")){
                          
                      $idn=83;
                      }
                      else{
                          
                      $flag=1;
                      }
                      if(
                      $flag==0){
                          
                      getbrip($idn);
                      addonline($idn,"Crawling forums list","");










                      Dont Ask Me Dumb Questions.Or you'l get a Dumb Answer..
                      Want A Profesional Logo or Theme For Your wap site Pm Me.If I Have The Time Ill Make It For Free

                      Comment


                        #12
                        im only a noob and it can probrobly can be done with lot less coding but u mean sumat like this?
                        Code:
                        $botid = 18;// change this to your bot user id 
                        $botid2 = 19;
                        $botid3 = 20;
                        $ran = rand(1,4); 
                        if($ran==1)
                        { 
                        $rplace = "Online List"; 
                        $rplace2 = "Forums";
                        $rplace3 = "Home";
                        }
                        else if($ran==2)
                        { 
                        $rplace = "Home"; 
                        $rplace2 = "Online List";
                        $rplace3 = "Forums";
                        }
                        else if($ran==3)
                        { 
                        $rplace = "Home";
                        $rplace2 = "Forums";
                        $rplace3 = "Online List";
                        }
                        else if($ran==4)
                        { 
                        $sql = "SELECT id FROM ibwf_users ORDER BY RAND()  LIMIT 1"; 
                        $items = mysql_query($sql); 
                        while ($item = mysql_fetch_array($items)) 
                        { 
                        $whonick = getnick_uid($item[0]); 
                        } 
                        $rplace = "Viewing $whonick`s Profile"; 
                        $rplace2 = "Viewing $whonick`s Profile";
                        $rplace3 = "Viewing $whonick`s Profile";
                        } 
                        $rob = mysql_query("INSERT INTO ibwf_online SET userid='".$botid."', actvtime='".$tm."', place='".$rplace."'");
                        if(!$rob){
                        mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace."' WHERE userid='".$botid."'");
                        }
                        $rob2 = mysql_query("INSERT INTO ibwf_online SET userid='".$botid2."', actvtime='".$tm."', place='".$rplace2."'");
                        if(!$rob2){
                        mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace2."' WHERE userid='".$botid2."'");
                        }
                        $rob3 = mysql_query("INSERT INTO ibwf_online SET userid='".$botid3."', actvtime='".$tm."', place='".$rplace3."'");
                        if(!$rob3){
                        mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace3."' WHERE userid='".$botid3."'");
                        }
                        Last edited by fullcircle; 28.05.12, 22:45.

                        Comment


                          #13
                          Originally posted by fullcircle View Post
                          im only a noob and it can probrobly can be done with lot less coding but u mean sumat like this?
                          Code:
                          $botid = 18;// change this to your bot user id 
                          $botid2 = 19;
                          $botid3 = 20;
                          $ran = rand(1,4); 
                          if($ran==1)
                          { 
                          $rplace = "Online List"; 
                          $rplace2 = "Forums";
                          $rplace3 = "Home";
                          }
                          else if($ran==2)
                          { 
                          $rplace = "Home"; 
                          $rplace2 = "Online List";
                          $rplace3 = "Forums";
                          }
                          else if($ran==3)
                          { 
                          $rplace = "Home";
                          $rplace2 = "Forums";
                          $rplace3 = "Online List";
                          }
                          else if($ran==4)
                          { 
                          $sql = "SELECT id FROM ibwf_users ORDER BY RAND()  LIMIT 1"; 
                          $items = mysql_query($sql); 
                          while ($item = mysql_fetch_array($items)) 
                          { 
                          $whonick = getnick_uid($item[0]); 
                          } 
                          $rplace = "Viewing $whonick`s Profile"; 
                          $rplace2 = "Viewing $whonick`s Profile";
                          $rplace3 = "Viewing $whonick`s Profile";
                          } 
                          $rob = mysql_query("INSERT INTO ibwf_online SET userid='".$botid."', actvtime='".$tm."', place='".$rplace."'");
                          if(!$rob){
                          mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace."' WHERE userid='".$botid."'");
                          }
                          $rob2 = mysql_query("INSERT INTO ibwf_online SET userid='".$botid2."', actvtime='".$tm."', place='".$rplace2."'");
                          if(!$rob2){
                          mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace2."' WHERE userid='".$botid2."'");
                          }
                          $rob3 = mysql_query("INSERT INTO ibwf_online SET userid='".$botid3."', actvtime='".$tm."', place='".$rplace3."'");
                          if(!$rob3){
                          mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace3."' WHERE userid='".$botid3."'");
                          }
                          No Fullcircle, i dont think it will works for if used code above. should be add some more on the code. rand () is for place. rand() actually referred to places not botid and cannot add 2 places in 1 one code.Please corect if im wrong.
                          Last edited by sharil; 29.05.12, 01:18.

                          Comment


                            #14
                            PHP Code:
                            $bots = array(12345);// change this to your bot user id
                            foreach ($bots as $botid) {
                            $ran rand(1,4);
                            if(
                            $ran==1){
                            $rplace "Online List";
                            }else if(
                            $ran==2){
                            $rplace "Home";
                            }else if(
                            $ran==3){
                            $rplace "Forums";
                            }else if(
                            $ran==4){
                            $sql "SELECT userid FROM ibwf_online ORDER BY RAND()  LIMIT 1";
                            $items mysql_query($sql);
                            while (
                            $item mysql_fetch_array($items))
                            {
                            $whonick getnick_uid($item[0]);
                            }
                            $rplace "Viewing $whonick`s Profile";
                            }

                            $rob mysql_query("INSERT INTO ibwf_online SET userid='".$botid."', actvtime='".$tm."', place='".$rplace."'");
                            if(!
                            $rob){
                            mysql_query("UPDATE ibwf_online SET actvtime='".$tm."', place='".$rplace."' WHERE userid='".$botid."'");

                            }
                            ///random text here to get rid of opera bug and this forum :/ 

                            Comment


                              #15
                              Thanks s0methng else 4 da c0de. .

                              Comment

                              Working...
                              X