Jump to content
UBot Underground

Anonym

Fellow UBotter
  • Content Count

    542
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Anonym

  1. Kreatus, in the 2nd add to list you pick the list item from pos 3. Why 3?
  2. Perfect result! The more I learn, the more I realize that I don't know (yet). Great, now I just need to find out why my calls to JavaScript ulib doesn't work. Any idea? Thanks!
  3. C'mon dude, it's $23. (well, unless you buy the dev version, but I guess you won't if you are on a tight budget)
  4. Since my text is a textfile like any "normal" textflow, not comma separated, I was thinking that I perhaps should read the textfile into a normal variable and then encode the existing commas in the textflow into another character + replace all the spaces in the text flow with commas. That way I should be able to import the textflow into e.g. a list (Is it correct that the comma is what separates the items in a list when imported? Ok, there is a setting on the delimuter, but that is something that is defined inside the Ubot Studio, what happens when the bot is compiled and runs on its own?).
  5. Sorry, forgot to attach the file. textfile-1.txt
  6. Hi and thank you for your prompts answers. I have attached my textfile + I added some additional info of what I am trying to do, pls see attachment. (and yes, I am aware of that they are zero indexed, like an offset address)
  7. Still trying to learn this, beware! me = noob I have spent the last three days or so trying to figure out how to get a textfile with a text into a table (the first column of a table). I am stuck! This is how I have thought about it. 1) Read the file into a list, so that every work occupies one item in the list. I never got it to work. All the contents of the textfile went into the first list item of the list. I am looking for some parsing functionality that can recognize some delimiter that I can use to put the words into the list as separate items (the space between the words could be
  8. When using external scripts, the UI stat monitor, if set in such an external script that gets included into the main script, is not visible. This is a bit odd as they are part of the script they get included to, like an assembly language macro. Is there another way to show the contents of a variable in a script that gets included into the main script?
  9. Oh, great! Thanks! Hmmm... So a script "can't" take parameters? (it appears meaningless, so I guess it's just a flaw in Ubot Studio to allow it, or?)
  10. Is it possible to pre-populate the UI List Box with data from a file so that the UI List Box gets filled up when the bot is executed? If yes, is that possible to do for the HTML Panel too? Thanks!
  11. Ok, so subs are like functions. It can return one value, it may be a structurd type of some kind like a list or a table or just a variable. This means that if I want to create a reusable parsing function (table to variables), a sub is not the way to go. Do the variables of an included script (not sub) exist in the same context as the variables from where the script is included? If I have a script, script2, with a few variables, tables and lists (e.g. v2,t2 and l2), are the values of v2,t2 and l2 if they are set in script2 that is included into script1, fully accesible by script1?
  12. I have a sub that has a set of parameters. The parameters are set within the sub and will be used outside of the sub as arguments/parameters to other subs. Using a stat monitor I know for a fact that the parameters gets set with values inside of the sub. However, for some reason the values of the parameters will not carry their values to outside of the sub. Is this a normal behaviour? In a technical manner, how would you describe arguments that gets passed to a sub, are they passed as references or as value? I just need to understand. I also noticed that parameters can't be of any other ty
  13. Some employers in my country put out job ads where they want applicants that are e.g. max 35 y/o. That's just stupid. I would say it's much more of a mindset, than age. It's obvious that all of us here have a certain mindset. (I am 45 years old and I love technology! (still learning UBot) )
  14. Is there a way to do a qualifier that tests if the condition is negative, that is, my bot needs to do something if the "Sign Up" string is NOT found on a certain website? (it's the signup for mail accounts at Yahoo.com) I am aware of that I can put whatever-to-do in the else clause, but that really doesn't answer the question. Many software developers tend to assume that all their users are in the US, which of course is not correct. I need to handle that in my bot.
  15. Hmmm... I tried that today, but no luck. I can select the textarea on attribute, but since the textarea tag doesn't have a value attribute I can't change it as the value is, as I understand it, meant to come between the start tag (<textarea attributes...>)and the end tag (</textarea>). I went looking for other replies for textarea questions, but I never got them to work (there was some question regarding TinyMCE that was related). Strange... Stilll... Thanks!
  16. My endeavours in learning this amazing tool is continuing, I have made a few bots now, some quite simple and one a little bit more "advanced" (for a noob like me ). Right now I am trying to do a bot to do posting on Twitter, but I am totally stuck. I simply can't get my pre-defined text to go into the textarea in Twitter. Have any of you a working sample of this? Thanks!
  17. As a new customer I actually read the license agreement when I installed the product and I noticed that in there you reserve the right to charge whatever fees you like in the future. I also read somewhere that the compilation of the bots is distributed onto your servers, which I interpret as that the local UBot Studio installation is only capable of interpreting the code, not actually making it an exe file. These two "facts" (please tell me if I am wrong) could actually mean that you have the right to start charging us for making exe files out of our bots. Am I correct? Is this intentional? I
  18. Anonym

    Loops

    Hmmm... Now a few hours later when I am back at the PC I can't understand why I didn't manage to get your script to work before. It works great and provides great info. There were some nuggets for me. Thanks John!
  19. Anonym

    Loops

    Thanks John & BotBuddy! (removed comment)
  20. Hi, I bought UBot Studio Dev just two days ago and I am totally amazed at what it can do. I have a question... Please bare with me. I am just learning so far and I am trying to figure out how to do loops based on conditions. I have understood it as the following: loop: the "loop loop" loops x number of times, just counters that you need to know in advance. It doesn't handle logical conditions. while: the "while loop" includes a condition in the loop and as soon as the condition is not fulfilled, the execution exits from the loop. BUT where do the while loop break the executio
×
×
  • Create New...