Jump to content
UBot Underground

jssrecording

Members
  • Content Count

    37
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by jssrecording

  1. So Ubot has been running extremely slow! I have reinstalled it 3 times and now the new issue of many is the Ui Node is minimized above the browser. I have never seen this before. Help fellow Ubotters!!
  2. I'm having a similar issue with the ui html panel. After I paste in ustrap code for example or any other bootstrap type code the ubot interface starts to lag. I'm using the external file option for less code in ubot. version 6.0.4
  3. Anyone else experience the UI Stat Monitor not updating data sometimes? Work arounds or any light on this matter would be very helpful. Version: 6.0.4 Cheers Jason Smith
  4. Nevermind, I figured it out by adding brackets {#object}. Thanks!
  5. UPDATE wp_24e1505507_gf_entry_meta SET meta_value = #myawesomevariable WHERE entry_id = 28 AND meta_key = 5; I can connect to database and select anything with no issues. The update statement works if I hard code a value. I know the above line is not correct for sql. How would I go about passing the ubot variable into a sql statement? Thanks in advanced Ubotters! Jason
  6. HelloInsomnia I'm not getting a wildcard element on a specific page in the browser. I'm using the email command in ubot to attach a file. I'm looking in my downloads folder for a csv file with a date extension that I'm not sure of the exact name. This will be the only csv file in this directory. After I'm done attaching and sending it, I'm going to delete any csv file in this directory with a shell command. Cheers and thanks in advance. Jason Smith
  7. Okay I've lost my mind. How do you select an attachment for an email in the downloads folder that you don't know the exact path. Example: mywickedfile-1923490834-.csv This file changes it's tail name dynamically every time it's downloaded. I tried using a wildcard like mywickedfile*.csv but was not successful. Cheers my friends and thanks in advance. Jason Smith
  8. HelloInsomnia Looks awesome! One problem the link to the download is scrambled up with shortcode stuff.Do you have this?
  9. I'm trying to get yesterdays date in year month day format 2017-01-25. How would you use the $date for this tackle? Any help would be great! Jason
  10. Website 1 has the checkbox checked using: <input name="active" type="checkbox" value="1" checkbox=""> Website 2 just uses checked <input id="12345" type="checkbox" value="on"> How do I tell "change checkbox" to use true or false for checked or unchecked? Thanks in advance Ubot Community! Jason
  11. I can do this in most other languages, but I'm having a hard time and lack of sleep lol! Example: I want to do it like this in a type to text. "#keyword"
  12. They are messing up my work deadlines!
  13. Here we go again! Ubot your license checking 502 error's are messing up my work deadlines. Get your act together!!!
  14. I keep getting timeout errors when trying to compile. Anyone else experiencing this?
  15. Hey Nick I made a work around. I had one bot run the other bot and finish the delete of the file after it closed the second bot. Thanks Jason
  16. Okay UBot nation! I have an email that get's sent with attachment via smtp. After the email is sent I need to delete the attachment file from directory. When I use the delete file node it Window error's saying file is in use. Which yes it is in use because it sent the email. Here is that section of my code below. Thanks, Jason wait(5) shell("C:\\Users\\jssrecording\\Downloads\\makecsvnodup.bat") wait(5) connect to mail server("SMTP With SSL","cpcsvdigest@gmail.com","Deep_Space1","smtp.gmail.com",587) { send email("email1@gmail.com,email2@gmail.com","testing","Plain Text","boom","..\\D
  17. Hey Brutal, the reason is the client has other bots that work off the desktop with the combined CSV file. I'm still trying to figure this last stage out. Thanks for the thought, I would do it your way if possible.
  18. Never mind I couldn't sleep lol! I tried both of the versions. None of them are moving the files to the desktop like my original script did. The files have upper and lowercase characters and numbers for the file names. Example: 8c4bS020160830211541.csv
  19. Pash, I don't know what I would do with out you! I'm going to try these options in the morning. Cheers Jason
  20. Okay so I have my script moving the 2 CSV files from the Download folder to Desktop. After I run my Batch command it merges the 2 files. Where I'm stuck is I need to delete the %OriginalFiles now living on the Desktop but leave the new CSV alone. Here is the part of my code that works. Cheers Jason clear list(%OriginalFiles) wait(2) set(#DownloadFolder,$replace($special folder("Desktop"),"Desktop","Downloads"),"Global") wait(2) add list to list(%OriginalFiles,$get files(#DownloadFolder,"Yes"),"Delete","Global") wait(2) set list position(%OriginalFiles,1) wait(2) loop(2) { move file(
×
×
  • Create New...