PHP Code:
float toPos;
void smoothScroller()
{
if (optionCount > maxOptions)
{
float scrollBarPos;
if (currentOption > maxOptions)
{
toPos = ((maxOptions * 0.035f) + 0.1415f);
}
else
{
toPos = ((currentOption * 0.035f) + 0.1415f);
}
}
else
{
toPos = ((currentOption * 0.035f) + 0.1415f);
}
if ((scrollBarPos - toPos) < 0.002f)
{
scrollBarPos = toPos;
}
if (scrollBarPos > toPos)
{
scrollBarPos -= 0.002f;
}
if (scrollBarPos < toPos)
{
scrollBarPos += 0.002f;
}
}
This account is currently banned
Ban reason: Leeching and Spamming is not allowed, please read the forum Rules upon your return.
Ban reason: Leeching and Spamming is not allowed, please read the forum Rules upon your return.