Results 1 to 4 of 4
  1. #1
    taylan's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    In your Sisters Bed, Germany
    Posts
    240
    Reputation
    18
    Thanks
    258
    My Mood
    Happy

    Question Need some Hotkeys for c++

    Hi guys... i need some hotkeys for my hack. and i googleed to ßut found nothing does anyone know the hotkey for :
    - (numpad)
    +(numpad)
    ,(numpad)

    i use a german keyboard and i think on e nglish keyboards are the keys diffrent ... look at the picture

    thats a german keyboard (u can zoom it )

    thanks to all

  2. #2
    silly3648's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    www.mpgh.net =)
    Posts
    207
    Reputation
    10
    Thanks
    53
    My Mood
    Angelic
    hmm try speaking to a experienced coder id suggest xfaith a really helpful guy =)
    Computer Science student, College.

    Known Languages: Java, Python
    Learning : C++, C#
    Currently hacking in : C#

    +++LATEST+++
    gimp

    photoshop



    ~HELPFUL CODERS~
    god601
    helicopter12

  3. #3
    why06's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    IBM
    Posts
    4,304
    Reputation
    170
    Thanks
    2,203
    My Mood
    Flirty
    Lol completely missed this.
    Well I believe its the same way for an american keyboard as a German one. Just use GetAsyncKeyState(); Since C++ only uses english the keys will probably for the most part work on the same letter with a little difference here take this:

    Code:
    #include <iostream.h>
    #include <windows.h>
    using namespace std;
    int main()
    {
     char buf[50] = "\0";
     while(1)
     {
      for(int i = 0; i < 256; i++)
      {
       if(GetAsyncKeyState(i))cout<<"You key code is: " << itoa(i,buf,16) <<endl;
      }
      Sleep(200);
     }
    }
    EDIT: tested it code works. outputs in hex since key codes are in hex. =/
    This way every time you press a key you can see the exact key code that was generated and compare it to the list of key codes here: https://msdn.microsof*****m/en-us/libr...8VS.85%29.aspx
    From here out you shouldnt have any problems.
    Last edited by why06; 03-20-2010 at 07:45 AM.

    "Every gun that is made, every warship launched, every rocket fired signifies, in the final sense, a theft from those who hunger and are not fed, those who are cold and are not clothed. This world in arms is not spending money alone. It is spending the sweat of its laborers, the genius of its scientists, the hopes of its children. The cost of one modern heavy bomber is this: a modern brick school in more than 30 cities. It is two electric power plants, each serving a town of 60,000 population. It is two fine, fully equipped hospitals. It is some fifty miles of concrete pavement. We pay for a single fighter plane with a half million bushels of wheat. We pay for a single destroyer with new homes that could have housed more than 8,000 people. This is, I repeat, the best way of life to be found on the road the world has been taking. This is not a way of life at all, in any true sense. Under the cloud of threatening war, it is humanity hanging from a cross of iron."
    - Dwight D. Eisenhower

  4. The Following User Says Thank You to why06 For This Useful Post:

    Retoxified (03-20-2010)

  5. #4
    Arhk's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    Engineering
    Posts
    3,618
    Reputation
    35
    Thanks
    217
    My Mood
    Amused
    Even then just activate Microsoft IME to make your computer emulate a purely American keyboard.
    ~
    "If the world hates you, keep in mind that it hated me first." John 15:18

Similar Threads

  1. Need some help for rank hack
    By RTY1941 in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 02-21-2010, 05:52 AM
  2. Need some help for my bypass.
    By tmha in forum C++/C Programming
    Replies: 14
    Last Post: 10-26-2009, 12:48 PM
  3. need some hacks for crossfire
    By unknown257 in forum CrossFire Hacks & Cheats
    Replies: 2
    Last Post: 10-24-2009, 04:18 AM
  4. I need some people for searching addys
    By iOwnage in forum Combat Arms Hacks & Cheats
    Replies: 3
    Last Post: 08-29-2009, 09:29 PM
  5. hey i need some hacks for this game can any1 help
    By CrUsHa in forum Hack Requests
    Replies: 10
    Last Post: 05-21-2006, 09:14 PM