Jump to content
UBot Underground

MarketSeed

Fellow UBotter
  • Content Count

    21
  • Joined

  • Last visited

Posts posted by MarketSeed

  1. Was still using version 5.9.55 and was basically unable to create scripts anymore because it was running so terribly. Decided to go ahead and update to the latest version but when i paid for the updates. I was redirected to the site from paypal and given a download link to install. I installed the software and when loading it up,  it said that my license was not able to run this version. Logged into website and nothing reflects the fact that I just purchased and upgrade subscription. Went to go submit a support ticket (as requested by 800 number I tried calling first) and the support ticket system css and system in general is broken and wont let me submit a ticket!!! Can an admin or someone please message me here to start the refund process? No way am I going to put more money into a project as broken as this seems to be. I realize it's late so I'll give until 5/31 @ noon before I issue a charge back with my bank. Completely disappointing...

  2. I'm not sure if this is possible but what I would like to do allow captcha sniper to try and solve a captcha 3 times then, if the captcha isn't solved correctly, prompt the user to solve the captcha. I have the scripting needed to do the correct number of checks but I'm stuck on prompting the user to solve the captcha manually after.

     

    I tried 'Prompt' but it does not accept html so no images can be displayed in the 'prompt' dialogue box. Is there a way to accomplish this without having to run the list again with all captcha solving services unchecked (forcing the manual captcha prompt)?

  3. I found the UBot script posted here by LoWrIdErTJ:

     

    http://ubotstudio.com/forum/index.php?/topic/8646-winnercontest-win-a-spinnerchief-elite-account/page__hl__spinnerchief__st__20

     

    I signed up for both a api developer account to get my api key and a spinnerchief account to get my login credentials and I'm still getting a login error. I copy/pasted my credentials as well as my api key as well as removed special chars from my password and both times still received the error. I posted a help request on spinnerchief's forum but they referred me back to here. Have any of you been able to successfully implement the spinnerchief api into your bot?

  4. I had a similar issue with clicking links in Fantastico. I've found putting a 'wait finish' after your 'wait for' will help guarantee that the page has finished loading. You can also use a delay to accomplish the same task but remember that the delay may or may not work depending on the current internet connection speed of the system you are running your bot on (which may fluctuate as well). This method slowed down my bot a little bit but its worth it to keep my bot from jumping the gun. Hope that helps.

  5. Hi guys,

     

    Well, I'm actually quite the noob and I'm stuck on selecting an option in a dropdown. I'm trying to automate the task of creating accounts on my server through WHM but when i try to select one of my predefined packages it doesn't work correctly.

     

     

    The form looks like:

    <form onsubmit="checkacctform();" name="mainform" action="/scripts5/wwwacct">
    <input type="hidden" value="" name="sign">
    <input type="hidden" name="plan" value="testing_tiny">
    <div id="domain_information" class="form_action">
    <input id="dbuser" type="hidden" value="" name="dbuser">
    <div id="package_div" class="form_action">
    <fieldset>
    <h3>Package</h3>
    <ul>
    <li>
    <div class="fields">
    <label class="fixed" for="pkgselect">Choose a Package</label>
    <select id="pkgselect" class="" style="width:150px;" name="msel" onchange="updateform(document.mainform.msel.options[document.mainform.msel.selectedIndex].value)">
    <option value="n,y,unlimited,y,unlimited,unlimited,unlimited,unlimited,unlimited,unlimited,unlimited,y,0,0">---</option>
    <option class="creatable" autocomplete="off" autofill="off" value="n,y,1024,n,x3,unlimited,unlimited,unlimited,unlimited,unlimited,2048,n,0,0,default,en,testing_community">testing_community</option>
    <option class="creatable" autocomplete="off" autofill="off" value="n,y,500,n,x3,unlimited,unlimited,unlimited,unlimited,unlimited,2048,n,99,99,default,en,testing_default">testing_default</option>
    <option class="creatable" autocomplete="off" autofill="off" value="n,y,200,n,x3,unlimited,unlimited,unlimited,unlimited,unlimited,1024,n,0,0,default,en,testing_tiny">testing_tiny</option>
    <option class="creatable" autocomplete="off" autofill="off" value="n ,y,15000,y,x3,10,100,100,10,100,10000,n,100,100,default,english,Reseller Example">Reseller Example</option>
    <option class="creatable" autocomplete="off" autofill="off" value="n,y,1,n,x3,1,1,1,1,1,1000,n,0,0,default,en,Reseller setup">Reseller setup</option>
    </select>
    

     

    and when I try to select from the dropdown, I'm presented with

     

    n,y,unlimited,y,unlimited,unlimited,unlimited,unlimited,unlimited,unlimited,unlimited,y,0,0
    n,y,1024,n,x3,unlimited,unlimited,unlimited,unlimited,unlimited,2048,n,0,0,default,en,testing_community
    n,y,500,n,x3,unlimited,unlimited,unlimited,unlimited,unlimited,2048,n,99,99,default,en,testing_default
    (etc etc)
    

     

    Is it possible to select from this dropdown if I only wanted to define the package name (ex. testing_community)?

     

    I tried the "change chosen attribute" and "send key field chosen" commands and even though they change the field visually, the account is created with the "default" package setup instead of the defined one.

     

    I selected and changed the value of the hidden field:

     

    <input type="hidden" name="plan" value="testing_tiny">

     

    and again it changed the field visually but the account was still created with the "default" package.

     

    I'm assuming it has something to do with this updateform function...

     

     

    function updateform(nfo) {
       var selectEl = document.mainform.msel;
       selectEl.className = selectEl.options[selectEl.selectedIndex].className;
       cpsets = nfo.split(",");
       // ip,cgi,quota,frontpage,cp,maxftp,maxsql,maxpop,maxlst,maxsub,plan,maxpark,maxaddon
       
       if (document.mainform.ip) {
           if (cpsets[0] == "n") {
               document.mainform.ip.checked = false;
           } else {
               document.mainform.ip.checked = true;
           }
           showDiv('ipselect','ipchkbox');
       }
    
       if (cpsets[1] == "n") {
           document.mainform.cgi.checked = false;
       } else {
           document.mainform.cgi.checked = true;
       }
       
       if (cpsets[3] == "n") {
           document.mainform.frontpage.checked = false;
       } else {
           document.mainform.frontpage.checked = true;
       }
       
       if (document.mainform.quota) {
           document.mainform.quota.value = cpsets[2];
       }
       if (document.mainform.maxftp) {
           document.mainform.maxftp.value = cpsets[5];
       }
       if (document.mainform.maxsql) {
           document.mainform.maxsql.value = cpsets[6];
       }
       if (document.mainform.maxpop) {
           document.mainform.maxpop.value = cpsets[7];
       }
       if (document.mainform.maxlst) {
           document.mainform.maxlst.value = cpsets[8];
       }
       if (document.mainform.maxsub) {
           document.mainform.maxsub.value = cpsets[9];
       }
       if (document.mainform.bwlimit) {
           document.mainform.bwlimit.value = cpsets[10];
       }
       if (document.mainform.hasshell) {
           if (cpsets[11] == "n") {
               document.mainform.hasshell.checked = false;
           } else {
               document.mainform.hasshell.checked = true;
           }
       }
       if (document.mainform.cpmod) { 
           for (var i = 0; i < document.mainform.cpmod.options.length; i++) {
               if (document.mainform.cpmod.options[i].value == cpsets[4]) {
                   document.mainform.cpmod.selectedIndex=i;
               }
           }
       }
           document.mainform.plan.value = cpsets[cpsets.length-1];
    
       if (document.mainform.maxpark) {
           if (cpsets[12]) {
               document.mainform.maxpark.value = cpsets[12];
           } else {
               document.mainform.maxpark.value = 0;
           }
       }
       if (document.mainform.maxaddon) {
           if (cpsets[13]) {
               document.mainform.maxaddon.value = cpsets[13];
           } else {
               document.mainform.maxaddon.value = 0;
           }
       }
       if (document.mainform.featurelist) { 
           for (var i = 0; i < document.mainform.featurelist.options.length; i++) {
               if (document.mainform.featurelist.options[i].value == cpsets[14]) {
                   document.mainform.featurelist.selectedIndex=i;
               }
           }
       }
       if (document.mainform.language) { 
           for (var i = 0; i < document.mainform.language.options.length; i++) {
               if (document.mainform.language.options[i].value == cpsets[15]) {
                   document.mainform.language.selectedIndex=i;
               }
           }
       }
    }
    

     

    but I have no idea how to go about fixing this issue. Has anyone dealt with this situation or a similar one? At this point, I'm kinda lost.

  6. Hi TJ,

     

    Welcome back! I have a quick question: Can the ui be brandable? For instance, can we have the ability to style the colors and/or add our logo to the prompt that will pop up to ask for the users receipt # (or the one that prompts them to upgrade)? Not absolutely necessary but I think it would really help polish up the product. If not, please PLEASE leave it black and white. I've seen other bot-securing solutions that seem to have a more 'colorful' prompt which I think makes things a bit of an eyesore. Either way, as soon as you release this I'm in. If you need testers, let me know. I have a bot that we are only going to license internally so I could provide a controlled test environment if necessary. Lol...I'm so excited I can hardly wait :lol:

×
×
  • Create New...