KLL Compiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

mouseTest.kll 705B

1234567891011121314151617181920212223242526272829303132
  1. Name = mouseTest;
  2. Version = 0.2;
  3. Author = "HaaTa (Jacob Alexander) 2016";
  4. KLL = 0.3d;
  5. # Modified Date
  6. Date = 2016-03-21;
  7. # mouseOut
  8. # Arg1, button, 1-8
  9. # Arg2, mouse x relative axis -127 to 127
  10. # Arg3, mouse y relative axis -127 to 127
  11. U"1" : mouseOut( 1, 0, 0 );
  12. U"2" : mouseOut( 2, 0, 0 );
  13. U"3" : mouseOut( 3, 0, 0 );
  14. U"4" : mouseOut( 4, 0, 0 );
  15. U"5" : mouseOut( 5, 0, 0 );
  16. U"6" : mouseOut( 6, 0, 0 );
  17. U"7" : mouseOut( 7, 0, 0 );
  18. U"8" : mouseOut( 8, 0, 0 );
  19. U"Up" : mouseOut( 0, 0, 1 );
  20. U"Down" : mouseOut( 0, 0, -1 );
  21. U"Left" : mouseOut( 0, -1, 0 );
  22. U"Right" : mouseOut( 0, 1, 0 );
  23. U"W" : mouseOut( 0, 0, 5 );
  24. U"S" : mouseOut( 0, 0, -5 );
  25. U"A" : mouseOut( 0, -5, 0 );
  26. U"D" : mouseOut( 0, 5, 0 );