Introduction #
One of the most valuable and powerful feature of RTILA Studio is the ability for you to compile your automations into your own standalone software. Compiled software is an independent software that can run outside of RTILA Studio to launch the concerned automation flows.
Compiling a Standalone Bot #
You can compile any project into a Standalone Bot. Just head to BOTS panel and then click the PLUS icon to start a new Bot. In the new window click on the Project field and select the project that you want to compile into a Bot


You can then click on the Compile button and it will generate the Standalone Bot folder with the needed files to run this bot. See below screenshot for the compile button


Call data from a relative file (csv or txt) #
Before compiling your standalone you need to consider the fact that this software will be run on other computers with no access to RTILA Studio. Meaning that all the local files/data/credentials your are calling inside RTILA Studio during development of the automation will need to be adapted to work under a Standalone environment. This includes but is not limit to the following adaptations.
You will need to replace your credentials inside the populate commands by calling for instance a credentials.txt using the relative path ./credentials.txt for a List Variable (List). Then replace the actual credentials inside the populate fields using the syntax {{List|0}} where “List” is the List variable name, “0” will read from the 1st column (email address) and “1” will read from the second column (password) of the credentials.txt file. Using this way will allow your users to just update their credentials in the credentials.txt file that you will deliver within the same folder as the binaries.








For calling a List variable that has only one column
{{List}}
For calling a List variable that has more than one column, the counts starts from 0
{{List|0}}
A List Variable and any other Variable command can actually feed data to almost any other command or property in the Command and DataSets sections. This allows you to exchange data within your automation flows, between the different elements and sections of RTILA Studio.
Below are some examples of where and how you can call a Variable value into an other element.






Command lines for Standalone Bots #
Our Standalone Executable files are able to receive data and instructions using command line from Windows, Mac and Linux. This is very useful for advanced users as you can create a different user interface or process, or even control your executables launch using command lines on your own VPS/server.
Load different config files with same binary #
Our Standalone Software actually always use the same binary files for Windows, Mac and Linux. The actual automation flow information is saved in the .config file. This allows you to avoid downloading the binaries/executables for every Standalone bot. Instead you can call a different config file while launching the Standalone using command lines. Below is an example for launching a bot.exe a dynamic config file name for each of your automations. Replace “AutomationNameHere” with your automation config file name.
RTILA-Windows.exe --config-file=AutomationNameHere.config
Pass variable data to a Standalone Bot #
You can also pass variables to your Standalone Software so feed into the automation. Before you can send variables data to a Standalone you need to first use the Argument Variable command to create and use that variable in your flow. Note that Argument Variable can also receive data from the cloud using our Cloud API or our Zapier/Pabbly/Make integration. Note that for almost all our types of variables you can apply Regex and or JavaScript rules and functions to manipulate or correct the data.




Once the Argument Variables are created you can use command lines to pass data to them, see the sample code below (assuming you named your Argument Variable as “Argument”).
RTILA-Windows.exe --config-file=AutomationNameHere.config --Argument=testdata
For general information, when inside an automation flow in RTILA Studio, you can feed a variable value to an other command and or DataSet Property by calling the following syntax where VariableName is the name of your variable. Once the automation is RUN the syntax will be replaced by the current value of that variable, for the current step of the automation.
{{VariableName}}
Standalone Example folder #
A good example of a Standalone Software is the AppSumo Expense bot we did and which you can download and unzip from here: https://drive.google.com/file/d/19Uq4m9MHIHRSsKPlImrtdLs_J0aWyNEx/view?usp=sharing
Video Tutorial Standalone Bots #

