Page 2 of 2 FirstFirst 12
Results 16 to 22 of 22
  1. #16
    CoderCf's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    143
    Reputation
    10
    Thanks
    9
    Quote Originally Posted by rabir007 View Post


    Ohh i see...
    I still prefer Mouse-control menu, if you have so much feature, the hotkey menu is pretty slow...
    Its not slow you can change the speed with Sleeps

    Like :

    0 Sleep = Speed Menu

    1000 Sleep = Slow Menu

    50 Sleep = Perfect Menu

    You know what i mean ?

  2. #17
    rabir007's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    Behind you...
    Posts
    2,323
    Reputation
    148
    Thanks
    1,925
    My Mood
    Bored
    Quote Originally Posted by CoderCf View Post
    Its not slow you can change the speed with Sleeps

    Like :

    0 Sleep = Speed Menu

    1000 Sleep = Slow Menu

    50 Sleep = Perfect Menu

    You know what i mean ?
    I mean navigating... Like pressing 10-20 key to enable a feature...







  3. #18
    CoderCf's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    143
    Reputation
    10
    Thanks
    9
    Yeah but every Hack Menu is with Arrows i can add Mouse but i dont want now - You can add me on Skype : CoderCF or the.real50

  4. #19
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Quote Originally Posted by CoderCf View Post
    Its not slow you can change the speed with Sleeps

    Like :

    0 Sleep = Speed Menu

    1000 Sleep = Slow Menu

    50 Sleep = Perfect Menu

    You know what i mean ?
    Or use the Key events

  5. #20
    CoderCf's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    143
    Reputation
    10
    Thanks
    9
    Yeah i use it like this :

    if(getasynckeystate(keys.UP))
    {
    if(menu < 10)
    {
    menu++;
    }
    }

  6. #21
    CFHackerExtreme's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Germany
    Posts
    245
    Reputation
    10
    Thanks
    560
    My Mood
    Yeehaw
    Quote Originally Posted by CoderCf View Post
    Yeah i use it like this :

    if(getasynckeystate(keys.UP))
    {
    if(menu < 10)
    {
    menu++;
    }
    }
    LOL, thats so stupid
    You use a CLR Language. C# present you Events xDDD Events are more effective than a Timer

    Example:

    Code:
    private void MenuForm_KeyDown(object sender, KeyEventArgs e)
    {
        if (e.KeyCode == Keys.Down)
        {
            Menu++;
        }
    }
    And in your Form.Designer:

    Code:
    this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MenuForm_KeyDown);
    Thats so simple and you doesn't need a Timer

    Only for German Guys...

  7. #22
    CoderCf's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    143
    Reputation
    10
    Thanks
    9
    the time was there and my menu need the Timer ^^ so i use this and it is the best methode but now XTrap Dedect C# too

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Release] Crossfire November Patch Act III and Act IV GUN LEAK
    By alaska321 in forum CrossFire Discussions
    Replies: 24
    Last Post: 11-29-2012, 05:43 PM
  2. Crossfire Tranquility glitch ( the best and easiest way )
    By Artixxion in forum CrossFire Glitches
    Replies: 34
    Last Post: 12-11-2010, 04:07 PM
  3. The wallhack works and isnt patched.
    By KezyQ in forum CrossFire Hacks & Cheats
    Replies: 2
    Last Post: 01-04-2010, 05:37 PM