|
Post by llecha on Feb 22, 2015 15:56:58 GMT -5
A simple plan using this stuff might go like this :
########### Static line to start - best to always have one ##########
1) 4b/8/8 (style )
########### Score conditionals #########
if score < 0 then 5/7/8 (style);
if score < -2 then 5h/10/5 (style);
########## Cut lines #########
if hiscuts > 2 and score > 0 then 5c/7/8 (style);
if hiscuts > 5 and score > 0 then 5c/11/4 (style);
########### Stun conditional ###########
if mystuns > hisstuns then 4b/7/9 (style);
########## Rest Line - the round numbers should change for each fight #############
if round = 5 or round = 8 and endurance_percent < 75 then 1/1/8 (style);
########## endurance comparison #########
if opp = 1 and endurance_percent > 75 then 5b/8/7 (clinch);
if opp = 0 and endurance_percent > 40 then 5b/8/7 (clinch);
########## Late game flash #########
if score < round - 10 then 5h/10/5 ( style);
########## Fight is won so shell up ######
if score > 14 - round then 3h/5/12 (style ) ;
########## Towel line ##############
if score < 0 and opp = 2 and endurance_percent < 60 then towel
|
|