ziz
Member
Minor issue with flyering (no wonder I always end up going to the GMoB!):
returns 3 with a combat rate modifier of -5%, because combat_rate_modifier() returns -5.0. This works as expected:
Code:
if (gmobhits) return ceil((5 - get_property("guyMadeOfBeesCount").to_int()) * (3 / (0.25 - combat_rate_modifier())));
returns 3 with a combat rate modifier of -5%, because combat_rate_modifier() returns -5.0. This works as expected:
Code:
if (gmobhits) return ceil((5 - get_property("guyMadeOfBeesCount").to_int()) * (3 / (0.25 - (combat_rate_modifier() / 100.0))));