Hi everybody ! I need some help for a game I'm about to launch. I'll try to explain you the basics. Characters have two series of stats : Corps, Coeur, Esprit Action, Perception, Résistance And they can add a "métier" or a "hobby" or a bonus/malus. This gives a "test value" Then, the player should roll 2d6 If the roll is under or equal the test value, this is a succes If the roll is over the test value, this is fail If the roll is 2, this is a critical success If the roll is 3, this is a critical succes, only if the charracter has a hobby If the roll is 12, this is a critical fail. Here is the script I tried to write, but it doesn't match... Ca n somebody help me ? !power {{ --bgcolor|#6C5003 --txcolor|#F7DC65 -- erowbg|#FFF6A0 -- orowbg|#FFF6A0 --erowtx|#000000 --orowtx|#000000 --name|Test -- [[ [$TEST] ?{Composante |Corps,@{selected|Corps}|Coeur,@{selected|Coeur}|Esprit,@{selected|Esprit}} + ?{Moyen |Action,@{selected|Action}|Perception,@{selected|Perception}|Résistance,@{selected|Résistance}} + ?{bonus/malus} ]] -- [[ [$JET] 2d6 ]] -- ?? $JET <= $TEST AND $JET == 2 ?? ! RES1 :|^^~C **Réussite critique !** ~C -- ?? $JET <= $TEST AND $JET == 3 ?? ! RES2 :|^^~C **Réussite critique ! (si métier ou talent)** ~C -- ?? $JET <= $TEST AND $JET >= 4 ?? ! RES3 :|^^~C **Réussite !** ~C -- ?? $JET > $TEST AND $JET < 12 ?? ! RES4 :|^^~C **Echec !** ~C -- ?? $JET > $TEST AND $JET == 12 ?? ! RES4 :|^^~C **Echec critique !** ~C }}