Jump to content
UBot Underground

Elite Ubot Plugin - Charts, Dialogs, Flow, File, Window Commands And More


Recommended Posts

Update: 


 


V 1.2.0.0 Added:


  • Alert With Timer (customer request)
  • Add Chart To Grid (customer request)

Note:


 


Regarding Add Chart To Grid command you should put this in the on load command after you load your XAML UI. This works with that plugin and will allow you to put your chart in a grid from that plugin. So you can stick the chart anywhere on the UI that way but the XAML must be loaded first and if you reload the XAML you will have to restart Ubot for the chart to load. Also, if you want to change the chart to another grid you will need to restart Ubot. I haven't found a workaround for this yet but you probably won't be moving it to a grid or reloading your XAML that often (and if you are just put a space for the chart and don't worry about it not loading each time while you work on your XAML).


  • Like 1
Link to post
Share on other sites
  • Replies 99
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

V 1.6.1 Added: Hide Browser (Dev only) Show Browser (Dev only) Run As Administrator V 1.6.0 Added: Change UI HTML Panel (see documentation below) Reboot System Shutdown System Documentation for this u

This is a MUST HAVE guys! No Ubot Studio owner should be without this plugin! So many amazing and cool features that have not been seen in Ubot Studio all within a single plugin AND at an insanely stu

Update:   V 1.3.0.0 Added: Schedule New Task Edit Scheduled Task Task Exists Task Last Run Time Task Next Run Time

Excellent, will be purchasing with the new additions in the latest update.

 

Any coupons or specials currently running?

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

Link to post
Share on other sites

Excellent, will be purchasing with the new additions in the latest update.

 

Any coupons or specials currently running?

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

 

Yes, actually right now you can get some great deals (for the next 2 days), (be sure to read the FAQ section if you have other products of mine!)

  • Like 1
Link to post
Share on other sites
  • 3 months later...

Update:

 

V 1.3.2.0 Added:

  • "Reverse" option to Label Format in thee Chart Axis Formatter command

What this does is multiply the label numbers by -1. This allows you to use a negative number and have the chart be reversed so 0 is higher than 10 for example. If you were doing SERP Tracking for example you would want to show that by having a lower number you have a "higher" ranking so the chart position would be higher.

Link to post
Share on other sites
  • 5 weeks later...
  • 1 month later...

Update:

 

V 1.3.3.0

 

Added: Kill Process By Name

 

This will default to the Ubot browser processes. Be aware that it will kill ALL Ubot browsers on the system. Including your GUI unless you use the XAML plugin. Using the XAML plugin (or not having a GUI) will allow you to recoup system resources used by the Ubot browsers. You can use it for other processes as well just be aware that it will kill all processes with that name.

  • Like 1
Link to post
Share on other sites
  • 3 weeks later...

Awesome update! Haven't gotten to try it yet but I'm excited just from the video - trying to think of some more apps to suggest. Awesome work!

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

  • Like 1
Link to post
Share on other sites

 

Update:

 

V 1.4.0

 

Added: Elite Ubot Apps

 

 

does the window size can be changed after set the window size commend? does it apply to the compiled bot?

Link to post
Share on other sites

does the window size can be changed after set the window size commend? does it apply to the compiled bot?

 

Yep :)

 

If you set the window width and height then it will change the bot to be that both in Ubot and compiled it works.

Link to post
Share on other sites

i see,can it be changed after compiled, i'd like it to be fixed and can not adjusted by clients.

 

Here you go:

 

Update

 

V 1.4.1 Added:

 

  • Change Window Resize Mode (Dev Only)

Options: 

  • Can Minimize - no resize, but able to minimize window
  • Can Resize - normal style window
  • Can Resize With Grip - adds a small grip to the bottom right corner
  • No Resize - not able to resize or minimize window

 

Example:

ui button("Can Minimize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Minimize")
}
ui button("Can Resize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Resize")
}
ui button("Can Resize With Grip") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Resize With Grip")
}
ui button("No Resize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "No Resize")
}
  • Like 1
Link to post
Share on other sites

 

Here you go:

 

Update

 

V 1.4.1 Added:

 

  • Change Window Resize Mode (Dev Only)

Options: 

  • Can Minimize - no resize, but able to minimize window
  • Can Resize - normal style window
  • Can Resize With Grip - adds a small grip to the bottom right corner
  • No Resize - not able to resize or minimize window

 

Example:

ui button("Can Minimize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Minimize")
}
ui button("Can Resize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Resize")
}
ui button("Can Resize With Grip") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "Can Resize With Grip")
}
ui button("No Resize") {
    plugin command("EliteUbot.dll", "EB Change Window Resize Mode", "No Resize")
}

quick response, really great!

Link to post
Share on other sites

Update

 

V 1.4.2 Added:

  • Change Window Visibility (Dev Only)
  • $Window Visibility
  • $Get Window Height
  • $Get Window Width
  • $Get Window State
  • $Get Window Style
  • $Is Mouse Over Window
  • $Is Window Active

Change Window Visibility

Changes the visibility of the window, options are:

 

Collapsed: The window is not displayed and there is no reserved space for it on the layout.

Hidden: The window is not displayed but there is space reserved for it on the layout.

Visible: The window is displayed.

 

Window Visibility

Gets the visibility of the window, options are: Collapsed, Hidden, Visible

 

Get Window Height

Gets the height of the window in its normal state - so maximize/minimize won’t affect this number.

 

Get Window Width

Gets the width of the window in its normal state - so maximize/minimize won’t affect this number.

 

Get Window State

Gets the window state, options are: Maximized, Minimized, Normal

 

Get Window Style

Gets the window style, options are: None, SingleBorderWindow, ThreeDBorderWindow, ToolWindow

 

Is Mouse Over Window

Returns True or False depending on if the mouse is currently over the window

 

Is Window Active

Returns True or False depending on if the window is active. This means that the window is the user's current foreground window, it's the topmost window (in most cases) and you can tell by the active appearance of the title bar.

  • Like 1
Link to post
Share on other sites

Damn you're on fire! Such a great investment - if anyone doesn't have it, the current special is the perfect time to grab it.

 

Suggestions for the apps:

 

SQlite viewer and Mysql DB viewer

 

Http sniffer / socket commands so we can do get and post requests and check headers/parameters in ubot without third party tools

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

  • Like 1
Link to post
Share on other sites

Damn you're on fire! Such a great investment - if anyone doesn't have it, the current special is the perfect time to grab it.

 

Suggestions for the apps:

 

SQlite viewer and Mysql DB viewer

 

Http sniffer / socket commands so we can do get and post requests and check headers/parameters in ubot without third party tools

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

 

Great ideas, thank you!

  • Like 1
Link to post
Share on other sites

New FTP Commands Are Here

 

Update

 

V 1.5.0 Added:

  • FTP Connection
  • FTP Create Folder
  • FTP Delete Folder
  • FTP Delete File
  • $FTP Upload File
  • $FTP Download File
  • $FTP File Exists
  • $FTP Folder Exists
  • $FTP Get Listing
  • $FTP Get Item Property

 

FTP Connection

 

Container command that all other FTP commands should go in. Port is optional, and you can use FTP or FTPS. At the end of this container command the connection will be closed.

 

FTP Create Folder

 

Creates a folder on the server. Parent folders are automatically created if they do not exist.

 

FTP Delete Folder

 

Deletes a folder on the server along with any files/folders within it.

 

FTP Delete File

 

Deletes a single file on the server.

 

$FTP Upload File

 

Uploads a file from your computer to the server. Returns True if succeeded, False if failed.

 

$FTP Download File

 

Download a single file from the server. Returns True if successful, False if not or if the file on the server does not exist. It creates any local directories that don’t already exist.

 

$FTP File Exists

 

Returns True if the file on the server exists.

$FTP Folder Exists

 

Returns True if the folder on the server exists.

 

$FTP Get Listing

 

List the files and folders in the folder of choice. If no folder is selected it will use the top level folder.

 

$FTP Get Item Property

 

Get a property of the path to the item (file/folder). Many options available:

 

  • Type: The type of the item (file, folder, link)

  • FullName: The full path of the item

  • Name: The name of the item minus the path

  • LinkTarget: The full path the link points to

  • LinkCount: Get the number of links pointing to this item (Unix servers only)

  • LinkObject: Ignore for now, I just listed all possible options but this won’t work with Ubot

  • Modified: Last write time of the item

  • Created: Date the item was created

  • Size: Size of the item in bytes

  • SpecialPermissions: Special Unix permissions (Stiky, SUID and SGID)

  • OwnerPermissions: Gets (Execute, Write, Read) owner permissions

  • GroupPermissions: Gets (Execute, Write, Read) group permissions

  • OthersPermissions: Gets (Execute, Write, Read) others permissions

  • RawPermissions: Raw permissions string

  • Chmod: Chmod permissions of item; e.g. 755

  • Input: Raw string the server returned for the item

  • Like 1
Link to post
Share on other sites

hrm... most of the functions of this plugin already available on other plugins.

 

Your FTP functions is good but... 

 

My suggestion is that if you can add some unique and special functions from other plugins would be better =). I will consider buying it on the near future.

 

Such as making it easier to generate a scraper..issit possible to make a scraper in few clicks or even one click?   

 

This plugin has many unique features and yes some are in other plugins as well or even Ubot but they may work differently. For example you could use File Management Plugin to call "save file dialog" and save a file. But with Elite Ubot you can specify a filter for the files, an initial directory, and a window title. This is just one example and I'm not saying in every case ours is better. Just that I maybe did not like other implementations or in the case of the Task Commands I wanted something simple where you could easily set up a task. If you wanted a robust solution that does everything under the sun then Pash has a great plugin called Advanced Systems. But his plugin has a million options which is great if that is what you need but again my implementation is different.

 

But above all else this plugin was made to fill in the gaps that Ubot was missing or maybe doesn't do so well. For example we have a prompt and an alert just like Ubot only ours allows you to design the prompt window so you can make it look however you like. In the case of the alert ours allows you to set the icon, and window title. We also have an alert with timer and alert with result. These are just a few examples, any of the commands you see in here that are also in Ubot - ours probably gives you more options or does it in a different way.

 

As for your scraping question, that is tough to answer because it depends on what kind of scraper. I will have a website crawler v3 out soon which will make it easy to crawl websites looking for data. It wont be in one click but it will take care of the crawling engine and you can basically just tell it what to scrape in a few lines of code.

Link to post
Share on other sites

hrm... most of the functions of this plugin already available on other plugins.

 

Your FTP functions is good but...

 

My suggestion is that if you can add some unique and special functions from other plugins would be better =). I will consider buying it on the near future.

 

Such as making it easier to generate a scraper..issit possible to make a scraper in few clicks or even one click?

Even if you just bought it for the chart functionality it'd be worth the price, plus switch commands and other flow options are powerful, and there's plenty that is unique. As he said, even if there is similar functionality in other plugins/core, Elite Ubot does it differently - - and, often better.

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

  • Like 1
Link to post
Share on other sites

Even if you just bought it for the chart functionality it'd be worth the price, plus switch commands and other flow options are powerful, and there's plenty that is unique. As he said, even if there is similar functionality in other plugins/core, Elite Ubot does it differently - - and, often better.

 

Sent from my SAMSUNG-SM-N920A using Tapatalk

 

Yep, charts are definitely the main unique feature. Ubot has charts but they don't have any real customization options and also they don't work in compiled so you can't really use them other than for yourself.

  • Like 1
Link to post
Share on other sites
  • 3 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...