OldSchoolHack

Registrieren / Anmelden Deutsch

Bugs fixed (27.03.2012)

icon Thema: Bugs fixed (27.03.2012)

Anmeldungsdatum: Aug 2008

Beiträge: 2594

Benutzer-Bewertung:

17 positiv
5 negativ
Zitat von 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.