Jump to content
UBot Underground

pash

Fellow UBotter
  • Content Count

    3523
  • Joined

  • Last visited

  • Days Won

    167

Everything posted by pash

  1. what is error? command error? If you mean special commands, please read in the "Special Commands"
  2. 4.2.6.0 youtube get video basic info: fix "Publish Date"
  3. 1. use command "ms excel converter" converter xlsm To xlsx.xlsx sample plugin command("Advanced Document.dll", "ms excel converter", "{$special folder("Application")}\\sample.xlsm", "{$special folder("Application")}\\xlsm To xlsx.xlsx", "False") 2. read xlsx by command "create table from excel"
  4. First of all, note that the plug-in is not a ready-made tool or a large tool like the "mass video blaster"But it is a small youtube api module to create a large tool.How to use the command or how to use depends on the command leader to use.For example, "youtube download" command allows you to download videos from youtube.How to use this command?Some people load items from files. Someone uses a window to enter the list again.It depends on the design of the tool maker.
  5. 4.2.8.0 Add new command drive file/folder detail: get detail sample Export Url, Download Url, file size, or other
  6. 4.2.7.4 Update library Fix load error
  7. 4.1.4.3 Update library Update command - csv to json - csv to xml
  8. why not use replace command? alert($replace(5200,",",""))
  9. 4.2.5.9 youtube get video basic info: add option "Remove HTML Tags From Description"
  10. 4.1.4.0 Add new command get decimal places
  11. use Element Offsethttps://wiki.ubotstudio.com/wiki/Element_Offset
  12. try set(#Debug,$scrape attribute(<tagname=r"td">,"innertext"),"Global") add list to list(%IP_Port,$find regular expression(#Debug,"\\d+\\.\\d+\\.\\d+\\.\\d+\\n\\d+"),"Delete","Global")
  13. try add list to list(%datas,$scrape attribute(<class="organic__subtitle typo typo_type_greenurl">,"innertext"),"Delete","Global") https://wiki.ubotstudio.com/wiki/Element_Offset
  14. 4.1.3.0 Add new command zip files: add files to Zip zip folders: add folders to Zip (not create seclect folder at root best for FTP) unzip file: unzip file to seclect folder
  15. x day = Hours * minutes * seconds 1 day = 24 * 60 * 60 the idea basic loop while($true) { comment("Hours * minutes * seconds") RunMe() wait($multiply($multiply(24,60),60)) } define RunMe { alert("Runing") }check stop ui button("Stop") { set(#Runing,$false,"Global") } set(#Runing,$true,"Global") comment("Hours * minutes * seconds") set(#Time,$multiply($multiply(24,60),60),"Global") loop while(#Runing) { RunMe() loop(#Time) { if(#Runing) { then { wait(1) } else { } } } } alert(
×
×
  • Create New...