You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rp_strat There may be negative numbers present???? strategy_roll Always greater than 0
if strategy_roll <= sum then Negative numbers will never be greater than 0
and i should check max STRAT -- rp_strat_length
loop
set sum = sum + rp_strat[rp_strat_sort[i]]
if strategy_roll <= sum then
//if rp_strat[rp_strat_sort[i]] / Max(rp_strat[strategy], 1) > strategy_change_threshold then
set strategy = rp_strat_sort[i]
set chosen_strategy = strategy
call SetChatVar("Strategy", GetCurrentStrategyName())
//endif
return
endif
set i = i + 1
endloop
The text was updated successfully, but these errors were encountered:
rp_strat
There may be negative numbers present????strategy_roll
Always greater than 0if strategy_roll <= sum then
Negative numbers will never be greater than 0and i should check max STRAT --
rp_strat_length
The text was updated successfully, but these errors were encountered: