I'm looking for the function of $x$ for a line that intersects at $(0,0)$ and $(100,80)$, and as $x$ goes off into infinity, the line approaches, but never touches $100$.
See image attached.

I am writing a bit of gameplay logic where the player's skill level ($x$ axis) increases with the success of a skill test ($y$ axis), but it is never a 100% success rate.
Thanks.
It seems that you look at function such as $$y(x)=100(1-e^{-bx})$$ which goes through the origin and will never touch $100$. So, your requirements give $$80=100(1-e^{-100b})$$ This gives $$b=\frac{\log (5)}{100}$$