Jump to content
UBot Underground

mk21

Fellow UBotter
  • Content Count

    64
  • Joined

  • Last visited

Community Reputation

1 Neutral

About mk21

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    More Than 9Gb
  • Framework
    v3.5 & v4.0
  • License
    Developer Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Ok I think I got it done. If anyone wants help with this, here's a link to another topic addressing this. My issue was that I wasn't running it out of a define. Once I did that, all the local variables and lists cooperated. http://www.ubotstudio.com/forum/index.php?/topic/13847-local-lists-multi-threading/
  2. Ok, that last try didn't seem to work for me either. Here's where I'm at right now and what it's doing: ui drop down("Threads", "1,2,3,4,5,6,7,8,9,10", #Threads) add list to list(%events, $list from text("http://www.stubhub.com/katy-perry-tickets/katy-perry-raleigh-pnc-arena-22-6-2014-4450701/,http://www.stubhub.com/katy-perry-tickets/katy-perry-washington-verizon-center-washington-dc-24-6-2014-4450702/,http://www.stubhub.com/katy-perry-tickets/katy-perry-nashville-bridgestone-arena-27-6-2014-4450703/,http://www.stubhub.com/katy-perry-tickets/katy-perry-brooklyn-barclays-center-24-7-2014-44
  3. @blumi40. I tried your script, but it didn't seem to work either. It would only fill in one of the table rows. Could some try to run my script? It takes just a couple minutes to run, and you can see what I'm seeing. I'm starting to think maybe you can't scrape data in thread mode because any data that is scraped is being copied into the table as all the same, even though the numbers should be different from each url. Is scraping different data in different threads possible?
  4. I've pasted my code below. It appears to be doing exactly what I ask. I get a table with 5 rows and 7 columns of data as a result. However, the data isn't correct. Can anyone tell me what I'm doing wrong? clear list(%events) add list to list(%events, $list from text("http://www.stubhub.com/katy-perry-tickets/katy-perry-raleigh-pnc-arena-22-6-2014-4450701/,http://www.stubhub.com/katy-perry-tickets/katy-perry-washington-verizon-center-washington-dc-24-6-2014-4450702/,http://www.stubhub.com/katy-perry-tickets/katy-perry-nashville-bridgestone-arena-27-6-2014-4450703/,http://www.stubhub.com/k
  5. Just to update on my situation, I have resolved the problem. It seems to have been an issue with either a missing or misplaced quotation mark. The documentation on the plugin says to use the CMD with "shell hidden", but for some reason it didn't seem to work. It would return "file not found". My only guess is because it wasn't just running a .exe, it was running a command line .exe which require more input to tell the program what to do in the command line. For whatever reason, this required that I used "shell batch hidden" instead of "shell hidden" to run the .exe. So the problem appear
  6. Yeah that works fine for me too. It's the shell batch hidden command that doesn't seem to be running the CMD.
  7. Has this just all of a sudden stopped working for anyone else? The ubot native shell still works, but this plugin doesn't seem to anymore all of a sudden. Delete file permanently still works, but I was using shell batch hidden with no problems, and now it's not working at all. I can get by with shell, but with shell batch hidden, I wasn't getting the cmd popup, which was much nicer for selling the bot. Can anyone help me out as to why this might have happened?
  8. Are you saying most email providers block multiple attached files via smtp? I am using gmail. Is this the case with their service?
  9. I have no problem sending a single .pdf file, but I'm not sure how to send multiple .pdf files in one email. Is this possible? If so, how? Thanks.
  10. The problem is occurring when I convert the pdf to txt and try to rename the pdf. For some reason, I can rename the txt file I just created, but not the pdf I created it from. Does anyone have any help they can offer to unlock the original pdf file?
  11. Set a variable to 0 Do a loop of each list item Set a variable as the substring of the the list item corresponding to the original variable. Starting position will be find index of /. Number of characters will be find index of " minus find index of /. Add that variable to the list. Remove position 0 from the list This should give you the list the way you want it
  12. A couple other ways would be to do the $substring of the variable using $find index to find your start point and $text length minus $find index to cut off the first portion. Then do another $substring from 0 to $find index of the last character in the string you need. Another solution would be to load the variable as html and run $page scrape that way.
  13. I'm sure this is easy and I just can't find an answer, but is there a way to verify a computer's ID? My idea is to check the computer's ID against my database with the allowed computer IDs to verify that a computer is authorized to run the bot. Is this possible? Are there any concerns with doing this?
×
×
  • Create New...