Jump to content
UBot Underground

SmileyBot

Fellow UBotter
  • Content Count

    170
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by SmileyBot

  1. I have a few bot project on the go and willing to share my bots Is there anybody out here that wants to work together? I'm looking for experienced people only who can relate to the title
  2. Hi Seth, I have developer was aware of this but was having trouble with it executing of code Can you please show an example code Thanks
  3. define DATE_TIME { comment("dateTimeDay") set(#dateTimeDay,$find regular expression($date,"(?<=\\d\\d\\/)(.*)(?=\\/\\d\\d\\d\\d.\\d\\d:\\d\\d:\\d\\d)"),"Global") comment("dateTimeMonth") set(#dateTimeMonth,$find regular expression($date,"(?<=^)(.*)(?=\\/\\d\\d\\/\\d\\d\\d\\d.\\d\\d:\\d\\d:\\d\\d)"),"Global") comment("dateTimeYear") set(#dateTimeYear,$find regular expression($date,"(?<=\\d\\d\\/\\d\\d\\/)(.*)(?=.\\d\\d:\\d\\d:\\d\\d)"),"Global") comment("dateTimeHour") set(#dateTimeHour,$find regular expression($date,"(?<=\\d\\d\\/\\d\\d\\/\\d\\d\\d\\
  4. define COUNTDOWN { set(#wait_time_minutes,$rand(#wait_min,#wait_max),"Global") set(#countdown_minutes,#wait_time_minutes,"Global") set(#countdown_seconds,00,"Global") CHANGE NUMBERS() thread { loop while($comparison(#countdown_minutes,"> Greater than",$nothing)) { if($comparison(#countdown_minutes,"= Equals",00)) { then { set(#countdown_minutes,$nothing,"Global") set(#countdown_seconds,59,"Global") loop while($comparison(#countdown_seconds,"> Greater than",0)) {
  5. copy and paste into ubot Node view Install Python Plugin (ExecutePython.dll) to ubot Update %appdata% ubot \ python \ with newer version comment("Create a new file and add the below into the file and save the file as batch_create_sms.bat @echo off set TWILIO_ACCOUNT_SID=AC325b0e set TWILIO_AUTH_TOKEN=77ea6 \"D:\\Python\\python.exe\" \"D:\\batch_create_sms.py\"") SEND_SMS() define SEND_SMS { set(#create_python_sms,"from twilio.rest import Client # Find your Account SID and Auth Token at twilio.com/console # and set the environment variables. See http://twil.io/secure acco
  6. Thanks I tried heopas 'http download' Do you know how to pass the credentials I don't want to have to manually navigate to the page to download, Here is the url for the download, https://
  7. Thanks for the reply Yes, I have tried this and it doesn't work
  8. Hey Guys I'm trying to use Aymens - 'http file download' to download a PDF My issue is that the URL needs a user and password to access the file Any ideas on how this can be done? Thanks
  9. Hey TJ how do we use the amazon ses servers to spawn? can you give some info on where to look and learn. thx
  10. Hi Guys After updating to Ubot X because my bots started to not function correctly I have found the following bugs when running my bots that I know worked fine before Internal Browser freeze - I found that if I just add 'in external browser' to the start of your script it seem to knock/reset the internal browser and run smother and not freeze the internal browserUI dropdown - default value = nothing - when ubot starts up the ui dropdowns do not default to the first valueScraping to list - position 0 gets filled with nothing and then the scrape starts in position 115/12/2018 thread spawn doe
  11. Thanks, I have been holding off on the update Maybe it's time
  12. Thanks mate This is the address that takes you to the page - navigate("https://zapier.com/app/settings/authorizations","Wait") I dont have the login portion to FB as I can't see any login details as it doent load The ID url was the url that was sent to FB in a normal firefox browser when I confirm the FB connection on the above zapier page and probably irrelevant as it a different browser? thank again
  13. Thanks TJ, I tried that and it doesn't work. the popup just stays on flash screen and doesn't open FB login screen
  14. Hey guys Trying to connect a FB account through a popup on Zapier after loggin i go to the connect page, once you add your selection a popup appears and is not visable and continues looping In a normal desktop browser I have managed to get the FB confirm url and have confirmed connection twice The difference in the the 2 changes in the different confirm codes FB url's was the below XXXXXX I need to be able to scrape the logger ID and replace XXXXXX with this scraped ID any solutions? thx to all allow popups("In New Window") navigate("https://zapier.com/app/settings/authorizations","Wait") w
  15. Hey guys I want to regex a number and remove the comma from the results Scraped number = 5,200 results = 5200 also when i regex \d with the set function, i get the following results 5 2 0 0 is there a way to bring this back to 1 line 5200 Thanks
  16. Thanks Nick, you always come through with the goods
  17. thanks bestmacro for your time, but this doesn't seem to work with HTTP GET cheers this is the SET just need correct regex Thx set(#get_website_url,$find regular expression($plugin function("HTTP post.dll", "$http get", "https://www.google.com/maps/place/?q=place_id:ChIJ78PxQ60Q1moR8NHDUv_v0gk", "", "", "", ""),"(?<=widget-pane-link\">).*(?=<)"),"Global")
×
×
  • Create New...