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

From 4Dimensions
(Difference between pages)
Jump to: navigation, search
m (formatting)
 
m
 
Line 1: Line 1:
'''RPRULES'''
+
'''EXPRESSIONS TRIGEDIT-EXPRESSIONS INCREMENTS MATHEMATICAL /= || \'''
 
[[Category:Help Files]]
 
[[Category:Help Files]]
[[Category:RP]]
+
[[Category:Building]]
These are the basic very straight, to the point rules concerning Roleplay
 
  
-
+
A false expression is any expression that evaluates to 0, or an empty string.
  
Roleplay is the act of taking on a role while completely leaving behind
+
A true expression is any expression that evaluates to anything other than a
  
your REAL LIFE ideology, beliefs, likes, and dislikes behind. You are  
+
false expression. The following list are the recognized operators. The higher
  
YOUR character. If you choose to mold the character around you, more power
+
the operator is on the list, the higher the precedence. The expression is
  
to you, however KEEP ALL OOC (Out Of Character) concerning players, and
+
evaluated from left to right. Parenthesis can be used to group.
  
nonplayers out of your RP.  If they don't have a flag, they don't wish
 
  
to be involved.
+
<pre>
 +
|Operator|        Name          | Examples  0=False 1=True  |
 +
--------------------------------------------------------------
  
'''The RULES concerning RP are as follows'''
+
|  ||  | logical or            | 0 || ( ) = 0; 5 || 0 = 1  |
  
* No Forced RP
+
|  &&  | logical and           | 1 && 0 = 0; 5 && 3 = 1    |
* RP deaths/rapes WITHOUT consent of the other play(s) involved
 
* NO POWER PLAYS (You are not God)
 
* MUST have a VALID Character Description! NO ANSI pictures, no poems
 
* and ABOVE ALL, no putting your NAME in the description! See [[RPDESCRIPTIONS]]
 
:for further details, tips, and suggestions.
 
* Failure to adhere to these rules will result in the removal of your RP flag.
 
  
 +
|  ==  | equivalence          | 5 == 3 = 0; dog == DoG = 1|
  
Some of the rooms and Channels in 4D are OOC, because they accommodate ALL
+
|  !=  | inequality            | 0 != Z = 0; dog != d = 1  |
  
players. The RECALL area is strictly OOC, because so many players pass and
+
|  <    | less than            | 4 < 3 = 0; 4 < 5 = 1      |
  
rest there. Trying to roleplay at RECALL is doomed to failure, and might even
+
|  >    | greater than          | 4 > 3 = 1; 4 > 4 = 0      |
  
raise some ridicule.
+
|  <=  | less than or equal    | 4 <= 3 = 0; 4 <= 5 = 1    |
  
Gossip is OOC, for global RP messages, use IC.
+
|  >=  | greater than or equal | 4 >= 3 = 1; 4 >= 4 = 1    |
  
Please respect the rules of these channels.
+
|  /=  | substring            | "concatenate" /= "cat"    |
  
 +
|  -    | subtraction          | 15 - 10 = 5              |
  
See also: [[AWARDPOINTS]]  [[BACKGROUNDSTORY]]  [[CHANNELS]]  [[IC]]  [[OOC]]  [[RECALL]]
+
|  +    | addition              | 10 + 15 = 25              |
  
See also: [[ROLEPLAYTIPS]]  [[RPAWARDS]]  [[RPDESCRIPTIONS]]  [[RPBACKGROUNDS]]
+
|  *    | multiplication        | 10 * 20 = 400            |
 +
 
 +
|  /    | division              | 100 / 20 = 5              |
 +
 
 +
|  !    | negation              | !() = 1; !0 = 1; !dog = 0;|
 +
 
 +
--------------------------------------------------------------
 +
</pre>
 +
 
 +
 
 +
Example: {cRTSTAT 63{c0

Latest revision as of 11: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