Title: Sanity Check Call Denotation Variants and Analysis Author: IkeaPone Pastebin link: http://pastebin.com/f7xXDRZJ First Edit: Saturday 4th of October 2014 02:17:06 PM CDT Last Edit: Last edit on: Saturday 4th of October 2014 02:28:16 PM CDT Order of checks San     : 0 Mi      : 1 10      : 2 -20     : 3 1d4     : 4 ( P     : 5 )   1d4San-20Mi10P  4 0   3 1 2 5 Pros : Concise, no more characters than needed. Numerical variables are separated by alphabetical variables Cons : Jumbled order.   San-20Mi10|1d4P  0  3 1 2   4 5 Pros : Slightly less jumbled order Cons : Still a bit jumbled, 1 extra character   San1d4P-20|10Mi  0  4 5 3  2 1 Pros : Follows the primary procedure inversely. Cons : 1 extra character. Possible confusion between the damage (1d4) and modifier (-20) if no P or if P+   Variant : San1d4P|-20|10Mi // Less confusion between damage and modifier at the cost of 1 additional extra character.   SanMi10|-20|1d4P  0 1 2   3   4 5 Pros : Follows the procedure exactly. All variables separated Cons : 2 extra characters   San(Mi|10|-20|1d4)P  0  1  2   3   4  5 Pros : Perfectly intuitive. Cons : 5 extra characters.