Super Simple Tabs

Posts 115 of 32 · Page 1 of 3
Super Simple Tabs
I guess about 6 lines of code is pretty good.

[php]char *Tab[] = { "Visual","Weapon","Player","Other" };
int tabPos;[/php]

[php]void cMenu::TabNavigate()
{
int Max = sizeof( Tab ) / sizeof( Tab[0] );
if(GetAsyncKeyState(VK_LEFT)&1) if(tabPos > 0) tabPos--;
if(GetAsyncKeyState(VK_RIGHT)&1) if(tabPos < Max - 1) tabPos++;
Directx.DrawString(0, 0, Red, Directx.pFont, Tab[tabPos]);
}[/php]
Great job! Simple as can be pretty much! Can't wait for your base
Very nice mang.
Fuck.
mine is now public
jking but mine looks really like it O.o
Quote Originally Posted by GodHack2 View Post
Fuck.
mine is now public
jking but mine looks really like it O.o
I found it in your project folder so I thought it would be cool to post it here. /
Wow, nice man
Quote Originally Posted by Obama View Post
Wow, nice man
Lol do you know why it's nice? xD
Quote Originally Posted by freedompeace View Post
Lol do you know why it's nice? xD
HAHA I do
Someone learned how to use Arrays MPGH progressing.
Quote Originally Posted by RagedYet View Post
Someone learned how to use Arrays MPGH progressing.
And you think no one else has? |:
My whole project is on one line, does that mean my hacks is the simplest ever /
Quote Originally Posted by markoj View Post
My whole project is on one line, does that mean my hacks is the simplest ever /
Pssh.. obviously yes.
Quote Originally Posted by NOOB View Post


Pssh.. obviously yes.
NOOB can u add me on msn
Quote Originally Posted by Nubzgetkillz View Post
NOOB can u add me on msn
I never use MSN much.
Posts 115 of 32 · Page 1 of 3
This thread is closed for replies.

Tags for this Thread

None

Need help?