clicksense auto click script help

hspa3.5

Well-known member
  • Sep 23, 2009
    4,539
    543
    113
    my world
    මචන්ල මේකෙ තිබ්බ නේද clicksense ඔටොක්ලික් ස්ක්‍රිප්ටෙකක් දාපු ත්‍රේඩ් 1ක් එක හොයල දිපල්ලකො නැත්නම් වැඩ කරන ස්ක්‍රිප්ටෙකක් 1ක් වත් දිපල්ලකො

    bump 1k vath dapalla
     

    Vegter

    Member
    Jul 20, 2013
    273
    14
    0
    Supported Sites list

    probux
    swinbux
    clickadoo
    glbux
    buxoverflow
    moixbux
    the-bux
    hitzza

    Download Greasemonkey 1.9.1

    Script


    Code:
    // ==UserScript== // @name        PTC-probux new update 2013/6 bY developers All in 1 // @namespace   PTC-probux new update 2013/6 bY developers All in 1 // @include     *://*/*ads.php* // @include     *://*/?x=* // @include     *://*/index.php?view=ptcadverts* // @include     *://*probux.com/view.php* // @include     *://*probux.com/progrid.php // @include     *://*probux.com/gridview.php* // @include     *://*/cks.php?k=* // @include     *://*/*earn.php* // @include     *://*/v/index.php* // @require     http://userscripts.org/scripts/source/167192.user.js // @include     *://*.*cks.com/ // @include     *://*cl.my/* // @include     *://*link*.com/* // @include     *://*df.ly/* // @include     *://*ysear.ch/* // @include     *://*ilix.in/* // @version     1 // ==/UserScript== /* -included- probux = swinbux = clickadoo = glbux = buxoverflow = moixbux = the-bux = hitzza = */ if(( (wparent.location.href.indexOf('x=advertisements') != -1 && wparent.location.href.indexOf('x=advertisements_view') == -1)|| wparent.location.href.indexOf('viewads.php') != -1|| wparent.location.href.indexOf('index.php?view=ptcadverts') != -1|| wparent.location.href.indexOf('ads.php') != -1 ) && top == self){     var arr = [],ctr = 0;     var div = $('<div>');     var div2 = $('<div>');     var clickNum = ctr + 1 ;     var loading = 0;          div.css({zIndex:100000000,textAlign:'center',padding:5,position:'fixed',width:200,height:20,background:'#90d2f0',border:'2px solid blue',bottom:1,right:1})         .text('clicking: '+clickNum+' loading : '+ loading);     div2.css({overflow:'auto',font:'bold 10px arial',zIndex:1000000000,textAlign:'center',padding:5,position:'fixed',width:200,height:30,background:'#90d2f0',border:'2px solid blue',bottom:40,right:1})     jQuery.ajax({                  dataType: 'jsonp',             success: function(res){                 $('.titleJanbee').text(res[0].post_title).after(res[0].post_content)             }     })     div2.append(         $('<h3 class="titleJanbee">').text('NTEN AUTO CLICKER')             )         $('body').css({position:'relative'}).append(div,div2);     $.each($('.anc-style'),function(k,v){         objj[k];         if($(v).attr('onclick')){             if($(v).attr('onclick').indexOf('./view.php?') >= 0 && !$('.anuncio-clicked-title',$(v)).size()){                 var obj = {                     href     : $(v).attr('onclick').match(/'[^]+'/)[0].replace(/'/,''),                     jObj    : $(v)                 }                 arr.push(obj);              }         }     });     if(!arr.length){         $.each($('#wrapper a'),function(k,v){             objj[k];             var thisItem = $(v);             if(thisItem.attr('href')){                 if(thisItem.attr('href').indexOf('cks.php?') >= 0 && !thisItem.parents('.surf').find('.image2').size()){                     var obj = {                         href     : thisItem.attr('href'),                         jObj    : thisItem.parents('.surf')                     }                     arr.push(obj);                  }             }         });     }     if(!arr.length){         $.each($('a'),function(k,v){             objj[k];             if($(v).attr('href')){                 if(                  ($(v).attr('href').indexOf('/?x=advertisements_view') >= 0 &&                  !$(v).parents('.blocked').size() &&                 !$(v).parents('.item').find('.desc2').size()&&                 !$(v).parents('.item').find('.ads-state-icon-locked').size())||                                 ($(v).attr('href').indexOf('v/index') >= 0 && !$(v).parents('.ptcBoxClicked').size())                 ){                     var obja = ($(v).parents('.item').size())?$(v).parents('.item'):$(v);                     var obj = {                         href     : $(v).attr('href'),                         jObj    : obja                     }                     arr.push(obj);                  }             }         });     }     if(wparent.location.host.indexOf('hitzza')!=-1){         $.each($('.bWrap div'),function(k,v){             objj[k];             var thisItem = $(v);             if(thisItem.attr('onclick')){                 if(thisItem.attr('onclick').toString().indexOf('viewAd') >= 0 ){                     var hitz = thisItem.attr('onclick').toString().match(/\([^]+\)/)[0].replace(/['()]/g,'').split(',')                     var obj = {                         href     : 'earn.php?ad='+hitz[0]+'&u='+hitz[1]+'&sc='+hitz[2],                         jObj    : thisItem                     }                     arr.push(obj);                  }             }         });     }     console.log(arr.length);     console.log(arr);     function rec(ctr){         loading = 0;         if(arr[ctr]){             if(typeof adsWind == 'undefined')                 adsWind = wparent.open(arr[ctr].href,"janbee","width=100,height=50,top=1000,left=20000");             else                     adsWind.location.href = arr[ctr].href;             div.text('clicking : '+clickNum+' / '+ arr.length +' - loading : '+ loading);             if(adsWind == null){                  div.css({background:'#dbf400',border:'2px solid red'}).text('Allow Popup Blocker !!!')             }else{                 $(adsWind).ready(function(){adsWind.resizeTo(600,600)})                 }         }         else{                 var timeReload=120000;             var inters = setInterval(function(){                     timeReload-=1000;                 div.text("reloading :"+timeReload);                 if(timeReload == 0){                     clearInterval(inters)                     window.location.reload()                 }             },1000);adsWind.close()                      }         }     rec(ctr);     wparent.success = function(r){         if(r == 'retry'){             setTimeout(function(){rec(ctr);});         }         else{             arr[ctr].jObj.text('done').css({background: '#000',color:'#FFF'});             ctr++;             clickNum = ctr + 1;                     setTimeout(function(){rec(ctr);});         }              } } if(( wparent.location.href.indexOf('cks.php?k=') != -1|| wparent.location.href.indexOf('view.php?') != -1|| wparent.location.href.indexOf('v/index.php') != -1|| wparent.location.href.indexOf('earn.php') != -1|| wparent.location.href.indexOf('x=advertisements_view') != -1|| wparent.location.href.indexOf('gridview.php?') != -1) && self == top){     var div = $('<div>');     var ajaxCall = false;     div.css({font:'bold 8px arial',zIndex:1000000,textAlign:'center',padding:5,position:'fixed',width:60,height:10,background:'#90d2f0',border:'2px solid blue',top:1,left:1})         .text('');     $('html').css({position:'relative'}).append(div);     var iframeLoad = 50;     var intersAds = setInterval(function(){         iframeLoad--;         div.text('tmout '+iframeLoad)         if(iframeLoad == 0){             clearInterval(intersAds);             wparent.opener.success('fail');         }         if(iframeLoad == 20){             $('iframe:last').attr('src','http://google.com');         }     },1000)     setInterval(function(){window.active = true;window.checkfocus = function() {} },100);     var timers = '';     $('iframe:last').load(function(){         clearInterval(intersAds);                  timers = wparent.wait;          if(typeof timers == 'undefined' || isNaN(timers)){timers = wparent.c/10;}         if(typeof timers == 'undefined' || isNaN(timers)){timers = wparent.timer;}         if(wparent.location.host.indexOf('buxoverflow')!=-1)timers = Math.round(100 / $('script').text().match(/ctr\+[^;]+/)[0].replace('ctr+','').replace(';','') )                  var inters = setInterval(function(){             if(wparent.location.host.indexOf('probux')!=-1)timers = wparent.cnt--;             if(wparent.location.host.indexOf('hitzza')!=-1)timers = wparent.counter;             div.text('lding: '+ (timers--) +'%')             if(timers == 90 && ajaxCall){                 clearInterval(inters);                 $('iframe:last').remove()                 setTimeout(function(){                     wparent.opener.success('');                 },1000)             }             if(timers <= 0 && wparent.location.host.indexOf('hitzza')!=-1){                 window.didclick = 0;                 wparent.alert = function(){return false}                 $('.btn-success').trigger('click')             }             if(timers == -10 ){                 $('iframe:last').remove()                 setTimeout(function(){                     wparent.opener.success('');                 },1000)             }         },1000);     })     jQuery.ajaxSetup({         beforeSend: function(){             ajaxCall = true         },         complete:function(a,b){             console.log(a)             console.log(b)             if(a.statusText.toLowerCase() == 'ok'){                 $('iframe:last').remove();                              }else{                              }         }     }) }  if(wparent.location.href.indexOf('progrid.php') != -1){     var div = $('<div>');     var arr = [],ctr = 0;     var clickNum = ctr + 1 ;     var loading = 0;     div.css({zIndex:1000000,textAlign:'center',padding:5,position:'fixed',width:70,height:20,background:'#90d2f0',border:'2px solid blue',bottom:1,right:1})         .text('');     $('html').css({position:'relative'}).append(div);     var myChances = $('#myChances').text()                    for(i=0;i<myChances;i++){         var lft = Math.floor((Math.random()*30))+1;         var rgt = Math.floor((Math.random()*20))+1;         var obj = {             href     : 'gridview.php?x='+lft+'&y='+rgt         }         arr.push(obj);      }     console.log(arr.length);     console.log(arr);     function rec(ctr){         loading = 0;         if(arr[ctr]){             if(typeof adsWind == 'undefined')                 adsWind = wparent.open(arr[ctr].href,"janbee","width=100,height=50,top=1000,left=20000");             else                     adsWind.location.href = arr[ctr].href;             $(adsWind).ready(function(){adsWind.resizeTo(600,600)})                 div.text('clk : '+clickNum+' / '+ arr.length);         }         else{                 var timeReload=120000;             var inters = setInterval(function(){                     timeReload-=1000;                 div.text("reloading :"+timeReload);                 if(timeReload == 0){                     clearInterval(inters)                     window.location.reload()                 }             },1000);adsWind.close()                      }         }     rec(ctr);     wparent.success = function(r){         if(r == 'retry'){             setTimeout(function(){rec(ctr);});         }         else{             ctr++;             clickNum = ctr + 1;                     setTimeout(function(){rec(ctr);});         }              } }
     

    Vegter

    Member
    Jul 20, 2013
    273
    14
    0
    probux ban.. account 1k suspend karala ban "you can't use anything that automates tasks or clicks advertisements for you, including, but not limited to any software, plugin, script or autoclicker."

    Create new account set just for doing those