my menu

Posts 115 of 20 · Page 1 of 2
my menu
this is my menu, i made it using redemption base.

just a idea.


Uploaded with ImageShack.us

should i release a simple hack with it??

ill post source here.
Code:
this->DrawGradientRect(0,0,256,30,DarkBlue, LightBlue, horizontal,pDevice);
        this->DrawText(100,10,Black,"[ Visuals ]");
        this->DrawGradientRect(0, 30, 256, 100, LightBlue, DarkBlue, horizontal, pDevice);


        this->DrawGradientRect(256,0,256,30,DarkBlue, LightBlue, horizontal,pDevice);
        this->DrawText(356,10,Black,"[ Removals ]");
        this->DrawGradientRect(256, 30, 256, 100, LightGrey, DarkGrey, horizontal, pDevice);

        this->DrawGradientRect(512,0,256,30,DarkBlue, LightBlue, horizontal,pDevice);
        this->DrawText(612,10,Black,"[ Modifier ]");
        this->DrawGradientRect(512, 30, 256, 100, LightGrey, DarkGrey, horizontal, pDevice);

        this->DrawGradientRect(768,0,254,30,DarkBlue, LightBlue, horizontal,pDevice);
        this->DrawText(886,10,Black,"[ Others ]");
        this->DrawGradientRect(768, 30, 256, 100, LightGrey, DarkGrey, horizontal, pDevice);
how should i change it/add it?
looks nice is it keyboard navigated or click mouse?
Quote Originally Posted by WizdomNKush View Post
looks nice is it keyboard navigated or click mouse?
right now, its none. just insert. bring up the whole menu.

but im planning on making each item its own menu.
insert will bring the 4 options. then click to open and close from there.
Looks good, Maybe you should make the boxes pop down:P I'll give you a hint.


Code:
POINT mpos;
INT CheckMouse(INT x, INT y, INT w, INT h)
{
	GetCursorPos(&mpos);
	if(mpos.x > x && mpos.x < x + w && mpos.y > y && mpos.y < y + h)
	{
		if(GetAsyncKeyState(VK_LBUTTON)&1)
		{
			return 1;
		}
		return 2;
	}
	return 0;
}


Then you'd do a tab code, something like this:

int tabs[2];

void addTab(int x, int y, int w, int h, int name, int var) {
int mousePos = CheckMouse(x, y, w, h);

if(mousePos == 0) // not hovering
if(mousePos == 1) // tab clicked
if(mousePos == 2) // Mouse is over tab.

//now you can do this

if(mousePos == 2) 
{
tab[1] = 0; tab[2] = 0;
var = !var;
}
// You can figure the rest;) i wrote this up quickly.
}
Quote Originally Posted by TrixtSam View Post
Looks good, Maybe you should make the boxes pop down:P I'll give you a hint.


Code:
POINT mpos;
INT CheckMouse(INT x, INT y, INT w, INT h)
{
    GetCursorPos(&mpos);
    if(mpos.x > x && mpos.x < x + w && mpos.y > y && mpos.y < y + h)
    {
        if(GetAsyncKeyState(VK_LBUTTON)&1)
        {
            return 1;
        }
        return 2;
    }
    return 0;
}


Then you'd do a tab code, something like this:

int tabs[2];

void addTab(int x, int y, int w, int h, int name, int var) {
int mousePos = CheckMouse(x, y, w, h);

if(mousePos == 0) // not hovering
if(mousePos == 1) // tab clicked
if(mousePos == 2) // Mouse is over tab.

//now you can do this

if(mousePos == 2) 
{
tab[1] = 0; tab[2] = 0;
var = !var;
}
// You can figure the rest;) i wrote this up quickly.
}
i was thinking about that, wasnt sure how to go about doing it.
and thanks.
Quote Originally Posted by iamspeedforyou View Post
i was thinking about that, wasnt sure how to go about doing it.
and thanks.
Well that'll help allot and good idea starting to code with Redemption, I did also.. It worked really well.
Quote Originally Posted by TrixtSam View Post
Well that'll help allot and good idea starting to code with Redemption, I did also.. It worked really well.
i used to code hotkey hacks... way back(2010) when hacking was easy. :O
but yea i have basically been messing around with menu bases for a couple months now. i like redemption very much
i dont have the time right now to put this is... but add me on MSN: kegd1996@hotmail.com
That's pretty sexy, I love it.
Release a simple hack with it, yes.
Quote Originally Posted by Margherita View Post
That's pretty sexy, I love it.
Release a simple hack with it, yes.
ok, ill do it later tonight. or you can make it
the source is right there.
Quote Originally Posted by iamspeedforyou View Post
ok, ill do it later tonight. or you can make it
the source is right there.
I don't know how to code for CA
Nice work bro, could use some more work though
Quote Originally Posted by R4v0r View Post
Nice work bro, could use some more work though
yea, i know.. what do you think i should add?
Quote Originally Posted by iamspeedforyou View Post
yea, i know.. what do you think i should add?
Somekind of anti-lag sprite
Quote Originally Posted by R4v0r View Post


Somekind of anti-lag sprite
What the fuck is an anti-lag sprite?
Posts 115 of 20 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?