Page 1 of 2 12 LastLast
Results 1 to 15 of 27
  1. #1
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85

    Cool Menu Design!

    Hi everyone! I haven't released anything in a good amount of time, so here it is!
    This is a cool menu design inspired by NOOB.


    So here it is!

    Globals:
    [PHP]int currentitem = 1;[/PHP]
    Base:
    [PHP]DrawBox(20,500,210,124,D3DCOLOR_XRGB(174,174,174), D3DCOLOR_ARGB(0,0,0,0),pDevice); //Menu Back
    DrawBox(20,500,210,26,D3DCOLOR_XRGB(71,65,64),D3DC OLOR_ARGB(0,0,0,0),pDevice); //Menu Header[/PHP]
    Items:
    [PHP]DrawBox(25,531,200,26,D3DCOLOR_XRGB(255,0,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 1
    DrawBox(25,562,200,26,D3DCOLOR_XRGB(255,0,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 2
    DrawBox(25,593,200,26,D3DCOLOR_XRGB(255,0,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 3[/PHP]
    Control (Up/Down):
    [PHP]if(GetAsyncKeyState(VK_UP)&1) {
    switch(currentitem) {
    case 1:
    currentitem = 3;
    break;
    case 2:
    currentitem = 1;
    break;
    case 3:
    currentitem = 2;
    break;
    }
    }
    if(GetAsyncKeyState(VK_DOWN)&1) {
    switch(currentitem) {
    case 1:
    currentitem = 2;
    break;
    case 2:
    currentitem = 3;
    break;
    case 3:
    currentitem = 1;
    break;
    }
    }[/PHP]
    Control (Colors):
    [PHP]switch(currentitem) {
    case 1:
    DrawBox(25,531,200,26,D3DCOLOR_XRGB(0,255,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 1
    break;
    case 2:
    DrawBox(25,562,200,26,D3DCOLOR_XRGB(0,255,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 2
    break;
    case 3:
    DrawBox(25,593,200,26,D3DCOLOR_XRGB(0,255,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 3
    break;
    }[/PHP]

    I know this could be shorter, but you can do that yourself.
    Press thanks!


    Screenshot:

    Credits:
    - Me!
    - NOOB for the idea.
    - Whoever made the DrawBox function! xD


    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  2. #2
    ItzNeoBitch's Avatar
    Join Date
    Nov 2010
    Gender
    female
    Posts
    14
    Reputation
    10
    Thanks
    15
    Looks nice
    Now ima try and add hacks to it
    any1 got LTC?
    ive got WIn7 so i cant get it *cry*

  3. #3
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Wow this looks awesome even tho i hate you

    Good job i guess

    EDIT : Also if your not using Alpha RGB , why add it in?
    Last edited by Fabolous; 11-29-2010 at 03:06 PM.

  4. #4
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by UnknownCoder View Post
    Wow this looks awesome even tho i hate you

    Good job i guess

    EDIT : Also if your not using Alpha RGB , why add it in?
    Huh? |:

    (referring to your edit)

  5. #5
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    DrawBox(25,593,200,26,D3DCOLOR_XRGB(0,255,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 3
    break;
    }

    He uses ARGB when you don't need it. It's 0,0,0,0 for all.

  6. #6
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by UnknownCoder View Post
    DrawBox(25,593,200,26,D3DCOLOR_XRGB(0,255,0),D3DCO LOR_ARGB(0,0,0,0),pDevice); //Item 3
    break;
    }

    He uses ARGB when you don't need it. It's 0,0,0,0 for all.
    to make it transparent black. The D3DCOLOR_XRGB macro will define the alpha channel as 255, whereas this is defined as 0.

  7. #7
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Dude WTF..
    you know noob was going to release his base with menu today..

  8. #8
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Not efficient at all...

  9. The Following User Says Thank You to Crash For This Useful Post:

    whatup777 (11-29-2010)

  10. #9
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by whit View Post
    Dude WTF..
    you know noob was going to release his base with menu today..
    But he navigates through items using keys while mine navigates tabs using keys.

    Mines easier. Just enter the hacks and tabs (auto size ).

  11. #10
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by whit View Post
    Dude WTF..
    you know noob was going to release his base with menu today..
    Oh really? O:

  12. #11
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by freedompeace View Post
    Oh really? O:
    Yeah look at NOOB's sig

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  13. #12
    Fabolous's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    192.168.1.01
    Posts
    2,704
    Reputation
    261
    Thanks
    682
    My Mood
    Paranoid
    Wow noob is so creative /

  14. #13
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Quote Originally Posted by Crash View Post
    Not efficient at all...
    Bout time some said it.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  15. #14
    NOOB's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    3,843
    Reputation
    425
    Thanks
    8,616
    Quote Originally Posted by UnknownCoder View Post
    Wow noob is so creative /
    That's right! /me

  16. #15
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    I wouldn't use this source! He might have hidden some secret logger in it, and is logging all your passwords at the moment to steal from you!

Page 1 of 2 12 LastLast