Jump to content
UBot Underground

Praney Behl

Fellow UBotter
  • Content Count

    2328
  • Joined

  • Last visited

  • Days Won

    94

Everything posted by Praney Behl

  1. You can find mine in my signature. Affiliate program through jvZoo.com
  2. My hats off to the new improvements in the new Version 2, I see almost all my improvement requests have been considered. Thank you! I love the hit enter to navigate in the launch panel now. Makes things faster, as I am too lazy to use mouse and would rather do things using keyboard. Love the way it now scrapes all forms elements on the page now and categorises them separately. Also you can now click on an element in the browser and it highlights the correct id or name attribute. AND, the WordPress licensing feature is great alone worth more than the cost of the update. I would like to
  3. I am still due to update my canons for the new penguin update.
  4. I can second that for sure. Unless something is wrong Andy responds pretty instantly. A-1 guy to do business with.
  5. Hah! For that price I can go jv Andy, I can build some mods and we'll be RIiICH!
  6. Create a support ticket at http://support.ubotstudio.com
  7. You mean something like this: These are screeshots from G-Webmasterstools http://img820.imageshack.us/img820/4010/webmastertoolssearchque.png http://img834.imageshack.us/img834/1500/stoolsss.png I have been doing such things for a while, but the costs are pretty high, my clients are from the hollywood.
  8. Thanks mate, will wait for it. Any ETA on this as without the command removing Run, Pause,Stop button is not really gonna work.
  9. Thanks mate, I am waiting for your reply.
  10. This would only pause the operation but to start it from exactly where it was paused there needs to be a hook for the run command. Pretty much like if I remember correctly there was a command in V 3.x called "start script" Ubot Devs. please answer this.
  11. Guys, I am soon gone take down the software from sales as the Version 2 is on the cards with starting price $67. So if you like you can grab your hands on it now.
  12. WOW that is some effort. Here is an easier alternative to shuffle a list if you like: http://www.ubotstudio.com/forum/index.php?/topic/10985-get-shuffle-list/ Hope it helps. Praney
  13. Guys been a while I shared some little code snippet. So here is a custum built shuffle list function that takes a list as input and return the shuffled list back to a variable or a list. [sHUFFLE LIST] Function: define $shuffle list(#your_list_goes_here) { clear list(%list_to_shuffle) clear list(%list_shuffled) add list to list(%list_to_shuffle, $list from text(#your_list_goes_here, $new line), "Delete", "Global") set(#list_total, $list total(%list_to_shuffle), "Global") set(#temp, $list total(%list_to_shuffle), "Global") loop(#list_total) { set(#random_list_item
  14. My bad, post edited, I was actually looking at tutorials of Jane's other product. This one is dead straight don't think you even need any tutorials. She's already included ubot source sample files.
  15. I just wanted to drop by and say thanks to Jane for the FTP add-on for Ubot Studio a much needed app. I have got Jane's Ubot FTP Buddy, and I can vouch for the quality of little add-on. Its works great with no hiccups. Just read the manual and/or tutorials. Jane is also excellent when it comes to providing support. A great value for what it can get Ubot to do. A MUST BUY! Cheers! Praney
  16. Also if you prefer using the shell command you can use the following command: cat file.txt | pbcopy && echo "Text to prepend" > file.txt && pbpaste >> file.txt
  17. Ok after a few splashes of Water on my eyes, I now see the problem. I added the prong variable. Here: Prepend to file(Corrected) define $prepend to list(#Filename, #Text To Prepend To List) { set(#list, $read file(#Filename), "Local") save to file(#Filename, "{#Text To Prepend To List} {#List}") } define $prepend to list(#Filename, #Text To Prepend To List) { save to file(#Filename, "{#Text To Prepend To List} {$read file(#Filename)}") }
  18. Hmm... it was 4:30 am when I posted this, Strange let me see what I stuff up, checking now.
  19. Ok here is a shorter version for it: Append to File: define $append to list(#Filename, #Text To Append To List) { save to file(#Filename, "{$read file(#Filename)} {#Text To Append To List}") } Prepend to file: define $prepend to list(#Filename, #Text To Prepend To List) { save to file(#Filename, "{#Text To Append To List} {$read file(#Filename)}") } Cheers!
  20. Hi fellows, I requested this feature many moons ago here : http://www.ubotstudio.com/forum/index.php?/topic/9325-must-have-append-and-prepend-to-file/page__view__findpost__p__47674 But as it is not so hard to accomplish and the Ubot Dev. team is busy I thought I'll build a custom work around till they could implement it. Alright here we go: Append to File: define $append to list(#Filename, #Text To Append To List) { set(#list, $read file(#Filename), "Local") save to file(#Filename, "{#list} {#Text To Append To List}") } Prepend to file define $prepend to list(#Filename,
×
×
  • Create New...