Jump to content
UBot Underground

korneld

Fellow UBotter
  • Content Count

    5
  • Joined

  • Last visited

Community Reputation

0 Neutral

About korneld

  • Rank
    Newbie

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    4Gb
  • Framework
    v3.5
  • License
    Developer Edition

Recent Profile Visitors

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

  1. Hi. I built me a bot that scrapes the yellow pages. Everything is done and it works fine for the most part except for this: when a business doesn't have a phone number listed for instance, ubot just skips to the next one. Now my rows a different lenghts and the data is miss-matched. I'm using '$scrape attribute' to grab thing, then adding the results to a list which in turn get added to a column in a table. Is there a way to make ubot add a blank in such case?
  2. I need to make the Run/Pause/Stop bar disappear from the compiled version of my bot. I have successfully used Resource Hacker to change the icons and I was told that this was the tool to deal with the bar as well, but I'm stomped. When I open my exe in Reshacker, I see 4 folders. 'Icon', 'Icon Group', 'Version Info' and '24'. There isn't much in these directories either. I was hoping for some kind of a source code file where I was going to be able to just comment it out. Thanks for your help in advance.
  3. Actually, I am using this to abort a long script if I change my mind. Scraping for instance can take a long time, so this is a nice option. I did figure it out, here is a sample script: set(#test, 10, "Global") if(#test = 10) { then { alert("zero") } else { alert("one") } } Instead of the alert, you can add the stop script command. The problem I had with the if statement was that I couldn't figure out what the syntax was for the condition was. I thought I read somewhere on here that you had to use curly brackets (goes like this {#test}) otherwise the variabl
  4. I got a custom command set up that does a lot of things. It'd be great to have the option to be able stop/pause that too. Is there a way to do that?
  5. I'm trying to execute some JavaScript code using the 'run javascript' command. I just plugged in 'alert("something");', but when I run the node nothing is happening. What am I missing here?
×
×
  • Create New...