Hi guys, i've been playing with the new counters mechanic in the last couple of days and i've found something weird.
I was experimenting with getting assaults out of range of attacking enemies at the last moment without using binary tag counters, nothing fancy, just step back at the right time.
if enemy attacking me = 0,
Set counter 1 to 0,
if enemy sniper attacking me not out of range from me >= 1,
increase counter 1 by 1,
if counter 1 >= 11,
Flee from closest enemy attacking me not out of range.
Same code applies to machine gun, fleeing at counter >= 7
And that seems pretty obvious since sniper shoots after 12 ticks and machine guns after 8, but if you try the same code against shotguns (flee from mid range of course) you have to flee at counter 1 >= 2, despite shotgun shoots after 5 ticks (so you should be able to flee at 4), otherwise you take damage.
Why is there so much difference between moving one step out of long range, and one step out middle range? I always stand on the line during tests, so i just have to take one step back to get out of line, how come i cannot avoid shotgun damage without moving with such advantage?
I was experimenting with getting assaults out of range of attacking enemies at the last moment without using binary tag counters, nothing fancy, just step back at the right time.
if enemy attacking me = 0,
Set counter 1 to 0,
if enemy sniper attacking me not out of range from me >= 1,
increase counter 1 by 1,
if counter 1 >= 11,
Flee from closest enemy attacking me not out of range.
Same code applies to machine gun, fleeing at counter >= 7
And that seems pretty obvious since sniper shoots after 12 ticks and machine guns after 8, but if you try the same code against shotguns (flee from mid range of course) you have to flee at counter 1 >= 2, despite shotgun shoots after 5 ticks (so you should be able to flee at 4), otherwise you take damage.
Why is there so much difference between moving one step out of long range, and one step out middle range? I always stand on the line during tests, so i just have to take one step back to get out of line, how come i cannot avoid shotgun damage without moving with such advantage?