diff --git a/SIGNALS.md b/SIGNALS.md index 7b6a1d8..501807d 100644 --- a/SIGNALS.md +++ b/SIGNALS.md @@ -117,6 +117,9 @@ This mean that the player wants to play a counter game with limit feature enable #### Strike Signal ``` {"ct":1,"st":5.215} + +ct : Kick Count +st : Time Of The Kick In Milliseconds ``` #### Result Calculations @@ -144,11 +147,16 @@ This mean that the player wants to play a Time Attack game for 60s and enabled k #### Strike Signal ``` {"tm":5,"ct":2,"st":0.289,"dl":0.289} + +tm : Count Down Display Time (in Seconds) +ct : Kick Count (Number Of Kicks) +st : Time Of Each Strike (In Milliseconds) +dl : Diviation Between Kicks (In Milliseconds) ``` #### Result Calculations ``` -timeattack = (number of kicks (maxct))/(total time in (maxtm)) = ks +timeattack = (number of kicks)/(time taken to finish the game) = Kicks Per Second ```