Comparison
From UBot Studio
(Difference between revisions)
(Created page with "This function is a Qualifier Function. This function compares two values and returns the results as either being true or false. This function is also c...") |
(→Example) |
||
Line 16: | Line 16: | ||
Since 1 is not equal to 0, the else command runs. | Since 1 is not equal to 0, the else command runs. | ||
+ | |||
+ | |||
[[File:comparison.png]] | [[File:comparison.png]] | ||
+ | |||
<pre> | <pre> | ||
Line 32: | Line 35: | ||
Since 1 is greater than 0, the then command runs. | Since 1 is greater than 0, the then command runs. | ||
+ | |||
+ | |||
[[File:comparison0.png]] | [[File:comparison0.png]] |
Revision as of 18:07, 7 January 2013
This function is a Qualifier Function. This function compares two values and returns the results as either being true or false. This function is also commonly used in a conditional statement to help determine which commands will run if the conditional is met. The first value is compared tot he second value to determine if the statement is true.
Example
if($comparison(1, "=", 0)) { then { navigate("http://www.ubotstudio.com/resources", "Wait") } else { navigate("google.com", "Wait") } }
Since 1 is not equal to 0, the else command runs.
if($comparison(1, ">", 0)) { then { navigate("http://www.ubotstudio.com/resources", "Wait") } else { navigate("google.com", "Wait") } }
Since 1 is greater than 0, the then command runs.