Jump to content
UBot Underground

VaultBoss

Fellow UBotter
  • Content Count

    790
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by VaultBoss

  1. Add me to the group too, please - Skype ID: [edited for privacy] Thanks!
  2. VaultBoss

    Add to list

    Nice method Buddy (I admit I had to load it into UBS to 'see' what/how it works) You used the EOL separator which wasn't clear to me from the code in the beginning (MY bad, not yours, lol) If you'd been using $new line instead I would have understood it from the beginning, I suppose... Didn't know you can use that ENTER that way... a clear proof we all have to learn all the time. Thanks, mate!
  3. No problems, mate... glad you solved your issue in any way you could do it. On the other hand, my solution up there is - hands down - THE simplest, cleanest and most beautiful of all loop-ing methods; but not because it's mine... ...simply because it really condenses code quite a lot, while still providing for the ability to employ other means to split command flow by forcing the cycling index down to 0 inside a branch of an IF, in order to exit the loop before it would normally end, IF/WHEN a certain condition is met (usually you found your item you were seeking...) thus also speeding the
  4. Because you are using $next list item, you might exceed the index, as the function not only returns the item, but also moves the pointer on the list at the same time - so when you get to the last item in the list, the code tries in fact to move forward but there is no place to move. I rarely use $next list item, because of that... hard to keep the score: "Where am I now?" kinda... I use clear cycling instead, where the list item is returned via $list item function and the index is cycled between (MAX list length - 1) and 0, decrementing on each loop, using LOOP WHILE. Hope this makes s
  5. Probably you need to CLEAR LIST before using it. I am assuming you are testing it and see it works, using the DEBUGGER and clearing all variables between sessions, but when ported into the actual code, if the code repeats itself somehow (inside a loop or something) your list indexes are overflown... just a guess.
  6. Load the data from file into a table. Then select the table row with a random value and extract each cell from the row to a separate variable (user and password) but with the same previous randomly generated index.
  7. Use a smaller range, like 1-10 secs to test it and see what happens. It is hard to repeat the test and wait like 200+ secs each time... But with a smaller range you will speed up the process and still be able to make the difference when it chooses say... 1-3 secs vs. 7-9 or so.
  8. It is not possible with UBS to have variables that change their names dynamically, as you envision here... unfortunately. All you can do is eventually have some table (that you can load from a .csv file) where you define a column with an index and another column with variable name. Then you can loop through the table, checking the index (numeric) and extracting the variable to be used from the second column. This is not exactly what you want though, but you could try to make it work for you that way... Hope this helps you... Cheers!
  9. You cannot have dynamically named variables in UBot Studio (basically THAT is what you would need to make your idea work). So NO, it is not possible! Sorry...
  10. This works for me here (tested): ui stat monitor("Generated Value", #WaitRND) ui text box("Wait Min", #WaitMIN) ui text box("Wait Max", #WaitMAX) set(#WaitRND, $rand(#WaitMIN, #WaitMAX), "Global") wait(#WaitRND)
  11. What is the DEBUGGER showing as the values for the two variables read from the UI?
  12. Thanks, Blumi! Which version? I am looking for something free if possible. This seems to have a crippled free server version, indeed, but I'm not sure if it is powerful enough. What version are you using now?
  13. Great suggestions. Any alternative to BaseCamp, maybe something free, too? Any similar tool to BaseCamp, but with software development as the main focus?
  14. I am looking for advice on TOOLS to use in a collaborative project. I don't mind getting JV proposals, either, but that is not the scope of this thread.
  15. I've already got a suggestion for an open source software: http://trac.edgewall.org/ ...but I have no experience to share with it yet. If any of you have used it and care to chime in, or eventually if you did but switched to something else (and care to tell us why) it would be great...
  16. This thread is dedicated to ideas, suggestions and usage tips/tricks for collaborative work related to software coding and team management (as well as time management) for more than one single coder. So, assuming you guys would want to collaborate with somebody else in a UBot coding project, what is your preferred tool (and especially WHY? = pro/cons arguments) Hope to get some good suggestions here, as I am planning on starting such a project and as long as I have been a 'lone wolf' until now, I would really appreciate the feedback. Thanks!
  17. TIP: Beware of the fact that .csv LITERALLY means 'comma-separated values' so you will need to make sure your 500 words article (which will have various punctuation signs, including COMMA) will be 'insulated' so to speak, by surrounding the text with quotation marks.
  18. You can't $eval a string (text) expression, it needs to be math between numerals. You'll have to extract the separate values... Or even easier, navigate to Google, paste it there a a search string and scrape the result: http://www.google.com/search?q=4+-+2+%3D
  19. Recently, I had to implement email related commands into one of my bots, to check a Gmail account for certain emails and after that delete the emails. I started with POP3 settings, which worked great and fast, but I wasn't able to delete the emails, only to read them. TIP: After finding and using another solution (IMAP) to achieve the said results, a fellow UBot Forum member (entroqy) hinted at a Gmail account setting that might have helped, if I were aware of it prior to my attempt, that is making sure I allow POP3 to delete emails in my GMAIL Settings Page. Some other webmail services
×
×
  • Create New...