Difference between pages "FEARLESS" and "EXPRESSIONS TRIGEDIT-EXPRESSIONS INCREMENTS MATHEMATICAL /="

From 4Dimensions
(Difference between pages)
Jump to: navigation, search
m
 
m
 
Line 1: Line 1:
'''FEARLESS'''
+
'''EXPRESSIONS TRIGEDIT-EXPRESSIONS INCREMENTS MATHEMATICAL /= || \'''
 
[[Category:Help Files]]
 
[[Category:Help Files]]
[[Category:RP]]
+
[[Category:Building]]
  
Fearless - The Dimensional Warriors
+
A false expression is any expression that evaluates to 0, or an empty string.
  
 +
A true expression is any expression that evaluates to anything other than a
  
 +
false expression. The following list are the recognized operators. The higher
  
We are a group of Dimensional Fighters, devoted to honor, discipline and wisdom.
+
the operator is on the list, the higher the precedence. The expression is
  
We always aim at the top no matter what is it no matter where is it. If there is
+
evaluated from left to right. Parenthesis can be used to group.  
  
a chance to achieve the goal be sure we will try. And if the faith may choose to
 
  
bring defeat upon us, we will not be discouraged because nothing is impossible
+
<pre>
 +
|Operator|        Name          | Examples  0=False 1=True  |
 +
--------------------------------------------------------------
  
for the power of will. We can fall 7 times and we will stand up 8. This is the
+
|  ||  | logical or            | 0 || ( ) = 0; 5 || 0 = 1  |
  
way of the Dimensional Warrior.
+
|  &&  | logical and          | 1 && 0 = 0; 5 && 3 = 1    |
  
 +
|  ==  | equivalence          | 5 == 3 = 0; dog == DoG = 1|
  
 +
|  !=  | inequality            | 0 != Z = 0; dog != d = 1  |
  
Honor, because we honor ourselves, our lifestyle and our brothers in cause. We
+
|  <    | less than            | 4 < 3 = 0; 4 < 5 = 1      |
  
respect each other and the world where we live, the Four Dimensions.
+
|  >    | greater than          | 4 > 3 = 1; 4 > 4 = 0      |
  
 +
|  <=  | less than or equal    | 4 <= 3 = 0; 4 <= 5 = 1    |
  
 +
|  >=  | greater than or equal | 4 >= 3 = 1; 4 >= 4 = 1    |
  
Discipline, because we seek the perfection in all we do. From the moment we wake
+
|  /=  | substring            | "concatenate" /= "cat"    |
  
up until the moment we fall down asleep.
+
|  -    | subtraction          | 15 - 10 = 5              |
  
 +
|  +    | addition              | 10 + 15 = 25              |
  
 +
|  *    | multiplication        | 10 * 20 = 400            |
  
Wisdom, because we are knowledge hungry on the continue pursuit to ameliorate
+
|  /    | division              | 100 / 20 = 5              |
  
ourselves aiming at an evolutional level that gets close to perfection, almost
+
|  !    | negation              | !() = 1; !0 = 1; !dog = 0;|
  
touching it.
+
--------------------------------------------------------------
 +
</pre>
  
  
 
+
Example: {cRTSTAT 63{c0
This is the way of the Dimensional Warrior, are you ready for it?
 
 
 
 
 
 
 
Requirements to join our faction:
 
 
 
* Registered PK player
 
* Registered RP player
 
* Pay 5 Silver tokens
 
* Accomplish the entrance proves
 
* Fulfill the entrance ceremony
 

Latest revision as of 12:25, 14 July 2017

EXPRESSIONS TRIGEDIT-EXPRESSIONS INCREMENTS MATHEMATICAL /= || \

A false expression is any expression that evaluates to 0, or an empty string.

A true expression is any expression that evaluates to anything other than a

false expression. The following list are the recognized operators. The higher

the operator is on the list, the higher the precedence. The expression is

evaluated from left to right. Parenthesis can be used to group.


|Operator|         Name          | Examples  0=False 1=True  |
--------------------------------------------------------------

|   ||   | logical or            | 0 || ( ) = 0; 5 || 0 = 1  |

|   &&   | logical and           | 1 && 0 = 0; 5 && 3 = 1    |

|   ==   | equivalence           | 5 == 3 = 0; dog == DoG = 1| 

|   !=   | inequality            | 0 != Z = 0; dog != d = 1  | 

|   <    | less than             | 4 < 3 = 0; 4 < 5 = 1      |

|   >    | greater than          | 4 > 3 = 1; 4 > 4 = 0      |

|   <=   | less than or equal    | 4 <= 3 = 0; 4 <= 5 = 1    |

|   >=   | greater than or equal | 4 >= 3 = 1; 4 >= 4 = 1    |

|   /=   | substring             | "concatenate" /= "cat"    |

|   -    | subtraction           | 15 - 10 = 5               |

|   +    | addition              | 10 + 15 = 25              |

|   *    | multiplication        | 10 * 20 = 400             |

|   /    | division              | 100 / 20 = 5              |

|   !    | negation              | !() = 1; !0 = 1; !dog = 0;| 

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


Example: {cRTSTAT 63{c0