designer1337 / csgo-cheat-base

simple csgo internal base.
MIT License
242 stars 50 forks source link

slider issue #49

Open reaperpaster opened 4 years ago

reaperpaster commented 4 years ago

i noticed that the slider max_value works perfectly but the min value is always 0 same changing it

rcszephyr commented 3 years ago

On key down function:

value = min_value + (max_value - min_value) * (cursor.x - ix) / position;

On slider render (width):

(value - min_value) / (max_value - min_value) * position