OldSchoolHack

Register / Login English

Bugs fixed (27.03.2012)

icon Thread: Bugs fixed (27.03.2012)

Join Date: Aug 2008

Posts: 2594

User-Rating:

17 positive
5 negative
Quote from KN4CK3R
falls dus noch nicht rausgefunden hast:
CPP Code:
  1. //Hotkey auf Insert:
  2. app->RegisterHotkey(Hotkey(Key::Insert, []()
  3. {
  4. Application::Instance()->Toggle();
  5. }));
  6.  
  7. //Hotkey auf Strg + Insert:
  8. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control, []()
  9. {
  10. Application::Instance()->Toggle();
  11. }));
  12.  
  13. //Hotkey auf Strg + Alt + Insert:
  14. app->RegisterHotkey(Hotkey(Key::Insert, Key::Control | Key::Alt, []()
  15. {
  16. Application::Instance()->Toggle();
  17. }));
und ja, ich weiß, dass die F-Tasten noch nicht in der Key Auflistung drin sind.

greetz KN4CK3R
So weit war ich noch nicht, aber danke für den Tipp, hätte bestimmt auch so nicht gleich rausgefunden.

Übrigens, seit gestringen OSH GUI Update, stürzen die Spiele in die ich die dll injecte immer ab.