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 953B

12345678910111213141516171819202122232425262728293031323334353637383940
  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-16
  9. # Arg2, mouse x relative axis -32 767 to 32 767
  10. # Arg3, mouse y relative axis -32 767 to 32 767
  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"Z" : mouseOut( 9, 0, 0 );
  20. U"X" : mouseOut( 10, 0, 0 );
  21. U"C" : mouseOut( 11, 0, 0 );
  22. U"V" : mouseOut( 12, 0, 0 );
  23. U"B" : mouseOut( 13, 0, 0 );
  24. U"N" : mouseOut( 14, 0, 0 );
  25. U"M" : mouseOut( 15, 0, 0 );
  26. U"Comma" : mouseOut( 16, 0, 0 );
  27. U"Up" : mouseOut( 0, 0, 1 );
  28. U"Down" : mouseOut( 0, 0, -1 );
  29. U"Left" : mouseOut( 0, -1, 0 );
  30. U"Right" : mouseOut( 0, 1, 0 );
  31. U"W" : mouseOut( 0, 0, 5 );
  32. U"S" : mouseOut( 0, 0, -5 );
  33. U"A" : mouseOut( 0, -5, 0 );
  34. U"D" : mouseOut( 0, 5, 0 );