Jump to content
UBot Underground

Sanjeev

Fellow UBotter
  • Content Count

    356
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by Sanjeev

  1. Thanks Brutal!

     

    Nifty nugget for noobs

     

     

    Not just for Noobs.. Even the most experienced user can make use of these tools.. it automates tasks you would need to by Hand..unless you have coded your own solution..similar to this..

     

    Also - [planned..]

     

    the quick Ui tool  will have presets option so you can save and load Ui code presets for even faster Ui creation.

     

    Ini settings creator will have options for creating multi tab settings and  also [ if you want for some edge cases] - multiple settings per Tab!

     

    I will add  a detailed video , which Will be available in downloads section which will take you through the entire process from Ubot ui to html panel ui and the entire multi tab/multi settings per tab creation - so that everything is crystal clear.


  2.  


     


     

    ----------------------------------------------------------------------------------------

     

    A special Bonus for all my Upad Ninja customers -

     

    When you buy Uassistants , you also get access to the new Ubot x dark theme for upad ninja!

     

     


     

     


     

    ----------------------------------------------

     

    Plus, you will get access to 2 videos where I show you how you can use upad ninja with notepad++ as a super cool snippets manager for Ubot studio

     

    [believe me when I say this , it pretty much beats every snippet manager available online as far as Ubot studio is concerned! I will even compare popular snippet manager solutions online and show how upad/np++ is superior!]

     

    Second video is a cool video where I show you how to do speed coding using upad/np++ ! This method is by far the fastest way of creating code for Ubot studio - if someone was to create a plugin for say speed coding in Ubot - they would have to use a method similar to what I will show you in this video!

    • Like 1
  3. Introducing uAssistants! - A ubotter's swiss army knife!

     

     


     


     


     

     

    uAssistants is a ubot Studio code builder and helper - it saves time by building your ubot studio code and by automating tedious tasks which you had to perform manually, saving you hours of wasted time.

     

    It does this by first letting you select a Ubot studio file from disk to work with, and then you can select an 'assistant' to automate a 'task' on that .ubot file!

     

    Current assistants -

    --------------------------

     

    Ubot file  to text - single click Extract any Ubot studio file to disk 

     

    Generate Save/Load settings code [.ini using free Heopas plug in]

     

    Easily rename one or more variable/list/table names.

     

    Clean up you .ubot file by cutting and pasting all defines to a new tab 

     

    quickly create ubot studio UI nodes - no more tedious dragging and dropping nodes.

     

    Current work in progress Assistants -

    ------------------------------------------------------------------------------------------------------------------------------------------------------

     

    UI Helper - an essential tool to speed up your UI HTML panel based interface creation.

     

    HTML to xpath - single click xpath creation from HTML code

     

    UI to UI Html Panel - for those of you who like to create your own HTML Panel UIs - this assistant will convert UI

     

    command nodes to UI Html panel elements.

     

    File Stats - get in depth info about your selected ubot file

     

    ------------------------------------------------------------------------------------------------------------------------------------------------------------

     

    Planned Assistant-

     

    converter - handles various useful code conversions!

     

    ---------------------------------------------------------------------------------

    specifications -

     

    This is a ubot studio compiled bot

     

    currently works with Ubot studio 4.x and 5.x (Ubot X support coming soon!)

     

    requires a free plugin- Heopas Custom Plugin (free) 

     

     

     

    -------------------------------------------------------------------------------------------------------------------------------------------------------------

     

     

    Refunds - if you're not happy just contact me within the 7 days of purchase and i will refund your payment in full.

     

    Support -  if you have any questions or concerns you can contact me through my Paypal email address or PM me.

     

     

                                                                                   btn_buynowCC_LG.gif

     

     

     

     

  4. One of TJ's free plugins also has windows automation features..you could start there first..?

     

    ---

    https://www.botguru.net/ubot-plugin-os-addins/

     

    -SENDKEYS (sends keys to window by name)
    -SENDKEYS GENERAL (non window specific)
    -SENDKEYS FUNCTION (non window specific)
    -SENDKEYS (wait for window)

     

    you need to sign up here..

     

    https://www.botguru.net/ubot-user-free-plugins/

     

    ----------------

     

     

    Also - watch this video by Frank on automating windows using an app called Macro scheduler.. the takeaway from his video is that the right way to go about doing windows automation is primarily using keyboard shortcuts - really worth a watch  his techniques are not application specific IMO.

     

  5. this should get you started.. :)

     

    set(#main phrase,"my best city","Global")
    define create variations(#phrase, #insert word) {
        clear list(%variations)
        add item to list(%variations,$replace regular expression(#phrase,"(?<=\\w+)\\s(?=\\w+\\s)",#insert word),"Don\'t Delete","Global")
        alert($list item(%variations,0))
        add item to list(%variations,$replace regular expression(#phrase,"(?<=\\w+\\s\\w+)\\s(?=\\w+)",#insert word),"Don\'t Delete","Global")
        alert($list item(%variations,1))
        add item to list(%variations,$replace regular expression(#phrase,"$",#insert word),"Don\'t Delete","Global")
        alert($list item(%variations,2))
    }
    create variations("my best city", " * ")

     

     

    https://cl.ly/40d00b72e554

    • Like 1
  6.  

    wht im looking for was this; the text below headlines

     

     
    add list to list(%bing ads scraped,$list from text($plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements", "//h3[@class=\"ad_esltitle\"]/.."),"
    "),"Delete","Global")
     
     
     
    Image%202018-09-19%20at%201.57.11%20PM.p
  7.  
    this appears to work on my side -
     
    plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "")
    plugin command("ExBrowser.dll", "ExBrowser Navigate", "bing.com")
    plugin command("ExBrowser.dll", "ExBrowser Type Text2", "//input[@class=\"b_searchbox\"]", "Yes", "dropshipping", 10, 50)
    plugin command("ExBrowser.dll", "ExBrowser Send Special Key", "//input[@class=\"b_searchbox\"]", "Enter", "")
    add list to list(%bing ads scraped,$list from text($plugin function("ExBrowser.dll", "$ExBrowser Scrape List Elements", "//li[@class=\"b_ad\"]//div[@class=\"b_caption\"]"),"
    "),"Delete","Global")
×
×
  • Create New...