Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    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 CodeDemon View Post
    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!
    Dont tell them. /
    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

  2. #17
    IcySeal's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    300
    Reputation
    34
    Thanks
    148
    My Mood
    Amused
    Woooooow. Switch statements. Haven't seen them in a while. Could be done much better.

  3. #18
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by IcySeal View Post
    Woooooow. Switch statements. Haven't seen them in a while. Could be done much better.
    Quote Originally Posted by Crash View Post
    Not efficient at all...
    Poeple just dont understand Object Oriented Programing.

  4. #19
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by UnknownCoder
    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? __________________ Who needs' a signature anyways? Last edited by UnknownCoder; 4 Hours Ago at 05:06 PM..
    I had ARGB because I was experimenting with a ARGB function...
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  5. #20
    freedompeace's Avatar
    Join Date
    Jul 2010
    Gender
    female
    Posts
    3,033
    Reputation
    340
    Thanks
    2,792
    My Mood
    Sad
    Quote Originally Posted by Nubzgetkillz View Post
    Yeah look at NOOB's sig
    If mobile moder had sigs I would have.

  6. #21
    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
    If mobile moder had sigs I would have.
    O I get it

    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

  7. #22
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    You guys could do this instead of the switch statements going up and down.

    Code:
    void MenuNavigation()
    {
    		if(GetAsyncKeyState(VK_UP)&1) {
    			if(currentitem > 1) {
    				currentitem--;
    			}
    		}
    		if(GetAsyncKeyState(VK_DOWN)&1) {
    			if(currentitem < 3) {
    				currentitem++;
    			}
    		}
    }
    or you can do this
    Code:
    		if(GetAsyncKeyState(VK_UP)&1) if(currentitem > 1) currentitem--;
    		if(GetAsyncKeyState(VK_DOWN)&1) if(currentitem < 3) currentitem++;
    means same thing. but other way is not all in 1 line for up and down

    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

  8. The Following User Says Thank You to Nubzgetkillz For This Useful Post:

    ac1d_buRn (12-04-2010)

  9. #23
    UKnownError's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    ERROR
    Posts
    280
    Reputation
    27
    Thanks
    32
    My Mood
    Breezy
    you prob stole this from someone
    give credits

  10. #24
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    I recommend you use my method it is much cleaner for the navigation

    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

  11. #25
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by UKnownError View Post
    you prob stole this from someone
    give credits
    xD no I didn't...

    Quote Originally Posted by Nubzgetkillz View Post
    You guys could do this instead of the switch statements going up and down.

    Code:
    void MenuNavigation()
    {
    		if(GetAsyncKeyState(VK_UP)&1) {
    			if(currentitem > 1) {
    				currentitem--;
    			}
    		}
    		if(GetAsyncKeyState(VK_DOWN)&1) {
    			if(currentitem < 3) {
    				currentitem++;
    			}
    		}
    }
    or you can do this
    Code:
    		if(GetAsyncKeyState(VK_UP)&1) if(currentitem > 1) currentitem--;
    		if(GetAsyncKeyState(VK_DOWN)&1) if(currentitem < 3) currentitem++;
    means same thing. but other way is not all in 1 line for up and down
    I do this also, but why would I post an amazing menu for the chubby-chooby-choobs. xD I'm so happy:
    1) Just finished last performance of Oliver! I was Oliver! For those who don't know the play, that's the main character!
    2) Got a GF!
    Last edited by seeplusplus; 12-04-2010 at 09:06 PM.
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

  12. #26
    ac1d_buRn's Avatar
    Join Date
    Aug 2009
    Gender
    female
    Location
    CA Source Section
    Posts
    3,404
    Reputation
    157
    Thanks
    4,003
    My Mood
    Flirty
    Quote Originally Posted by seeplusplus View Post
    xD no I didn't...



    I do this also, but why would I post an amazing menu for the chubby-chooby-choobs. xD I'm so happy:
    1) Just finished last performance of Oliver! I was Oliver! For those who don't know the play, that's the main character!
    2) Got a GF!
    lolwtf. Go back to yo cave

  13. #27
    seeplusplus's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Massachusetts
    Posts
    329
    Reputation
    8
    Thanks
    85
    Quote Originally Posted by ac1d_buRn View Post


    lolwtf. Go back to yo cave
    xD.
    I literally laughed for like 2 minutes!
    Goals:
    Green = Done
    Blue = Getting Somewhere
    Red = Not Done
    • Mouse Grid
    • PTC Method
    • Trigger Bot

    I'm trying to think of more stuff!

Page 2 of 2 FirstFirst 12