Search the Community
Showing results for tags 'variables'.
-
http://image.prntscr.com/image/5d61968cf8c24ebe9075a2eb898ecb43.pnghttp://image.prntscr.com/image/f3a13b25912244bd89dd415303d1874a.pnghttp://image.prntscr.com/image/27fa51acd90a4a2ca77a8012da7cd3f2.png Hello, i created a plugin for personal use with some commands, functions. I am releasing it for free. - For threads lock i use simple commands not container because container stuck in multiple threads - Every command / function is thread safe- varSet set a variable that exist only on running thread so you can varset and varget from everywhere in same thread without passing arguments. Before th
- 122 replies
-
- 31
-
Hello Ubotters, After spending some hours to get it work, I decided to consult with you regarding an issue that I'm getting with some basic things. It could be that I'm just tired, but I can't determine what causes the problem.. Let's get to the point. I have such code: if($contains(#currentBotModule,"module1") OR $contains(#currentBotModule,"#module2") OR $contains(#currentBotModule,"#module3") OR $contains(#currentBotModule,"#module4") OR $contains(#currentBotModule,"#module5")) { then { module basic() } else if(ANOTHER MODULE FUNCTION)
-
Hello, I`m having a hard time scraping some values from a keyword researching tool. In total I have 3 different problems, which I`m going to describe in more detail in my following 2 short videos: Problem 1: How can I remove the " signs, from the scraped data? Problem 2: How can I get all the scraped elements into one line, seperated by comma? https://www.loom.com/share/c46ad50de064427c8b6c06a18c8bca8b Problem 3: How can I scrape only one specific element, without scraping all similar elements? https://www.loom.com/share/e005e88c283246d28ec9870702c202d1 Would
-
I'm trying to use a custom form with a variable in a web login script. When I run my script it's adding an extra character (in my case the last character) to the prefix (example: if my username is myuser it's putting rmyuser in the form.
-
Hi Everyone, Is there anyway to automatically assign a value to all empty variables? Like assign abc if empty variables are found in a program. Regards
-
Sometimes I have a few variables that needs deleting (as it can get cluttered!). How do I delete the unwanted ones? Thanks.
-
Guys, I am having trouble setting a 4 number variable and having it increment. Ex: 0000, 0001, 0002, etc. All it is doing is going from 0000 to 1, 2, 3, etc. Do you have any tips?
-
Guys, I am having trouble setting a variable with four numbers, ex: 0000, and having it increment 0001, 0002, 0003, etc. Any tips? Sorry I posted this in the wrong spot
-
There are 2 problems 1) custom commands taking memory that doesn' t clean. Each run consume more memory. The only way to clean the memory is to press Node View that is not possible in compiled bot. loop(10000) { test() } define test { } 2) Local variables in defines take space that doesn' t free if you don' t place empty set(#post,"big string","Local") set(#post,"","Local")
-
Hello ubotters, Here's the question..From a list of scraping data, then I use variables to clean the extra lines and unwanted spaces from the main list. How do I add my cleaned list from a variable to a list "Add list to list"..Thanks for the help
- 6 replies
-
- transfer data
- add list to list
-
(and 1 more)
Tagged with:
-
Database connection works fine. INSERT, UPDATE, and SELECT work. How do you take a ubot variable and plug it into the UPDATE command? I checked the wiki and there is no example of this.
-
Hello. I'm currently playing around with javascript a little bit. But I don't understand how and when Ubot assigns results from javascript to ubot variables. So basically we have two functions in ubot: 1. run javascript 2. $eval() Questions: 1. Is it possible with "run javascript" to return values to ubot studio? Probably not right? 2. Where are variables to I use within "run javascript" are stored? Are the per browser instance? So when I run multiple browsers, are they unique for each browser? 3. How exactly does the $eval() command work? can I put multiple javascript commands in
-
So I'm trying to to spin text with 3 different variables using $spin ex: {My {#variable1} | Your {#variable2} | His {#variable3}} It seems like having curly braces within curly braces is breaking the variable so it shows as text ex: your #variable or His #variable would appreciate any help, thanks
-
What is the best way to take one comma separated variable and turn it into multiple different variables. Essentially I am running a csv file to show tempVar as next list item but not every list item has the same number of columns. This is what I have CSV Contact list tom,555-555-5555,123 Test Street Dallas Texas, testwebsiteurl.com sally,666-666-6666, 118 Test Drive Daytona Florida, (no website) hank, 111-111-1111, 5454 Test Ave Seattle Washington, (no website) linda, 222-222-2222, 432 Test Lane Denver Colorado, lindaswebsiteexample.com This is what I am trying to do add list to lis
- 7 replies
-
- Converting
- variables
- (and 5 more)
-
What is the best way to take one comma separated variable and turn it into multiple different variables. Essentially I am running a csv file to show tempVar as next list item but not every list item has the same number of columns. This is what I have CSV Contact list tom,555-555-5555,123 Test Street Dallas Texas, testwebsiteurl.com sally,666-666-6666, 118 Test Drive Daytona Florida, (no website) hank, 111-111-1111, 5454 Test Ave Seattle Washington, (no website) linda, 222-222-2222, 432 Test Lane Denver Colorado, lindaswebsiteexample.com This is what I am trying to do add list to lis
- 1 reply
-
- Converting
- variables
- (and 5 more)
-
I need to enter 2 variables in UI, set temp variable that is 100x the number, and substract the two temp variables. Also I need to change the decimal appearance. Example UI Start Number entered as 13.00 (actually equals 1300) UI End Number entered as 20.00 (actually equals 2000) UI Stat Monitor: UI End - UI Start (700) Does anyone have any suggestions?
-
Is there a way to set constants by name in a list or table like with normal coding? Essentually... UI Drop Down Example1 Example2 Example3 Example100 Variable Stored as tempVar Pull list Example1 = testing Example2 = sample Example3 = dog Example100 = cat Display value from list(tempVar)
-
I am trying to create a bot that can log into my dymanics crm online, open a case, and input the body of the email that corresponds to the case. To give an accurate description of how it works. I have a workflow created in the crm that converts an email to case. The case is created and the tiltle of the case is the subject line of the email. I know a little bit of logic. But I can wrap my head around how I can get ubot to look at each case and then open up the email and copy over the body of the email to the corresponding case.
-
Can I take the data out of a file and turn them into variables. Example: lets say the it is a csv file with the following: grapes,oranges,apples can I extract those and turn them into 3 different variables such as : #grapes #oranges #apples ? Ya know what I mean?