2016-03-21 07:41:49 +00:00
|
|
|
Name = mouseTest;
|
2016-03-22 05:22:13 +00:00
|
|
|
Version = 0.2;
|
2016-03-21 07:41:49 +00:00
|
|
|
Author = "HaaTa (Jacob Alexander) 2016";
|
|
|
|
KLL = 0.3d;
|
|
|
|
|
|
|
|
# Modified Date
|
2016-03-22 05:22:13 +00:00
|
|
|
Date = 2016-03-21;
|
2016-03-21 07:41:49 +00:00
|
|
|
|
2016-03-22 05:22:13 +00:00
|
|
|
# mouseOut
|
|
|
|
# Arg1, button, 1-8
|
|
|
|
# Arg2, mouse x relative axis -127 to 127
|
|
|
|
# Arg3, mouse y relative axis -127 to 127
|
|
|
|
|
|
|
|
U"1" : mouseOut( 1, 0, 0 );
|
|
|
|
U"2" : mouseOut( 2, 0, 0 );
|
|
|
|
U"3" : mouseOut( 3, 0, 0 );
|
|
|
|
U"4" : mouseOut( 4, 0, 0 );
|
|
|
|
U"5" : mouseOut( 5, 0, 0 );
|
|
|
|
U"6" : mouseOut( 6, 0, 0 );
|
|
|
|
U"7" : mouseOut( 7, 0, 0 );
|
|
|
|
U"8" : mouseOut( 8, 0, 0 );
|
|
|
|
|
|
|
|
U"Up" : mouseOut( 0, 0, 1 );
|
|
|
|
U"Down" : mouseOut( 0, 0, -1 );
|
|
|
|
U"Left" : mouseOut( 0, -1, 0 );
|
|
|
|
U"Right" : mouseOut( 0, 1, 0 );
|
|
|
|
|
|
|
|
U"W" : mouseOut( 0, 0, 5 );
|
|
|
|
U"S" : mouseOut( 0, 0, -5 );
|
|
|
|
U"A" : mouseOut( 0, -5, 0 );
|
|
|
|
U"D" : mouseOut( 0, 5, 0 );
|
2016-03-21 07:41:49 +00:00
|
|
|
|