Jump to content
UBot Underground

Praney Behl

Fellow UBotter
  • Content Count

    2328
  • Joined

  • Last visited

  • Days Won

    94

Everything posted by Praney Behl

  1. Don't think you operate skype using Ubot 4.x but open/start it using shell command. Most whatever you can do using the windows run command you can do with the shell command. Hope it helps. Praney
  2. In Detail : http://www.youtube.com/watch?v=k0xgjUhEG3U
  3. Here is what a sheldon coopers friendship algorithm is: http://rockx.us/wp-content/uploads/2010/01/cb55_full_view.jpg Enjoy
  4. Not sure what you exactly want to ask, but theoretically Yes.
  5. Heads up on using UI HTML with more no. of variables or data. UI HTML is a big joke, on how it saves the stacks of variable changes in the memory and finally gets the bot to crash. It triggers onchange event every second and somehow adds new changes to memory. So the bigger and more no. of variable in your UI HTML Windows, the lesser stable your bot will be.
  6. I think I did some batch files but they were to delete unwanted UbotBrowser instances. But you may be right. Good luck finding them using Forum search.
  7. Good effort, but I normally just use the replace command found in most text editors.
  8. I know what you are referencing to. I have been in your shoes many times. Unfortunately that is how Ubot works. You can run a thread to in your bot and clear that cache every X no. of secs. I had it built in my Bot Wiki Master Blaster as well that is referenced in the above post. Hope it helps. Praney
  9. You can possibly do it using JavaScript. Here is a sample function: setCookie(name, value, expires, path, domain, secure) var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path=" + path : "") +((domain) ? "; domain=" + domain : "") + ((secure) ? "; secure" : "") // Actually placing the cookie document.cookie = curCookie Combined: function setCookie(name, value, expires, path, domain, secure) { var curCookie = name + "=" + escape(value) + ((expires) ? "; expires=" + expires.toGMTString() : "") + ((path) ? "; path="
  10. Yes (?<=Replaced\ ).* would work
  11. Well in that case the forum member owe some members loads of thanks...
  12. I think I did it for Version 3.x, and Ubot 4.x does have a solution for it.
  13. Yes it is a bug, there are many small bugs like this.
  14. Hey Tony, Thanks for taking the time to create the tutorial for this. I just took the survey, and would be waiting to hear some about this soon from you. Good luck mate. Praney
  15. This is what you need: set table cell(&mylist, 1, 1, "\{ENTER\}") Hope it helps Praney
  16. Scrape them, Save them to a variable/list, and dump them on your status bar. You need to go through some tutorials : http://www.ubotstudio.com/tutorials.aspx
  17. Hmm good question.... aaahhh! Don't Know
  18. Are you by any chance using a Chinese Proxy?
  19. Here: add list to list(%website, $scrape attribute(<itemprop="url">, "Delete", "Global")
  20. Google is going Coo-Koo!
  21. Leon, Java and Javascript are very different from each other, but is a common misconception. Ubot has an internal browser and don't think it loads Java.
×
×
  • Create New...