Jump to content
UBot Underground

kate

Members
  • Content Count

    35
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by kate

  1. Got this gibberish response while visiting a site (see atachment) Using chrome 21 & 49 same result Any clue ? Or is it Ubot Studio bug ? Or is it Ubot Studio feature ?
  2. thank you for this plugin heopas btw, any documentation how to use sqlite feature ?
  3. this link maybe help you http://wiki.ubotstudio.com/wiki/Socket_navigate
  4. maybe your 5 user has slow internet connection as we know, ubot download files when first start. Its lot if youre using slow internet connection
  5. best practice is to count total first, then do iteration ($next list item) you stated that this error occurs when using headless feature, isnt ? add list to list(%shorturls,$scrape attribute(<class="short-url">,"href"),"Delete","Global")then maybe, when using headless feature ubot failed to scrape data. Check you list if its empty
  6. hi sorry, i dont get it maybe an image will make me understand
  7. I'm trying to test how ubot treat boolean value, this is WIP, hope it helps CONCLUSION: - if somehow ubot skip your "if" command then maybe the condition is wrong - WIP set(#log,"","Global") ui html panel("<html><body><div variable='#log' fillwith='innerhtml'></div></body></html>",700) comment("python, TODO") comment("ubot") set(#test,"false","Global") purpose("Testing false string from variable") if(#test) { then { log("true") } else { log("false") } } set(#test,"true","Global") purpose("Testing true string from variabl
  8. if you dont need bug fixes in .36 version, yes you should
  9. check also what python says about True/False http://network.ubotstudio.com/forum/index.php/topic/19842-miscellaneous-tips/?do=findComment&comment=124260
  10. Python boolean values is "False" and "True", hence ubot is "true" ($true) and "false" ($false) see also $false not same as $is number 's "false"
  11. should we add it to tracker.ubotstudio.com ?
  12. compiled bot first run will download browser data, if you have version .36, theres bug that download .36 & .33 browser. So before that complete, your bot will not working as it should.
  13. to assign default value to ubot, you can put it in "on load" command. But still, you need to know variable names
  14. its good to add "wait" command after "run javascript" command. Let javascript command finish their work
  15. $false And $Is Number return value is different http://network.ubotstudio.com/forum/index.php/topic/19847-comparison-and-is-number/
  16. pash thank you for pointing me that. In future if somebody need documentation, they can find it here maybe because "is number" is bot bank command so there's different way to say true/false
  17. Hi Code: ui text box("Test Value",#test) ui button("Test 1") { if($is number(#test)) { then { alert("Yes its number") } else { alert("It should be number") stop script } } } ui button("test 2") { if($comparison($is number(#test),"= Equals",$false)) { then { alert("It should be number") stop script } else { alert("Yes its number") } } } This test to prove $is numberreturn value is not same as $comparisonreturn value image: http://i.imgur
  18. yes, yesterday(or day before yesterday), happend to me too
  19. Save your HTML template in separate file, then load it with ui html panel, if you change the html file, just edit "ui html panel" and save. Ubot will reload that html file. This is usefull if you have huge html, it will not clutter your code view, and make ubot studio happy(at least on my crappy comp) ui html panel($read file("{$special folder("Application")}\\template2.html"),350) sorry too fast to hit enter
  20. Hi First, if its not right place feel free to move it As ubot beginner, there's learning curve that we must pass. Here i'll post Miscellaneous Tips that i find usefull as ubot beginner, hope it helps other i'll also shamelessly post other uboter tips that i can find(offcourse, credit due where its due) TO SENIOR UBOTTER : Please jump in and add, we need your wisdom here #1. Save HTML Template in separate file #2. Separate your work into defines, One, two #3. Ubot studio crash, missing some source code ? Check here #4. How to add JQUERY in your ubot browser #5. JSON Parser, One, two #6
  21. How do you create that UI ? Using bootstrap css framework ?
×
×
  • Create New...