Jump to content
UBot Underground

UBotBuddy

ADMIN
  • Content Count

    3450
  • Joined

  • Last visited

  • Days Won

    68

Everything posted by UBotBuddy

  1. Sorry everyone! My auto-renewal did not work for some reason. It should be up soon. Sorry for the trouble. I may be slow at responding as I have a severe ear infection so I am literally laying down on my side until the meds can do their job.
  2. Sorry everyone! My auto-renewal did not work for some reason. It should be up soon. Sorry for the trouble. I may be slow at responding as I have a severe ear infection so I am literally laying down on my side until the meds can do their job.
  3. Good luck with this. I have found that people like consistency with training ... something that all of the free training links lack. Buddy
  4. Yep! Just depends on what size of gun you want to bring to a knife fight. lol
  5. Well...I got to looking and I figured out another regex expression as well as using the "$find regular expression" node. So check it out. This technique looks for what to keep vs. looking at what to eliminate. set(#urls, "siite0.com siite0s.com 564-site.aol google.com site-2.com site-three.com siiste0.com 564-site.aol kdh.com site-22.com site-three.com 1siTe.com abc.com ab2c.com a1a.com a1a-az.com abc.com/33 asfdadfs.com afaf43asv.com 12a.com 123.com afdr.com rty.com/67 ", "Global") alert(#urls) clear list(%new_urls) add list to list(%new_urls, $list from text($find regular expression(#url
  6. Ignore the length of this bots code. My point with this bot was to show an example of using the Delimiter of the line feed combined with Regex to build three different Lists from the original list of Test Data. clear list(%items1) clear list(%items2) clear list(%items3) add list to list(%MainList, $list from text("field1:field2:field3 fielda1:fielda2:fielda3 fieldb1:fieldb2:fieldb3 fieldc1:fieldc2:fieldc3", " "), "Delete", "Global") loop($list total(%MainList)) { set(#var, $next list item(%MainList), "Global") add item to list(%items1, $replace regular expression(#var, "(.\{1,\}).\{1
  7. Hi Vendeta30, Here is yet another version: add list to list(%list1, $list from text("Item 1 Item 3 Item 5 Item 7 Item 9", " "), "Delete", "Global") add list to list(%list2, $list from text("Item 2 Item 4 Item 6 Item 8 Item 10", " "), "Delete", "Global") set(#var, "{%list1} {%list2}", "Global") add list to list(%list3, $list from text(#var, " "), "Delete", "Global") clear list(%list1) clear list(%list2) set(#var, $nothing, "Global") The great thing about UBot is there are so many ways to do different functions. Good Luck! Buddy
  8. I cannot tell you what to do. Due to my agreement in here I cannot tell you what is happening. Just know that things are happening in here and no one is being ignored. You won't be going another year Seth is hard at it. Trust me.
  9. This is an example of my code that use. set(#FileStamping, $replace($replace($replace($date, " ", "_"), ":", $nothing), "/", $nothing), "Global") rename file("{$special folder("Application")}\\MasterFile.txt", "MasterFile-{#FileStamping}.txt") save to file("{$special folder("Application")}\\MasterFile.txt", %mylist) Good luck! Buddy
  10. Geee!!! I was never notified that anyone responded. Anyway, I did find a solution and I tweaked it even more. So here is my newest version. I will check out what you guys posted later this evening. set(#OldDate, $trim($substring($PriorDays(30), 0, 10)), "Global") define $PriorDays(#Days) { set(#var, $eval("var x1 = new Date(), x2 = x1.getDate(), MyX = new Date(x1.setDate(x2-{#Days})); MyX;"), "Local") return(#var) }
  11. I actually use Note Tab Pro. In one file alone I can have many sub-text areas much like a library. More flexible that Notetab++ but it does cost a few bucks. Buddy
  12. Okay you JavaScript pros. Not me by any stretch! Why does my variable Yesterday not work? set(#Today, $eval("var d = new Date(); var n = d.toString(); n;"), "Global") set(#Yesterday, $eval("var d = new Date(); var e = new Date().setDate(d.getDate()-1); var n = e.toString(); n;"), "Global") OBVIOUSLY I am missing something. LOL
  13. Nice solution guys! I can actually use this today! Buddy
  14. Hi D'Mitry! If you could be more specific that would help me. There are a lot of "values" associated with objects. They may be called different names but if I could see what you are attempting to extract I can be MORE helpful with an example. Thanks! And welcome to UBot and the forum! Buddy
  15. Hey Kev, http://screencast.com/t/eSe5iv3PqTs I believe I encountered an error. I have been running my bot for a while now but after I updated this was the first failure. I am gearing back down to version 1.3 Thanks. Buddy
  16. Great write up @HelloInsomnia +1 to you. I am becoming a bigger and bigger fan of the Large Table and Large List function. Buddy
  17. I'll probably use my existing UBot Table code and then use "Ubot Table to Large Table". Thanks for the response. Buddy
  18. Kev I am loving your plugin here. But a question, I have a large table loaded but when I try to add a new row it flips an error on me telling me that I have exceeded the range. So how can I increase the size? Thanks! BUddy
×
×
  • Create New...