;;hitcount! /set lcuts=0 /set cuts=0 /set tears=0 /set incises=0 /set shreds=0 /set hshreds=0 /set slash=0 /set totalhits=0 /def -h'SEND stat' echo_statit = party say Hit statistics:%;party say ---------------------%;party say Lightly cuts: %{lcuts} ($[(%{lcuts}*100/%{totalhits})]\%)%;party say Cuts: %{cuts} ($[(%{cuts}*100/%{totalhits})]\%)%;party say Tears: %{tears} ($[(%{tears}*100/%{totalhits})]\%)%;party say Incises: %{incises} ($[(%{incises}*100/%{totalhits})]\%)%;party say Shreds: %{shreds} ($[(%{shreds}*100/%{totalhits})]\%)%;party say H-shreds: %{hshreds} ($[(%{hshreds}*100/%{totalhits})]\%)%;party say Slashes: %{slash} ($[(%{slash}*100/%{totalhits})]\%)%;party say ----------------------%;party say Total hits: %{totalhits} /def -h'SEND clearstat' clear_statit = /set lcuts=0%;/set cuts=0%;/set tears=0%;/set incises=0%;/set shreds=0%;/set hshreds=0%;/set slash=0%;/set totalhits=0%;party say Hit statistics cleared. /def -mregexp -t'^You lightly cut' lcut = /set lcuts=$[({lcuts}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You cut' cut = /set cuts=$[({cuts}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You tear' tear = /set tears=$[({tears}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You incise' incise = /set incises=$[({incises}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You shred' shred = /set shreds=$[({shreds}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You horribly shred' hshred = /set hshreds=$[({hshreds}+1)] %;/set totalhits=$[({totalhits}+1)] /def -mregexp -t'^You slash' slash = /set slash=$[({slash}+1)] %;/set totalhits=$[({totalhits}+1)]